/* ===== 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%; height: auto; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F9F0FC; }
::-webkit-scrollbar-thumb { background: #D78DD8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #A83A9E; }

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A83A9E;
    background: linear-gradient(135deg, #F9F0FC, #FFF4D6);
    padding: 0.4em 1em;
    border-radius: 100px;
    border: 1px solid #E8BCEB;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: #4A1552;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ===== NAV ===== */
#site-header {
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(215, 141, 216, 0.15);
}
#site-header.scrolled {
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 4px 30px rgba(123, 45, 142, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5C518;
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }

/* ===== MOBILE MENU ===== */
#mobile-menu.open { opacity: 1; pointer-events: all; }
#mobile-menu.open .mobile-bar:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
#mobile-menu.open .mobile-bar:nth-child(2) { opacity: 0; }
#mobile-menu.open .mobile-bar:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); width: 1.25rem; }
.mobile-link { transition: all 0.3s ease; }

/* ===== MENU CARDS ===== */
.menu-card {
    background: #FFFDF8;
    border-radius: 1.5rem;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(215, 141, 216, 0.12);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 45, 142, 0.12);
    border-color: rgba(215, 141, 216, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 0;
    transform: translateY(40px);
}
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: none;
    }
}

/* ===== FORM ===== */
#contact-form input,
#contact-form select,
#contact-form textarea {
    font-family: 'DM Sans', system-ui, sans-serif;
}
#contact-form input:focus,
#contact-form select:focus,
#contact-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(168, 58, 158, 0.1);
}
