:root {
    --bglogo: #000000;
    --gold: #e4ab35;
    --gold-light: #e4ab35;
    --bg-dark: #0D0D0D;
    --bg-secondary: #151515;
    --text-primary: #F5F1E8;
    --text-secondary: #C8C4BC;
    --bg-light: #F3F0EA;
    --text-dark: #181818;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bglogo);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: "Cormorant Garamond", serif;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: var(--bglogo);
    border-bottom: 1px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header div p img {
    width: 20%;
    margin-right: 0.5rem;
}

.logo p {
    font-size: 1.3rem;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 75%;
}

nav a {
    text-decoration: none;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold-light);
}

.btn-reserve {
    border: 2px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-reserve:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* GENERAL STYLES */
.gold {
    color: var(--gold);
}

.separator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    color: var(--gold);
}

section {
    scroll-margin-top: 80px;
}

/* ACCUEIL SECTION */
.accueil {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5rem;
    position: relative;
}

.accueil-content {
    max-width: 600px;
    color: var(--text-primary);
}

.accueil-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.accueil h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.accueil-description {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 2rem 0;
    line-height: 1.8;
}

.accueil-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.accueil-image {
    width: 26%;
    margin-left: 20%;
}

/* BUTTONS */
.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--text-dark);
}


.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* taille specialiter */

.taille {
    width: 250px;
    margin: 0 auto;
}


.menu-section {
    background: linear-gradient(rgba(245, 241, 232, 0.85), rgba(245, 241, 232, 0.85)), 
                url('images/bg-menu.jpg') center/cover no-repeat;
    color: var(--text-dark);
    padding: 5rem 3rem;
    text-align: center;
    filter: grayscale(20%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.menu-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    margin: 3rem auto;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.menu-category {
    text-align: left;
    font-weight: bold;
}

.menu-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.menu-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px dotted #ccc;
}

.menu-item span:last-child {
    color: var(--gold);
    font-weight: bold;
}

.centrer-vin {
    text-align: center;
    display: flex;
    flex-direction: column;
}


.text-imp {
    font-weight: bold;
    font-size: 0.95rem;
}
.btn-fullmenu {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 0.75rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 2rem;
}

.btn-fullmenu:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* CONTACT SECTION */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 3rem;
    background: var(--bg-secondary);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    color: var(--text-primary);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-details {
    margin-top: 2rem;
}

.info-details div a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.contact-form input,
.contact-form textarea {
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 1px solid var(--gold);
    padding: 0.75rem;
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 5px rgba(212, 167, 44, 0.3);
}

.contact-map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 2px solid var(--gold);
}

.btn-submit {
    background: var(--gold);
    color: var(--text-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* FOOTER */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--gold);
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content .logo {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.credits a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.credits a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Header responsive */
    header {
        flex-direction: row;
        padding: 1rem;
        gap: 0;
        justify-content: space-between;
    }

    .logo p {
        font-size: 1rem;
    }

    header div p img {
        width: 30px;
        height: 30px;
    }

    /* Menu Burger */
    .menu-burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-burger span {
        width: 25px;
        height: 3px;
        background: var(--gold);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .menu-burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .menu-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Navigation mobile */
    nav.nav-menu {
        position: absolute;
        top: 60px;
        left: -40px;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg-dark);
        padding: 1.5rem 3rem;
        border-bottom: 1px solid var(--gold);
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    nav.nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav.nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(212, 167, 44, 0.2);
        text-align: left;
    }

    nav.nav-menu a:last-child {
        border-bottom: none;
    }

    /* Accueil responsive */
    .accueil {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: 400px;
        flex-direction: column;
        justify-content: center;
    }

    .accueil-content {
        max-width: 100%;
        text-align: center;
    }

    .accueil h1 {
        font-size: 2.5rem;
    }

    .accueil-buttons {
        flex-direction: column;
        align-items: center;
    }

    .accueil-image {
        width: 50%;
        margin-left: 0;
        margin-top: 1.5rem;
    }

    /* Menu section responsive */
    .menu-section {
        padding: 3rem 1.5rem;
    }

    .menu-grid {
        gap: 2rem;
        max-width: 100%;
    }

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

    /* Contact responsive */
    .contact-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .contact-map {
        height: 300px;
    }

    /* Footer responsive */
    footer {
        padding: 2rem 1rem;
    }

    .footer-social {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem;
    }

    .logo p {
        font-size: 0.9rem;
    }

    header div p img {
        width: 25%;
        margin-right: 0.25rem;
    }

    nav.nav-menu {
        padding: 1rem 0.5rem;
        top: 50px;
    }

    .accueil {
        padding: 1.5rem 1rem;
    }

    .accueil h1 {
        font-size: 1.8rem;
    }

    .accueil-subtitle {
        font-size: 0.75rem;
    }

    .accueil-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .menu-section {
        padding: 2rem 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .contact-section {
        padding: 2rem 1rem;
    }
}