/* Design System : Gourmandise & Tradition */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    /* Colors */
    --color-bg: #FFFDF9; /* Soft Cream */
    --color-primary: #800020; /* Bordeaux / Burgundy */
    --color-accent: #C5A059; /* Soft Gold / Bronze */
    --color-text: #2C2C2C; /* Dark Charcoal */
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
}

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

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 160, 89, 0.2);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

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

.nav-links a.btn-primary {
    color: var(--color-white);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

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

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

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

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

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    color: var(--color-white);
}

.hero h1 {
    font-size: 5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Sections */
.section { padding: 100px 0; }
.section-alt { background-color: var(--color-white); }

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 2px;
    background: var(--color-accent);
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 20px auto 60px;
    color: #666;
    font-size: 1.1rem;
}

/* Menu (Carte) */
.menu-category {
    margin-bottom: 50px;
}
.menu-category-title {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    position: relative;
}
.menu-item::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    border-bottom: 1px dotted rgba(0,0,0,0.2);
    z-index: -1;
}
.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: var(--color-bg);
    padding-right: 15px;
    font-weight: 600;
}
.menu-item-price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-primary);
    background: var(--color-bg);
    padding-left: 15px;
    font-weight: 700;
}
.menu-item-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    max-width: 80%;
}

/* Reservation Module Simulator */
.reservation-module {
    background: var(--color-white);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(128,0,32,0.05);
    border: 1px solid rgba(200, 160, 89, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.res-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.res-input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 14px;
    background: #f9f9f9;
}
.res-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.time-slots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.time-slot {
    padding: 10px 20px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}
.time-slot:hover, .time-slot.active {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Utilities */
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .mobile-toggle { display: block !important; } .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255, 253, 249, 0.95); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid rgba(200, 160, 89, 0.2); } .nav-links.active { display: flex; }
    .res-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; line-height: 1.2; }
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    
    /* Force responsive for inline grids */
    div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .menu-item-price {
        margin-top: 5px;
        padding-left: 0;
    }
    
    .menu-item::after {
        display: none;
    }
}

/* Avis clients */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.review-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.review-card .stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 14px;
}
.review-text {
    color: var(--color-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}
.review-author h4 {
    margin: 0;
    font-size: 15px;
    color: var(--color-primary);
}
.review-author span {
    font-size: 12px;
    color: var(--color-text-light);
}


