/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; -webkit-font-smoothing: antialiased; }

/* ── Hero Gradient ────────────────────────────────── */
.hero-gradient {
    background: linear-gradient(135deg, #721a2a 0%, #a82036 25%, #cc2d4a 50%, #e04765 75%, #f4a8b8 100%);
}

.hero-pattern {
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255,180,200,0.12) 0%, transparent 50%);
}

/* ── Floating Shapes ──────────────────────────────── */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.c1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #ffc0c9, transparent 70%);
    top: 10%; left: -5%;
    animation-delay: 0s;
}

.c2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, #ffd9e0, transparent 70%);
    top: 60%; right: -3%;
    animation-delay: -2s;
}

.c3 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, #f9d0d9, transparent 70%);
    bottom: 15%; left: 20%;
    animation-delay: -4s;
}

.c4 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, #ffecef, transparent 70%);
    top: 20%; right: 20%;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* ── CTA Gradient ─────────────────────────────────── */
.cta-gradient {
    background: linear-gradient(135deg, #a82036 0%, #cc2d4a 40%, #e04765 100%);
}

/* ── Navbar ───────────────────────────────────────── */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(114, 26, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(114, 26, 42, 0.2);
    padding: 0;
}

.nav-link-text {
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

#navbar.scrolled .nav-link-text {
    text-shadow: none;
}

/* ── Scroll Indicator ─────────────────────────────── */
.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ── Mobile Menu ──────────────────────────────────── */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffc0c9;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-nav-link:hover::after {
    width: 80%;
}

/* ── Reveal Animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ── Menu Card Hover ──────────────────────────────── */
.reveal.group:hover .aspect-\[4\/3\] img {
    transform: scale(1.05);
}

/* ── Smooth Section Transitions ───────────────────── */
section {
    position: relative;
}

/* ── Custom Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #fffdf9; }
::-webkit-scrollbar-thumb { background: #f4a8b8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e04765; }

/* ── Focus Styles ─────────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid #e04765;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Selection ────────────────────────────────────── */
::selection {
    background: #f9d0d9;
    color: #721a2a;
}
