/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }

/* ── Hero Gradient ── */
.hero-gradient {
    background: linear-gradient(135deg, #3b0764 0%, #7B2D8E 35%, #a855f7 65%, #d97706 100%);
}

/* ── Floating Dots ── */
.hero-dots { pointer-events: none; }
.dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}
.dot-1 { width: 120px; height: 120px; top: 15%; left: 5%; animation: float 7s ease-in-out infinite; }
.dot-2 { width: 80px; height: 80px; top: 60%; left: 10%; animation: float 5s ease-in-out infinite 1s; }
.dot-3 { width: 50px; height: 50px; top: 25%; right: 8%; animation: float 6s ease-in-out infinite 0.5s; }
.dot-4 { width: 100px; height: 100px; bottom: 15%; right: 5%; animation: float 8s ease-in-out infinite 2s; }
.dot-5 { width: 40px; height: 40px; top: 45%; left: 50%; animation: float 4s ease-in-out infinite 1.5s; }

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

/* ── Hero Animations ── */
.hero-badge { animation: fadeUp 0.8s ease both; }
.hero-badge:nth-child(1) { animation-delay: 0.1s; }
h1 { animation: fadeUp 0.8s ease both 0.2s; }
h1 ~ p { animation: fadeUp 0.8s ease both 0.4s; }
h1 ~ p ~ div { animation: fadeUp 0.8s ease both 0.5s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* ── Feature Cards ── */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(123,45,142,0.1);
}

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

/* ── Gallery Scroll ── */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.animate-scroll {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}
.gallery-img {
    height: 200px;
    width: 300px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.03);
}

/* ── Header Scroll State ── */
#site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(123,45,142,0.08);
}

/* ── Mobile Menu ── */
#mobile-menu {
    max-height: 0;
    transition: max-height 0.3s ease;
}
#mobile-menu.open {
    max-height: 400px;
}
.mobile-link {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(123,45,142,0.08);
    text-decoration: none;
}
.mobile-link:last-of-type {
    border-bottom: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-gradient { background: linear-gradient(160deg, #3b0764 0%, #7B2D8E 50%, #d97706 100%); }
    h1 { font-size: 2.75rem !important; }
    h1 br { display: none; }
    .dot { display: none; }
    .dot-3 { display: block; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    h1 { font-size: 5rem; }
}
