/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; overflow-x: hidden; }

/* ========== NAVBAR ========== */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(107, 58, 110, 0.08);
}

/* ========== MOBILE MENU ========== */
#mobileMenu.open { opacity: 1; pointer-events: all; }
#mobileMenu.closed { opacity: 0; pointer-events: none; }
.mobile-link { transition: transform 0.3s ease, opacity 0.3s ease; }

/* ========== HERO ========== */
.hero-gradient {
    background: linear-gradient(135deg, #6B3A6E 0%, #8B5FB0 30%, #A87CC0 50%, #D4A017 100%);
}

.hero-bubbles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: floatBubble 8s ease-in-out infinite;
}
.hero-bubbles span:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -80px; animation-delay: 0s; }
.hero-bubbles span:nth-child(2) { width: 200px; height: 200px; bottom: 10%; left: -40px; animation-delay: 2s; }
.hero-bubbles span:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 10%; animation-delay: 4s; background: rgba(212, 160, 23, 0.08); }
.hero-bubbles span:nth-child(4) { width: 100px; height: 100px; bottom: 25%; right: 25%; animation-delay: 1s; }
.hero-bubbles span:nth-child(5) { width: 60px; height: 60px; top: 20%; left: 15%; animation-delay: 3s; background: rgba(212, 160, 23, 0.1); }
.hero-bubbles span:nth-child(6) { width: 180px; height: 180px; bottom: -30px; right: 30%; animation-delay: 5s; }
.hero-bubbles span:nth-child(7) { width: 80px; height: 80px; top: 50%; left: 5%; animation-delay: 2.5s; }
.hero-bubbles span:nth-child(8) { width: 120px; height: 120px; top: 10%; left: 40%; animation-delay: 6s; background: rgba(212, 160, 23, 0.06); }

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

.hero-headline {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}
.hero-sub {
    animation: fadeUp 1s ease 0.2s forwards;
    opacity: 0;
}
.hero-badge {
    animation: fadeUp 1s ease 0.1s forwards;
    opacity: 0;
}
.hero-buttons {
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
}

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

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex; align-items: center; background: #D4A017; color: #fff;
    font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 50px;
    text-decoration: none; transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}
.btn-primary:hover { background: #B8860B; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212, 160, 23, 0.45); }

.btn-secondary {
    display: inline-flex; align-items: center; background: rgba(255,255,255,0.15); color: #fff;
    font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 50px;
    text-decoration: none; border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px); transition: all 0.3s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px;
    display: flex; justify-content: center; padding-top: 8px;
}
.scroll-indicator span {
    width: 4px; height: 10px; background: rgba(255,255,255,0.8); border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ========== SECTION LABELS ========== */
.label {
    display: inline-block; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: #D4A017; background: rgba(212,160,23,0.1);
    padding: 6px 16px; border-radius: 20px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: #381738; line-height: 1.2;
}

/* ========== MENU ========== */
.menu-card {
    background: #fff; border-radius: 24px; padding: 32px;
    box-shadow: 0 4px 30px rgba(107, 58, 110, 0.06);
    border: 1px solid rgba(107, 58, 110, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107, 58, 110, 0.12); }

.menu-card-header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.menu-card-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, #6B3A6E, #AB7FB2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 14px 0; border-bottom: 1px solid rgba(107,58,110,0.07);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 700; color: #381738; font-size: 1.05rem; }
.menu-item-desc { color: #9B7AAF; font-size: 0.875rem; text-align: right; max-width: 220px; }
.menu-note { margin-top: 20px; font-size: 0.8rem; color: #B89EC4; font-style: italic; }

/* ========== ABOUT ========== */
.about-image-wrapper { position: relative; }
.about-img-main {
    width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(107,58,110,0.15);
    display: block;
}
.about-img-float {
    position: absolute; bottom: -30px; right: -20px;
    width: 55%; box-shadow: 0 16px 48px rgba(107,58,110,0.2);
    border: 4px solid #F5F0F7;
}

/* ========== FEATURES ========== */
.features-grid { }
.feature-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px; background: #fff; border-radius: 16px;
    box-shadow: 0 2px 12px rgba(107,58,110,0.05);
    transition: transform 0.3s ease;
}
.feature-item:hover { transform: translateY(-2px); }
.feature-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(107,58,110,0.08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ========== GALLERY ========== */
.gallery-item {
    border-radius: 16px; overflow: hidden; position: relative;
    box-shadow: 0 4px 20px rgba(107,58,110,0.08);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ========== INFO CARDS ========== */
.info-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: #fff; border-radius: 20px; padding: 24px;
    box-shadow: 0 4px 20px rgba(107,58,110,0.06);
    transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-2px); }
.info-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #6B3A6E, #AB7FB2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ========== CTA ========== */
.cta-gradient {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 50%, #6B3A6E 100%);
}

/* ========== SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
    opacity: 1; transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .about-img-float { right: -10px; bottom: -20px; width: 50%; }
    .menu-item { flex-direction: column; gap: 4px; }
    .menu-item-desc { text-align: left; max-width: 100%; }
    .gallery-item.row-span-2 { grid-row: span 1; }
}
