@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400&display=swap');

:root {
    --gold: #d4af37;
    --dark: #0a0a0a;
    --gray: #121212;
    --text: #e0e0e0;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
nav.scrolled { padding: 10px 0; background: rgba(0, 0, 0, 0.95); }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--gold); transition: 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* --- MODIFICATION DEMO BAR --- */
.demo-bar {
    background: #7000ff;
    color: white;
    text-align: center;
    padding: 10px 20px; /* Un peu plus large pour le clic */
    font-size: 0.7rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    z-index: 1001;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* Propriétés de lien */
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.demo-bar:hover {
    background: #8533ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(112, 0, 255, 0.4);
}
/* ----------------------------- */

header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), var(--dark)), url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover fixed; 
    padding: 0 20px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    margin: 0;
    letter-spacing: 5px;
    font-style: italic;
    color: #fff;
    animation: fadeIn 2s ease;
}

p.tagline {
    font-size: 1.1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 20px;
    color: var(--gold);
    opacity: 0;
    animation: slideUp 1.5s ease 0.5s forwards;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    opacity: 0.5;
}

.section {
    padding: 120px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: var(--gold);
    font-weight: 400;
    position: relative;
}
.section-title span { display: block; font-size: 1rem; font-family: 'Lato', sans-serif; letter-spacing: 4px; color: #666; margin-bottom: 10px; text-transform: uppercase; }

.chef-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.chef-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s;
}
.chef-img:hover { filter: grayscale(0%); }

.chef-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}
.signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-top: 30px;
    font-style: italic;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: white;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    align-items: baseline;
}
.dish-details { flex: 1; margin-right: 20px; }
.dish-name { 
    font-weight: 400; 
    font-size: 1.2rem; 
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}
.dish-desc { 
    display: block; 
    font-size: 0.9rem; 
    color: #777; 
    margin-top: 5px; 
    font-style: italic; 
}
.dish-price { 
    font-family: 'Playfair Display', serif; 
    color: var(--gold); 
    font-size: 1.2rem; 
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
    opacity: 0.8;
}
.gallery-item:hover img { transform: scale(1.1); opacity: 1; }

.reservation-bg {
    background: var(--gray);
    padding: 80px;
    text-align: center;
    border: 1px solid #222;
    position: relative;
}
.reservation-bg::before {
    content: '';
    position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid #333;
    pointer-events: none;
}

.reservation-inputs {
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin-bottom: 30px;
}

.reservation-inputs select, .reservation-inputs input {
    padding: 15px;
    background: transparent;
    border: 1px solid #444;
    color: white;
    min-width: 200px;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    font-size: 1rem;
}
.reservation-inputs select option { background: #000; }

.btn-reserve {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-reserve::before {
    content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
    background: var(--gold); transition: 0.3s; z-index: -1;
}
.btn-reserve:hover { color: black; }
.btn-reserve:hover::before { width: 100%; }

.phone-box {
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
}
.phone-box p {
    color: #888;
    margin-bottom: 10px;
    font-style: italic;
}
.phone-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.phone-number:hover {
    color: white;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    display: block;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

@media (max-width: 900px) {
    h1 { font-size: 3.5rem; }
    .menu-grid, .chef-content { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }    
    .nav-links { 
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 10px;
    }
    .nav-links a {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    nav {
        height: auto;
        padding: 15px 0;
    }
    .chef-content {
        display: flex !important;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .chef-img {
        height: 300px;
        width: 100%;
    }
}

@media (min-width: 901px) {
    .phone-number {
        pointer-events: none; 
        cursor: text;
    }
}