:root {
    /* Couleurs principales */
    --color-primary: #1AAED5;
    --color-primary-hover: #69B2AE;
    --color-text-dark: #262839;
    --color-text-light: #777777;
    --color-bg-light: #f7f7f7;
    --color-white: #ffffff;

    /* Typographie */
    --font-futura: 'Futura PT', sans-serif;
    --font-medium: 500;
    --font-demi: 600;
    --font-bold: 700;

    --container-width: 950px;
    --transition-speed: 0.3s;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Medium/FuturaPT-Medium.woff2') format('woff2'),
        url('../fonts/FuturaPT-Medium/FuturaPT-Medium.woff') format('woff'),
        url('../fonts/FuturaPT-Medium/FuturaPT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Demi/FuturaPT-Demi.woff2') format('woff2'),
        url('../fonts/FuturaPT-Demi/FuturaPT-Demi.woff') format('woff'),
        url('../fonts/FuturaPT-Demi/FuturaPT-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Bold/FuturaPT-Bold.woff2') format('woff2'),
        url('../fonts/FuturaPT-Bold/FuturaPT-Bold.woff') format('woff'),
        url('../fonts/FuturaPT-Bold/FuturaPT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Minion Pro';
    src: local('Minion Pro Bold'), local('Minion-Pro-Bold'),
        url('MinionPro-Bold.woff2') format('woff2'),
        url('MinionPro-Bold.woff') format('woff'),
        url('MinionPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-futura);
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo --- */
.header-logo img {
    height: 38px;
}

/* --- Navigation --- */
.header-nav ul {
    display: flex;
    gap: 40px;
}

.header-nav a {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text-dark);
}

.header-nav a:hover {
    color: var(--color-primary-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-hover {
    display: none;
}

/* Le bouton "Commande" */

.btn-order {
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    padding: 5px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    height: 50px;
}

.btn-order img {
    height: 22px;
    width: auto;
}

.btn-order:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-order:hover .icon-default {
    display: none;
}

.btn-order:hover .icon-hover {
    display: block;
}

/* Le bouton Telephone */

.btn-phone {
    border: 1px solid var(--color-primary);
    background-color: var(--color-primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.btn-phone img {
    height: 18px;
    width: auto;
}

.btn-phone:hover {
    background-color: var(--color-white);
}

.btn-phone:hover .icon-default {
    display: none;
}

.btn-phone:hover .icon-hover {
    display: block;
}

#checkbox,
.toggle {
    display: none;
}

.footer {
    background-color: var(--color-text-dark);
    color: var(--color-white);
    padding-bottom: 20px;
    position: relative;
    margin-top: 60px;
}

.footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    background:
        linear-gradient(135deg, var(--color-white) 25%, transparent 25%) -5px 0,
        linear-gradient(225deg, var(--color-white) 25%, transparent 25%) -5px 0;
    background-size: 20px 20px;
    margin-bottom: 40px;
}

.container-footer {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-logo-wrapper {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 100px;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: start;
    text-align: center;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-family: var(--font-futura);
    font-size: 16px;
    font-weight: var(--font-demi);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-col p {
    font-family: var(--font-futura);
    font-size: 16px;
    font-weight: var(--font-medium);
    margin-bottom: 5px;
}

.horaire-item {
    margin-bottom: 15px;
}

.horaire-item h4 {
    margin-bottom: 2px;
}

.col-contacts {
    position: relative;
    padding: 0px 20px 53px 20px;
}

.line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
}

.line.left {
    left: 0;
}

.line.right {
    right: 0;
}

.line::before,
.line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
}

.line::before {
    top: -5px;
}

.line::after {
    bottom: -5px;
}

.contact-details {
    margin: 20px 0;
}

.footer-social img {
    height: 25px;
    margin: 15px 0;
}

.disclaimer {
    font-size: 14px;
    font-style: italic;
    color: #aaaaaa;
}

.col-order h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-footer-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 45px;
    border: 2px solid var(--color-white);
    border-radius: 6px;
    background-color: transparent;
    color: var(--color-white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all var(--transition-speed) ease;
}

.btn-footer-ghost img {
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-speed) ease;
}

.btn-footer-ghost:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark);
}

.btn-footer-ghost:hover img {
    filter: brightness(0) invert(0.15);
}

.footer-bottom {
    position: relative;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin: 0 auto;
    width: 100%;
    max-width: 1166px;

}

.line-h {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: var(--color-white);
    max-width: var(--container-width);
}

.line-h::before,
.line-h::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateY(-50%);
}

.line-h::before {
    left: -5px;
}

.line-h::after {
    right: -5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.hero {
    height: calc(100vh - 60px);
    min-height: 600px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-left {
    width: 25%;
    background: var(--color-primary) url('../images/blue-pattern.jpg') repeat center;
}

.hero-right {
    width: 75%;
    background: url('../images/FISH_00.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--color-white);
    padding-left: 30%;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.line-hero {
    display: block;
    position: relative;
    width: 80px;
    height: 2px;
    background: var(--color-white);
    margin: 15px 0;
}

.line-hero::before,
.line-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translateY(-50%);
}

.line-hero::before {
    left: 0;
}

.line-hero::after {
    right: 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn-hero-solid,
.btn-hero-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.btn-hero-solid {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    border: 2px solid var(--color-white);
}

.btn-hero-solid img {
    height: 20px;
    filter: brightness(0) invert(0.15);
}

.btn-hero-solid:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-hero-solid:hover img {
    filter: brightness(0) invert(1);
}

.btn-hero-ghost {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-hero-ghost img {
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-hero-ghost:hover {
    background-color: var(--color-white);
    color: var(--color-text-dark);
}

.btn-hero-ghost:hover img {
    filter: brightness(0) invert(0.15);
}

.hero-card {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    width: 400px;
    padding: 30px;
    text-align: center;
    border: 3px solid #8DEBE6;
    border-radius: 5px;
    opacity: 1;
}

.card-header {
    position: relative;
    margin-bottom: 25px;
}

.card-title h2 {
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 700;
}

.card-title .price {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
}

.card-title .price span {
    font-size: 14px;
    vertical-align: super;
}

.fait-maison {
    position: absolute;
    top: 46px;
    right: 25px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(56%) sepia(58%) saturate(543%) hue-rotate(152deg) brightness(93%) contrast(88%);
}


.card-menu {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);

}

.card-menu .separator {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-light);
    margin: 5px 0;
    font-style: italic;
}

.card-divider {
    border: none;
    border-top: 1px solid #ddd;
    width: 50px;
    margin: 20px auto;
}

.card-dessert h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.card-dessert p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.card-asterisk {
    font-size: 10px;
    color: #999;
    font-style: italic;
}

.about-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.deco-top-left,
.deco-top-right {
    position: absolute;
    top: 0;
    width: 500px;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 0;
}

.deco-top-left {
    left: -50px;
    top: -100px;
    background-image: url('../images/illu_01.png');
    rotate: -45deg;
}

.deco-top-right {
    right: -50px;
    top: -100px;
    background-image: url('../images/illu_01.png');
    rotate: 45deg;
}

.about-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    font-size: 13px;
    font-weight: var(--font-demi);
    text-transform: uppercase;
    color: #a0a0a0;
    letter-spacing: 2px;
}

.line-dark {
    display: block;
    position: relative;
    width: 80px;
    height: 1px;
    background: #d0d0d0;
    margin: 15px 0 30px 0;
}

.line-dark::before,
.line-dark::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #d0d0d0;
    border-radius: 50%;
    transform: translateY(-50%);
}

.line-dark::before {
    left: 0;
}

.line-dark::after {
    right: 0;
}

.about-title {
    font-size: 40px;
    font-weight: var(--font-bold);
    color: var(--color-text-dark);
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    margin-bottom: 25px;
}

.about-images {
    flex: 1;
    display: flex;
    gap: 20px;
}

.image-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.img-small,
.img-large {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.img-small {
    height: 220px;
}

.img-large {
    height: 380px;
}

.cmd-section {
    max-width: var(--container-width);
    width: 100%;
    margin: 60px auto;
    padding: 70px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image:
        url('../images/FISH_05.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    text-align: center;
}

.cmd-section h2 {
    font-family: var(--font-futura);
    font-weight: var(--font-bold);
    color: var(--color-white);
    font-size: 45px;
    margin-bottom: 10px;
}

.cmd-section p {
    font-family: 'Minion Pro', serif;
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    width: 220px;
    height: 60px;
    background-color: var(--color-white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

.btn img, .btn span {
    transition: all var(--transition-speed) ease; 
}

.btn-primary-order {
    gap: 15px;
}

.btn-primary-order img {
    height: 22px;
}

.btn-primary-order span {
    font-family: var(--font-futura);
    font-size: 16px;
    font-weight: var(--font-bold);
    color: var(--color-text-dark);
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
}

.btn-partner img {
    max-height: 37px;
    max-width: 150px;
}

.btn-primary-order:hover {
    background-color: #a3e5d9;
}
.btn-primary-order:hover span {
    color: var(--color-white);
}
.btn-primary-order:hover img {
    filter: brightness(0) invert(1); 
}

.btn-deliveroo:hover {
    background-color: #5eae9e; 
}
.btn-deliveroo:hover img {
    filter: brightness(0) invert(1); 
}

.btn-ubereats:hover {
    background-color: #64b956; 
}
.btn-ubereats:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 992px) {

    .toggle {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition-duration: .3s;
        z-index: 105;
    }

    .bars {
        width: 100%;
        height: 4px;
        background-color: var(--color-primary);
        border-radius: 5px;
        transition-duration: .3s;
    }

    #checkbox:checked+.toggle #bar2 {
        transform: translateY(14px) rotate(60deg);
        margin-left: 0;
        transform-origin: right;
        transition-duration: .3s;
        z-index: 2;
    }

    #checkbox:checked+.toggle #bar1 {
        transform: translateY(28px) rotate(-60deg);
        transition-duration: .3s;
        transform-origin: left;
        z-index: 1;
    }

    #checkbox:checked+.toggle {
        transform: rotate(-90deg);
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }

    .header-nav li {
        width: 100%;
        text-align: center;
    }

    .header-nav a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        display: none;
        padding: 20px 0;
        z-index: 100;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #checkbox:checked~.header-nav {
        display: flex;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-order {
        padding: 5px 15px;
        font-size: 11px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .col-contacts::before,
    .col-contacts::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-left {
        display: none;
    }

    .hero-right {
        width: 100%;
        padding: 50px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 10px auto;
        width: 90%;
        max-width: 350px;
    }

    .line-hero {
        margin: 0 auto;
    }

    .fait-maison {
        top: 33px;
        right: 10px;
    }

    /* --- SECTION À PROPOS --- */
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .deco-top-left,
    .deco-top-right {
        display: none;
    }

    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .line-dark {
        margin: 15px auto 30px auto;
    }

    .about-title {
        font-size: 32px;
    }

    .about-images {
        width: 100%;
        gap: 15px;
    }

    .image-col {
        gap: 15px;
    }

    .img-small {
        height: 150px;
    }

    .img-large {
        height: 250px;
    }

    .cmd-section {
        padding: 40px 20px;
        margin: 30px 15px; 
        width: auto;
    }
    
    .cmd-section h2 {
        font-size: 32px;
    }
    
    .cmd-section p {
        font-size: 13px;
    }
    
    .btns {
        flex-direction: column; 
        align-items: center;
    }
}

.btn-fixed-order {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    transition: all var(--transition-speed) ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--color-white);
    text-align: center;
}

.btn-fixed-order::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    pointer-events: none;
}

.btn-fixed-order img {
    height: 32px;
    margin-bottom: 2px;
    filter: brightness(0) invert(1);

}

.btn-fixed-order p {
    font-family: var(--font-futura);
    font-size: 11px;
    font-weight: var(--font-bold);
    margin: 0;
    padding: 0 10px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.btn-fixed-order:hover {
    background-color: var(--color-text-dark);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border-color: var(--color-white);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    /* Caché par défaut */
    justify-content: center;
    align-items: center;
}

/* Classe pour afficher la modal via PHP ou JS */
.modal.active {
    display: flex;
}

/* --- La boite blanche de la Popup --- */
.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--color-text-light);
    cursor: pointer;
}

.modal-content h2 {
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-align: center;
}

/* --- Styles du Formulaire --- */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: var(--font-demi);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-futura);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-checkbox {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--color-text-light);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: var(--color-text-dark);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: var(--font-bold);
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color var(--transition-speed) ease;
}

.btn-submit:hover {
    background-color: var(--color-primary);
}

/* Messages PHP */
.msg-success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.msg-error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}