:root {
    --dark-background: #1a1a1a;
    --text-light: #f0f0f0;
    --gold-accent: #D4B78F;
    --cocktail-background: #100C2A;
    --cocktail-accent: #D891EF;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* --- Base & Typography --- */

body {
    font-family: var(--font-body);
    background-color: var(--dark-background);
    color: var(--text-light);
    margin: 0;
    padding-top: 60px; /* Adjust for fixed nav */
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}


h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--gold-accent);
    font-weight: 700;
    margin-top: 0;
    line-height: 1.2;
}

h1 {
    font-size: 5rem;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

h2 {
    font-family: 'Damion', cursive;
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
    text-transform: none;
    font-weight: 400;
}

h2::after {
    display: none;
}

p {
    margin-bottom: 1rem;
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --- Header --- */

header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('imgs/photos/le71-view.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.logo-image {
    max-width: 450px;
    margin-bottom: 2rem;
}

header .address {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* --- Menu Section --- */

.menu-section {
    background-color: var(--dark-background);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.menu-category h3 {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 0.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.menu-item-details {
    margin-right: 2rem;
}

.menu-item-name {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.menu-item-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-top: 0.3rem;
}

.menu-item-price {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--gold-accent);
    font-size: 1.2rem;
    white-space: nowrap;
}

/* --- Cocktail Section --- */

.cocktail-section {
    background-color: var(--cocktail-background);
    padding: 6rem 0;
}

.cocktail-section h2 {
    font-family: 'Damion', cursive; /* A more fluid, script-like font */
    font-size: 4.5rem;
    color: #fdf7ff;
    text-shadow: 0 0 5px var(--cocktail-accent), 0 0 10px var(--cocktail-accent), 0 0 20px #fff;
}

.cocktail-section h2::after {
    display: none; /* Remove underline for the glowing effect */
}

.cocktail-section .menu-item-name {
    color: white;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cocktail-section .menu-item-price {
    color: var(--cocktail-accent);
    font-weight: bold;
}

.cocktail-section .menu-item-description {
    color: #cccccc;
}


/* --- Contact/Footer Section --- */

footer {
    background-color: #111;
    text-align: center;
    padding: 3rem 2rem;
}

footer h3 {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

footer p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

footer h4 {
    font-family: var(--font-title);
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.btn-map {
    display: inline-block;
    background-color: var(--gold-accent);
    color: var(--dark-background);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 8px rgba(212, 183, 143, 0.3);
}

.btn-map:hover {
    background-color: var(--text-light);
    color: var(--dark-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 183, 143, 0.5);
}

.footer-icon-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(212, 183, 143, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
}

.footer-icon-btn:hover {
    border-color: var(--gold-accent);
    background: rgba(212, 183, 143, 0.08);
}

.footer-icon-btn svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    stroke: var(--gold-accent);
    transition: stroke 0.3s ease;
}

.footer-icon-btn:hover svg {
    stroke: var(--gold-accent);
}

.footer-icon-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-icon-btn strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.footer-icon-btn:hover strong {
    color: var(--gold-accent);
}

.footer-icon-btn span {
    font-size: 0.95rem;
    color: rgba(240, 240, 240, 0.8);
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-icon-btn:hover span {
    color: var(--text-light);
}

.horaires-section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.horaires-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: rgba(212, 183, 143, 0.05);
    border-left: 3px solid var(--gold-accent);
    border-radius: 4px;
}

.horaire-item .jour {
    font-weight: 600;
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.horaire-item .heures {
    color: var(--text-light);
    font-size: 1rem;
}

/* --- Responsive Design --- */


/* --- Navigation --- */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center; /* Aligns items vertically */
    gap: 2rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold-accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    transform: scaleX(1);
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-link svg {
    stroke: var(--text-light);
    transition: stroke 0.3s ease;
}

.nav-icon-link:hover svg {
    stroke: var(--gold-accent);
}

.nav-toggle {
    display: none;
}


.menu-button-container {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.nav-icon-link svg {
    stroke: var(--text-light);
    transition: stroke 0.3s ease;
}

.nav-icon-link:hover svg {
    stroke: var(--gold-accent);
}


.reservation-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--gold-accent);
    color: var(--dark-background);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 998;
    border: 2px solid var(--dark-background);
    transition: transform 0.3s ease;
}

.reservation-fab:hover {
    transform: scale(1.1);
}

.reservation-fab svg {
    width: 28px;
    height: 28px;
    color: var(--dark-background);
}

.grecaptcha-badge {
    display: none;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--dark-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Gallery with Captions --- */
.gallery-item-with-caption {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-with-caption img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-item-with-caption .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 20%, transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: left;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item-with-caption:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.gallery-item-with-caption:hover .caption {
    transform: translateY(0);
    opacity: 1;
}

/* --- Esprit Section --- */
.esprit-section {
    background-color: #0f0f0f;
    padding: 6rem 0;
}

.esprit-header {
    text-align: center;
    margin-bottom: 4rem;
}

.esprit-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.esprit-header h2 {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.esprit-intro {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.esprit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.esprit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.esprit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 183, 143, 0.2);
}

.esprit-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.esprit-icon {
    font-size: 2rem;
}

.esprit-card h3 {
    font-size: 1.3rem;
    color: var(--gold-accent);
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

.esprit-card p {
    color: #e5e7eb;
    line-height: 1.7;
    margin: 0;
}

.esprit-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-esprit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-esprit:hover {
    background-color: var(--gold-accent);
    color: var(--dark-background);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 183, 143, 0.4);
}

.esprit-promo {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.esprit-promo strong {
    color: var(--gold-accent);
    font-weight: 700;
}



/* --- Responsive Design --- */
@media (max-width: 960px) {
    /* --- Typography & Layout --- */
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    /* --- Header --- */
    .logo-image {
        max-width: 350px;
    }

    /* --- Navigation --- */
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--dark-background);
        padding: 0.5rem 0;
        text-align: center;
    }

    .main-nav.active ul {
        display: flex;
    }

    .main-nav.active ul li {
        padding: 0rem 0;
    }

    .nav-toggle {
        display: block;
        position: fixed;
        top: 15px;
        right: 20px;
        z-index: 1001;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }

    /* --- Menu Section --- */
    .menu-category h3 {
        text-align: center;
    }

    .menu-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu-item-details {
        margin-right: 0;
        margin-bottom: 0.8rem;
    }

    .cocktail-section h2 {
        font-size: 3.5rem;
    }
    
    /* --- Gallery --- */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* --- Horaires --- */
    .horaire-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .horaire-item .jour {
        font-size: 1rem;
    }
    
    .horaire-item .heures {
        font-size: 0.95rem;
    }
    
    footer h4 {
        font-size: 1.3rem;
    }
    
    /* --- Footer Icon Buttons --- */
    .footer-icon-btn {
        min-width: auto;
        width: 100%;
        padding: 1rem 1.2rem;
    }
    
    /* --- Esprit Section --- */
    .esprit-section {
        padding: 4rem 0;
    }
    
    .esprit-header h2 {
        font-size: 2rem;
    }
    
    .esprit-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .esprit-card {
        padding: 1.5rem;
    }
    
    .esprit-card h3 {
        font-size: 1.1rem;
    }
}
