/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; font-size: inherit; }

/* ── Hero Gradient ────────────────────────────────── */
.hero-gradient {
    background: linear-gradient(135deg, #3e1d35 0%, #6B2F5B 30%, #8a356f 55%, #a84e8e 75%, #D4943A 100%);
}

/* ── Hero Subtle Pattern ──────────────────────────── */
.hero-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 32px 32px;
}

/* ── Floating Orbs ────────────────────────────────── */
.hero-orb { filter: blur(80px); }
.hero-orb--1 { background: #f4b94a; }
.hero-orb--2 { background: #e8c8df; }
.hero-orb--3 { background: #fce4ab; }

/* ── Visit Section Gradient ───────────────────────── */
.visit-gradient {
    background: linear-gradient(135deg, #3e1d35 0%, #542648 40%, #6B2F5B 70%, #8a356f 100%);
}
.visit-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 28px 28px;
}

/* ── Navbar ───────────────────────────────────────── */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
    background: rgba(250, 244, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(107, 47, 91, 0.08);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4943A, #f4b94a);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ── Mobile Menu ──────────────────────────────────── */
#mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }
#mobile-menu .menu-line:nth-child(3) { width: 1.5rem; }
#mobile-menu.open .menu-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
#mobile-menu.open .menu-line:nth-child(2) { opacity: 0; }
#mobile-menu.open .menu-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); width: 1.5rem; }

/* ── Reveal Animations ────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-up { opacity: 0; transform: translateY(30px); }
    .reveal-left { opacity: 0; transform: translateX(-40px); }
    .reveal-right { opacity: 0; transform: translateX(40px); }

    .reveal-up.revealed,
    .reveal-left.revealed,
    .reveal-right.revealed {
        opacity: 1;
        transform: none;
    }
}

/* ── Hero Entrance ────────────────────────────────── */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) translate(-50%, -50%); }
    50% { transform: translateY(-14px) translate(-50%, -50%); }
}
.hero-orb--3 {
    animation: heroFloat 6s ease-in-out infinite;
}

/* ── Custom Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf4f8; }
::-webkit-scrollbar-thumb { background: #d7a0c8; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #c476ad; }

/* ── Focus Styles ─────────────────────────────────── */
:focus-visible { outline: 2px solid #8a356f; outline-offset: 2px; border-radius: 4px; }

/* ── Selection ────────────────────────────────────── */
::selection { background: #e8c8df; color: #3e1d35; }
