/* =============================================
   JARDIN SAKURA — Premium Restaurant Website
   Zen lumineux / Sakura / 3D
   ============================================= */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* --- Variables --- */
:root {
    --bg: #FEFAF6;
    --bg-alt: #FFF9F5;
    --rose: #F2B5D4;
    --rose-deep: #D4577B;
    --rose-hover: #c04468;
    --vert: #7A9E7E;
    --gold: #C9A96E;
    --gold-bright: #D4AF37;
    --dark: #2D2D2D;
    --dark-deep: #1a1215;
    --text: #2D2D2D;
    --text-mid: #555;
    --text-light: #888;
    --white: #fff;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px rgba(212,87,123,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Lato', -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    --yellow: #F0DC82;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-b);
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-h); font-weight: 700; line-height: 1.2; }

/* --- Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header h2 {
    font-size: 2.8rem;
    color: var(--text);
    margin-bottom: 16px;
}
.section-header .accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--gold));
    border-radius: 2px;
    margin: 0 auto 20px;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s;
}
.btn:hover::after { left: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--rose-deep), #c74a6a);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212,87,123,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,87,123,0.45);
}
.btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--rose-deep);
    border-color: var(--white);
    transform: translateY(-3px);
}
/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(254,250,246,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { font-family: var(--font-script); font-size: 1.8rem; font-weight: 700; color: var(--white); transition: color 0.3s; }
.nav-logo span { color: var(--yellow); }
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85);
    position: relative; padding: 4px 0; letter-spacing: 0.3px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--yellow);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn::after { display: none; }
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links .btn { padding: 10px 24px; font-size: 0.85rem; }

.nav-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-menu-btn span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }
.navbar.scrolled .nav-menu-btn span { background: var(--text); }
.nav-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO — Cinematic
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1a1215 0%, #2d1f28 35%, #3d2a35 60%, #2a1e25 100%);
    overflow: hidden;
}

/* Ambient animated gradient overlay */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,87,123,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(122,158,126,0.04) 0%, transparent 50%);
    animation: ambientShift 12s ease-in-out infinite alternate;
}
@keyframes ambientShift {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Hero background photo */
.hero-bg-photo {
    position: absolute;
    inset: -10px;
    background: center/cover no-repeat;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,18,21,0.88) 0%, rgba(45,31,40,0.83) 50%, rgba(42,30,37,0.88) 100%);
    z-index: 0;
}


#sakura-canvas {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 1;
}

.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 24px;
}

.hero h1 {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title-wrap { overflow: hidden; }
.hero-title-wrap h1 {
    animation: heroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.hero h1 span {
    color: var(--yellow);
    -webkit-text-fill-color: var(--yellow);
    text-shadow: 0 0 30px rgba(243,225,37,0.3);
}

.hero-subtitle {
    font-family: var(--font-b);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: heroFadeIn 1s ease 0.9s both;
}

.hero-cta {
    display: flex; gap: 16px;
    justify-content: center; flex-wrap: wrap;
    animation: heroFadeIn 1s ease 1.2s both;
}

@keyframes heroSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: heroFadeIn 1s ease 1.6s both;
}
.hero-scroll span {
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(243,225,37,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Golden sparkle particles */
.sparkle {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 6px var(--gold), 0 0 12px rgba(201,169,110,0.3);
    animation: sparkleFloat linear forwards;
}
@keyframes sparkleFloat {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    15% { opacity: 1; transform: translateY(-10vh) scale(1); }
    100% { opacity: 0; transform: translateY(-90vh) scale(0.3) translateX(20px); }
}


/* =============================================
   WAVE SECTION DIVIDER
   ============================================= */
.wave-divider {
    position: relative;
    margin-top: -2px;
    line-height: 0;
    overflow: hidden;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}
.wave-divider-flip { transform: scaleY(-1); margin-top: 0; margin-bottom: -2px; }

/* =============================================
   À PROPOS
   ============================================= */
.about { position: relative; background: var(--white); overflow: hidden; }

.about-seigaiha {
    position: absolute; top: -50px; right: -80px;
    width: 500px; height: 500px; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='100' r='40' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='50' cy='100' r='30' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='50' cy='100' r='20' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='0' cy='100' r='40' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='0' cy='100' r='30' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='0' cy='100' r='20' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='20' fill='none' stroke='%237A9E7E' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 50px;
}

/* about-centered replaces about-grid (no image) */
.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--rose-deep), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.about-text p { color: var(--text-mid); margin-bottom: 18px; font-size: 1.05rem; }

.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 32px;
}
.about-feature {
    display: flex; align-items: center; gap: 14px;
    padding: 18px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s var(--ease);
}
.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(243,225,37,0.3);
}
.about-feature svg { width: 36px; height: 36px; flex-shrink: 0; }
.about-feature span { font-weight: 700; font-size: 0.9rem; }

/* Info card — single unified card with all features */
.about-info-card {
    margin-top: 32px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
    padding: 8px 24px;
}
.about-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}
.about-info-item svg { width: 32px; height: 32px; flex-shrink: 0; }
.about-info-item span { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.about-info-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
}

/* about-image removed — using centered text layout */

/* Stats section removed */

/* =============================================
   GALERIE — 3D Tilt Cards
   ============================================= */
.gallery { background: var(--bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: box-shadow 0.4s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }

/* Unique gradient per card */
.gallery-item:nth-child(1) { background: linear-gradient(135deg, #fce4d6, #f5c0a8); }
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #e8ddd4, #d4c4b0); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #d4e6d4, #b0c8a8); }
/* Gloss reflection on 3D tilt */
.gallery-item .gallery-gloss {
    position: absolute; inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-gloss { opacity: 1; }

.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,20,25,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--yellow);
    font-family: var(--font-h);
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: transform 0.4s var(--ease);
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.gallery-item:hover .gallery-item-overlay span { transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
    max-width: 80%; max-height: 80vh;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.4s var(--ease);
    display: flex; align-items: center; justify-content: center;
    min-width: 400px; min-height: 300px;
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; stroke: var(--white); }

/* =============================================
   CONTACT & RÉSERVATION
   ============================================= */
.contact { background: var(--white); position: relative; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}
.contact-info h3, .reservation-form h3 {
    font-size: 1.7rem; margin-bottom: 28px;
    background: linear-gradient(135deg, var(--rose-deep), var(--yellow));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.contact-detail {
    display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.contact-detail-icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,87,123,0.08), rgba(201,169,110,0.08));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--rose-deep); }
.contact-detail h4 { font-family: var(--font-b); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-detail p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Form with glass effect */
.reservation-form form {
    background: var(--bg);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 700;
    margin-bottom: 8px; color: var(--text);
    letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 14px 18px;
    border: 2px solid #ece8e4;
    border-radius: var(--radius-sm);
    font-family: var(--font-b); font-size: 1rem;
    color: var(--text); background: var(--white);
    transition: all 0.3s var(--ease); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(243,225,37,0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
    width: 100%; justify-content: center;
    font-size: 1.05rem; padding: 16px;
    margin-top: 8px;
}
.form-submit svg { width: 20px; height: 20px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: linear-gradient(180deg, #1a1215, #0f0a0d);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px; margin-bottom: 50px;
}
.footer-brand h3 { font-family: var(--font-script); font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
.footer-brand h3 span { color: var(--yellow); }
.footer-brand p { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.45); }

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links a {
    display: block; padding: 5px 0;
    color: rgba(255,255,255,0.45); font-size: 0.9rem;
    transition: all 0.3s;
}
.footer-links a:hover { color: var(--yellow); padding-left: 6px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-3px);
}
.footer-social a:hover svg { fill: var(--dark); }
.footer-social a svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    text-align: center; font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0; transform: translateX(-50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0; transform: translateX(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================
   PAGE MENU
   ============================================= */
.menu-hero {
    background: linear-gradient(160deg, #1a1215 0%, #2d1f28 50%, #2a1e25 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative; overflow: hidden;
}
.menu-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(212,87,123,0.08), transparent 60%);
}
.menu-hero h1 { font-size: 3.2rem; color: var(--white); margin-bottom: 12px; position: relative; }
.menu-hero h1 span {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.menu-hero p { color: rgba(255,255,255,0.5); font-size: 1.05rem; letter-spacing: 3px; position: relative; }

.menu-filters {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    padding: 30px 0;
    position: sticky; top: 0;
    background: rgba(254,250,246,0.95);
    backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 24px; border-radius: 50px;
    border: 2px solid #e8e4e0; background: transparent;
    font-family: var(--font-b); font-size: 0.9rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s var(--ease);
    color: var(--text-light);
}
.filter-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }

/* Per-button colors */
.filter-btn[data-filter="all"]:hover { border-color: var(--text-mid); color: var(--text); }
.filter-btn[data-filter="all"].active {
    background: #b8b3ae; border-color: #b8b3ae; color: var(--white);
}

.filter-entrees { border-color: rgba(122,158,126,0.3); color: #5a8a5e; }
.filter-entrees:hover { border-color: #7A9E7E; color: #4a7a4e; }
.filter-entrees.active {
    background: linear-gradient(135deg, #7A9E7E, #5a8a5e);
    border-color: #7A9E7E;
}

.filter-dimsum { border-color: rgba(201,169,110,0.3); color: #b08a3e; }
.filter-dimsum:hover { border-color: var(--gold); color: #9a7a2e; }
.filter-dimsum.active {
    background: linear-gradient(135deg, var(--gold), #a8873e);
    border-color: var(--gold);
}

.filter-sushis { border-color: rgba(232,120,100,0.3); color: #d4654e; }
.filter-sushis:hover { border-color: #e87864; color: #c4553e; }
.filter-sushis.active {
    background: linear-gradient(135deg, #e87864, #d4553e);
    border-color: #e87864;
}

.filter-plats { border-color: rgba(212,87,123,0.3); color: var(--rose-deep); }
.filter-plats:hover { border-color: var(--rose-deep); color: var(--rose-hover); }
.filter-plats.active {
    background: linear-gradient(135deg, var(--rose-deep), var(--rose-hover));
    border-color: var(--rose-deep);
}

.filter-menus { border-color: rgba(80,140,160,0.3); color: #3a8a9e; }
.filter-menus:hover { border-color: #508CA0; color: #2a7a8e; }
.filter-menus.active {
    background: linear-gradient(135deg, #508CA0, #3a7a8e);
    border-color: #508CA0;
}

.filter-desserts { border-color: rgba(160,100,180,0.3); color: #9060a0; }
.filter-desserts:hover { border-color: #A064B4; color: #805090; }
.filter-desserts.active {
    background: linear-gradient(135deg, #A064B4, #8850a0);
    border-color: #A064B4;
}

.menu-section { padding: 50px 0 80px; }

.menu-category-title {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--rose-deep), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 30px; padding-bottom: 14px;
    border-bottom: 2px solid rgba(242,181,212,0.3);
    display: inline-block;
}

.menu-items { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.menu-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s var(--ease);
    opacity: 0; transform: translateY(20px);
}
.menu-item.visible { opacity: 1; transform: translateY(0); }
.menu-item.hidden { display: none; }
.menu-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(242,181,212,0.15);
}

.menu-item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.menu-item-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; }
.menu-item-price {
    font-family: var(--font-h); font-size: 1.15rem; font-weight: 700;
    color: var(--rose-deep); white-space: nowrap; margin-left: 16px;
}
.menu-item-desc { color: var(--text-light); font-size: 0.92rem; line-height: 1.65; }
.menu-item-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.menu-item-tag {
    font-size: 0.72rem; padding: 4px 12px; border-radius: 20px;
    background: linear-gradient(135deg, rgba(122,158,126,0.08), rgba(122,158,126,0.04));
    color: var(--vert); font-weight: 700; letter-spacing: 0.3px;
}

.menu-back-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 50px;
    color: var(--rose-deep); font-weight: 700;
    transition: gap 0.3s var(--ease);
}
.menu-back-link:hover { gap: 14px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .menu-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    .section-header h2 { font-size: 2.2rem; }

    .nav-links {
        position: fixed; top: 0; right: -100%;
        width: 300px; height: 100vh;
        background: var(--white);
        flex-direction: column; align-items: flex-start;
        padding: 90px 32px 32px; gap: 16px;
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text); font-size: 1.1rem; }
    .nav-menu-btn { display: flex; }

    .hero h1 { font-size: 2.6rem; letter-spacing: 0; }
    .hero-subtitle { font-size: 0.9rem; letter-spacing: 3px; }

    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-row { grid-template-columns: 1fr; }
    .menu-hero h1 { font-size: 2.2rem; }
    .lightbox-content { min-width: unset; max-width: 95%; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn-xl { padding: 18px 40px; font-size: 1.05rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .menu-filters { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 0.8rem; gap: 4px; }
    .filter-btn svg { width: 15px; height: 15px; }
    .menu-categories { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
    .delivery-extras { grid-template-columns: 1fr; }
    .hero-logo { width: 140px; }
    .hero-logo-wrapper { width: 160px; }
}

/* =============================================
   HERO LOGO + ANIMATED FLOWER
   ============================================= */
.hero-logo-wrapper {
    position: relative;
    width: 240px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFadeIn 1.2s ease 0.2s both;
}

/* Pulsing glow behind logo */
.logo-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243,225,37,0.2) 0%, rgba(242,181,212,0.15) 40%, transparent 70%);
    filter: blur(30px);
    animation: logoGlowPulse 4s ease-in-out infinite;
}
@keyframes logoGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.15); }
}


/* The logo image */
.hero-logo {
    width: 200px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)) drop-shadow(0 0 40px rgba(243,225,37,0.15));
    animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* About centered layout (no image) */
.about-centered {
    max-width: 780px;
    margin: 0 auto;
}

/* =============================================
   GALLERY WITH REAL IMAGES
   ============================================= */
.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   MENU PREVIEW — Category Cards
   ============================================= */
.menu-preview {
    background: var(--bg);
}
.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.menu-cat-card {
    padding: 32px 28px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    transition: all 0.35s var(--ease);
}
.menu-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(242,181,212,0.15);
}
.menu-cat-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--rose-deep), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cat-cn {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
}
.menu-cat-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 14px;
}
.cat-price {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: #b8a000;
    padding: 4px 16px;
    border-radius: 20px;
    background: rgba(243,225,37,0.1);
}
.menu-preview-cta-top {
    text-align: center;
    margin-bottom: 50px;
}
.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}
.btn-xl {
    padding: 22px 56px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 30px rgba(212,87,123,0.4);
    animation: ctaGlow 3s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 6px 30px rgba(212,87,123,0.4); }
    50% { box-shadow: 0 8px 45px rgba(212,87,123,0.6), 0 0 20px rgba(212,87,123,0.2); }
}

/* Photos coming soon */
.photos-coming {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border: 2px dashed rgba(0,0,0,0.08);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.92rem;
    font-style: italic;
}

/* Menu cat card as link */
a.menu-cat-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.menu-cat-card:hover {
    border-color: var(--yellow);
}

/* =============================================
   DELIVERY & SERVICES SECTION
   ============================================= */
.delivery-section {
    background: linear-gradient(135deg, var(--dark-deep), #2d1f28, #1a1215);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.delivery-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(122,158,126,0.06), transparent 60%);
}
.delivery-title {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
}
.delivery-section .section-header p {
    color: rgba(255,255,255,0.5);
}
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.delivery-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    position: relative;
}
.delivery-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    transition: transform 0.3s var(--ease);
}
.delivery-card:hover {
    transform: translateY(-5px);
}
.delivery-icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(243,225,37,0.12), rgba(201,169,110,0.12));
}
.delivery-icon svg { width: 22px; height: 22px; }
.delivery-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.delivery-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    line-height: 1.7;
}
.delivery-highlight {
    color: var(--yellow) !important;
    font-weight: 700;
}
.delivery-bonus {
    color: var(--gold) !important;
    font-size: 0.85rem !important;
    margin-top: 6px;
}

/* =============================================
   GOOGLE MAPS SECTION
   ============================================= */
.map-section {
    background: var(--bg);
    padding: 80px 0 0;
}
.map-wrapper {
    width: 100%;
    line-height: 0;
    margin-top: 40px;
}
.map-wrapper iframe {
    width: 100%;
    height: 400px;
    display: block;
}

/* =============================================
   LIGHTBOX IMAGE SUPPORT
   ============================================= */
.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================================
   RESPONSIVE — New Sections
   ============================================= */
@media (max-width: 992px) {
    .menu-categories { grid-template-columns: repeat(2, 1fr); }
    .delivery-grid { grid-template-columns: 1fr; }
    .delivery-extras { grid-template-columns: 1fr; }
    .gallery-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-logo { width: 180px; }
    .hero-logo-wrapper { width: 200px; }
}
@media (max-width: 768px) {
    .menu-categories { grid-template-columns: 1fr; }
    .hero-logo { width: 160px; }
    .hero-logo-wrapper { width: 180px; }
    .logo-glow { width: 160px; height: 160px; }
    .gallery-grid-3 { grid-template-columns: 1fr; }
    .delivery-section { padding: 70px 0; }
}
