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

:root {
    --gold: #B8860B;
    --gold-light: #D4A843;
    --white: #FFFFFF;
    --off-white: #F8F7F5;
    --charcoal: #1A1A1A;
    --gray: #6B6B6B;
    --gray-light: #E8E8E8;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    padding: 14px 5%;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar.scrolled .logo { color: var(--charcoal); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--charcoal); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span { background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1574071318508-1cdbab80d002?w=1600') center/cover no-repeat;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--white);
    color: var(--charcoal);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
}

.scroll-indicator::after {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(10px); }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 5%;
}

.section-light { background: var(--white); }
.section-cream { background: var(--off-white); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .overline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 15px;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== PHILOSOPHIE ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-card {
    text-align: center;
    padding: 40px 30px;
}

.philosophy-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-card .icon svg {
    stroke: var(--gold);
}

.philosophy-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.philosophy-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CARTE ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.menu-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.menu-card-body {
    padding: 28px;
}

.menu-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.menu-card-body .desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.menu-card-body .price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
}

/* ===== GALERIE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active { opacity: 1; }

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

/* ===== REASSURANCE ===== */
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.reassurance-item {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reassurance-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.reassurance-item svg {
    stroke: var(--gold);
    margin-bottom: 16px;
}

.reassurance-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.reassurance-item p {
    font-size: 13px;
    color: var(--gray);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg { stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 1px solid var(--gray-light);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 80px 40px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: var(--charcoal);
    background: none;
    border: none;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav ul a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .reassurance-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 38px; }
    .hero-content p { font-size: 14px; }
    .section { padding: 60px 5%; }
    .section-header h2 { font-size: 30px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item img { height: 200px; }
    .reassurance-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 24px; }
    .footer-links { flex-direction: column; gap: 16px; }
}
