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

main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top:80px;
    min-height: 100vh;
}

body {
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin-top: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-height: 90vh;
}

.container h1 {
    text-align: center;
}

article {
    margin: 0px;
    padding: 20px;
}

figure {
    margin: 0;
    padding-left: 20px;
}

figure img {
    max-width: 100%;
    border-radius: 10px;
    max-height: 400px;
}

.content h2 {
    font-size: 2em;
    margin: 10px 0;
    color: #333;
}

.content pre {
    margin: 10px 0 20px;
    font-size: 1.1em;
    color: #666;
    text-align: left;
    text-wrap: balance;
    font-size: 18px;
    font-weight: 100;
    font-family: 'Lato';

    /* FIX */
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content {
    padding: 10px 20px!important;
}


@media (max-width:800px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
        padding: 10px;
        padding-top: 0px;
    }
    .content {
        padding: 10px !important;
    }

    figure {
        padding-left: 0px;
    }

    article {
        padding-right: 5px;
        padding-top: 10px;
        padding-left: 5px;
    }
}

















        /* Scroll bar START */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
            cursor: pointer;
        }

        ::-webkit-scrollbar-track {
            box-shadow: inset 0 0 5px rgb(255, 255, 255, 0);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: #654d46;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #503c36;
        }

        /* Scroll bar END */

        /* Variables de couleurs */
        :root {
            --boisFonce: #5A3E36;
            --beigeSable: #F3E5D0;
            --blancCreme: #FFF8ED;
            --doré: #C19A6B;
            --doré2: #e1bf96;
            --noirChoco: #2E1C17;
        }

        /* Réinitialisation basique */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--noirChoco);
            background: var(--blancCreme);
            line-height: 1.6;
            margin-top: 80px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 50vh;
            overflow: hidden;
        }

        .hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
        }

        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--blancCreme);
            padding: 0 20px;
            z-index: 1;
        }

        .hero-content h1 {
            font-family: 'Lobster', cursive;
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
        }

        .cta-btn {
            background: var(--doré);
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 700;
            color: var(--noirChoco);
            background: var(--blancCreme);
            cursor: pointer;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            transition: box-shadow 0.3s, transform 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .cta-btn-small {
            text-align: center;
            display: flex;
            padding: 10px;
            justify-content: center;
            align-items: center;
            border-radius: 100%;
        }

        .cta-btn:hover {
            box-shadow: 0 0 15px var(--doré);
            box-shadow: 0 0 15px var(--blancCreme);
            transform: scale(1.05);
        }

        /* Section À propos */
        .about {
            display: flex;
            align-items: center;
            background: var(--beigeSable);
            background-size: cover;
            background-repeat: no-repeat;
            padding: 60px 40px;
            justify-content: center;
            flex-direction: row;
            background: #f3e5d099;
        }

        .about .about-image,
        .about .about-text {
            padding: 20px;
        }

        .about .about-image img {
            max-width: 600px;
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .about .about-text h2 {
            font-family: 'Lobster', cursive;
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .about .about-text p {
            margin-bottom: 20px;
        }

        .about .highlight {
            text-decoration: underline;
            text-decoration-color: var(--doré);
        }

        /* Section Notre Carte */
        .menu-section {
            padding: 60px 40px;
            background: var(--blancCreme);
        }

        .menu-section-img {
            background: url('/assets/img/back-carte-o.png');
        }

        .menu-section h2 {
            font-family: 'Lobster', cursive;
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 40px;
            color: var(--noirChoco);
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            justify-content: start;
        }

        .menu-item {
            background: var(--blancCreme);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .menu-item img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            display: block;
        }

        .menu-info {
            padding: 20px;
        }

        .menu-info span {
            color: var(--doré);
            font-weight: bold;
        }

        .menu-item p {
            font-size: 0.9rem;
            margin-top: 10px;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        /* Barre de filtres */
        .menu-filter {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            margin-bottom: 30px;
            max-width: 100%;
            overflow: auto;
            padding-bottom: 10px;
        }

        .menu-filter .filter-btn {
            background: var(--doré2);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            color: var(--noirChoco);
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            white-space: nowrap;
        }

        .menu-filter .filter-btn:hover {
            background: var(--blancCreme);
        }

        .menu-filter .filter-btn.active {
            background: var(--blancCreme);
            color: var(--noirChoco);
            border: 2px solid #2e1c1750;
        }

        .menu-price {
            border-radius: 50%;
            border: 1px solid #674b35;
            background: white;
            display: flex;
            aspect-ratio: 1;
            justify-content: center;
            align-items: center;
            width: fit-content;
            padding: 5px;
            position: absolute;
            top: 0;
            right: 0;
            font-size: 14px;
            flex-direction: column;
        }

        .menu-price::after {
            content: "en menu";
            font-size: 12px;
            font-weight: 100;
        }

        /* Section Contact */
        .contact {
            background: var(--boisFonce);
            background-size: cover;
            background-image: url('/assets/img/back-footer-1.jpg');
            background-size: 400px;
            color: var(--blancCreme);
            padding: 60px 40px;
        }

        .contact .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .contact .info,
        .contact .form {
            flex: 1 1 300px;
            margin: 20px;
        }

        .contact .info h3,
        .contact .form h3 {
            font-family: 'Lobster', cursive;
            margin-bottom: 15px;
            font-size: 28px;
        }

        .contact .info p {
            margin-bottom: 10px;
        }

        .contact .form form {
            display: flex;
            flex-direction: column;
        }

        .contact .form form input,
        .contact .form form textarea {
            padding: 10px;
            margin-bottom: 15px;
            border: none;
            border-radius: 5px;
            font-family: 'Montserrat', sans-serif;
        }

        .contact .form form button {
            background: var(--doré);
            border: none;
            padding: 12px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: box-shadow 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .contact .form form button:hover {
            box-shadow: 0 0 15px var(--doré);
        }

        /* Media Query */
        @media (max-width: 900px) {

            .hero-content h1 {
                font-size: 2rem;
            }

            .menu-section h2 {
                font-size: 1.8rem;
            }

            .about .about-image,
            .about .about-text {
                padding: 10px;
            }

            .menu-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding-bottom: 10px;
                flex-direction: column;
            }

            .menu-item {
                min-width: 250px;
                flex: none;
            }

            .contact {
                padding: 20px 10px;
            }

            .about {
                flex-direction: column;
                padding: 20px 10px;
            }

            /* Section Notre Carte */
            .menu-section {
                padding: 20px 5px;
            }
        }

        @media (max-width: 500px) {
            .menu-section h2 {
                font-size: 1.2rem;
            }
        }
