/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }

/* ── Navbar ──────────────────────────────────────── */
.nav-fixed {
    background: rgba(254, 247, 250, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 142, 0.08);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav-fixed.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 24px rgba(123, 45, 142, 0.08);
}
.nav-line { transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle.active .nav-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active .nav-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 1.5rem; }
.mobile-nav-link { display: block; padding: 0.5rem 1rem; border-radius: 0.5rem; }
.mobile-nav-link:hover { background: rgba(123, 45, 142, 0.05); }

/* ── Hero ────────────────────────────────────────── */
#hero { position: relative; }
.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.pexels.com/photos/2422363/pexels-photo-2422363.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    transform: scale(1.05);
}
.hero-eyebrow {
    opacity: 0;
    animation: fadeDown 0.8s 0.2s forwards;
}
.hero-title {
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
}
.hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
}
.hero-buttons {
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
}
.hero-scroll {
    opacity: 0;
    animation: fadeIn 1s 1.4s forwards;
}

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 2rem;
    background: #F5C518; color: #451a03;
    font-weight: 700; font-size: 0.95rem;
    border-radius: 9999px; border: none; cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    text-decoration: none;
}
.btn-primary:hover { background: #e6b500; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 197, 24, 0.35); }
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent; color: #fdf2f8;
    font-weight: 700; font-size: 0.95rem;
    border: 2px solid rgba(253, 242, 248, 0.5);
    border-radius: 9999px; cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

/* ── Section Shared ──────────────────────────────── */
.section-eyebrow { letter-spacing: 0.2em; }
.section-title { line-height: 1.15; }
.section-subtitle { line-height: 1.7; }

/* ── Menu Cards ──────────────────────────────────── */
.menu-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.menu-card:hover { transform: translateY(-4px); }

/* ── Reveal Animations (below the fold only) ─────── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal[data-revealed="false"] {
    opacity: 0;
    transform: translateY(24px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal[data-revealed="false"] { opacity: 0; transform: translateY(24px); }
}

/* ── Gallery ─────────────────────────────────────── */
.gallery-item { cursor: default; }
.gallery-item img { will-change: transform; }

/* ── Keyframes ───────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fdf2f8; }
::-webkit-scrollbar-thumb { background: #fbcfe8; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #f9a8d4; }
