/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NAV ───────────────────────────────────────────── */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
    background: rgba(7, 4, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(251, 191, 36, 0.08), 0 4px 30px rgba(0,0,0,0.4);
    padding-top: 0;
    padding-bottom: 0;
}
#navbar.scrolled .nav-link { font-size: 0.75rem; }

.nav-link {
    position: relative;
    padding-bottom: 2px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Burger animation */
.burger-line { transition: all 0.3s ease; }
#menu-btn.active .burger-line:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
#menu-btn.active .burger-line:nth-child(2) { opacity: 0; }
#menu-btn.active .burger-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 24px; }

.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link { font-size: 1.75rem !important; }

/* ─── HERO ──────────────────────────────────────────── */
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

/* Gold particles */
.gold-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #fbbf24, transparent);
    border-radius: 50%;
    opacity: 0;
    animation: float-gold 6s ease-in-out infinite;
}
@keyframes float-gold {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    50% { opacity: 0.7; transform: translateY(-40px) scale(1); }
}

/* Hero animations */
.hero-badge { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-title { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-subtext { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.6s; }
.hero-ctas { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards 0.8s; }
.hero-scroll { opacity: 0; animation: fadeIn 0.8s ease forwards 1.2s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* ─── CTA BUTTONS ───────────────────────────────────── */
.cta-primary {
    position: relative;
    overflow: hidden;
}
.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.cta-primary:hover::before { opacity: 1; }

.cta-secondary {
    position: relative;
    overflow: hidden;
}

/* ─── HIGHLIGHT CARDS ───────────────────────────────── */
.highlight-card {
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(251,191,36,0.06);
}

/* ─── MENU ──────────────────────────────────────────── */
.menu-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 53, 99, 0.15);
    transition: padding-left 0.3s ease;
}
.menu-item:hover { padding-left: 8px; }
.menu-item:last-child { border-bottom: none; }

/* ─── GALLERY ───────────────────────────────────────── */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,4,12,0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── REVEAL ANIMATIONS ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0814; }
::-webkit-scrollbar-thumb { background: #500724; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #9d174d; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-title br { display: none; }
    .hero-title span { display: block; }
    .hero-subtext { font-size: 1rem; }
}
@media (min-width: 769px) and (max-width: 1023px) {
    .hero-title { font-size: 3.5rem; }
}
