/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    min-height: 100vh;
}

::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #F5F0E8;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0E1A;
}
::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.3);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.5);
}

/* ========== GOLD BUTTON ========== */
.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #C9A84C 0%, #D4B96A 50%, #B8943F 100%);
    color: #0A0E1A;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
}

.gold-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #D4B96A 0%, #E0CA88 50%, #C9A84C 100%);
}

.gold-btn:active {
    transform: translateY(0);
}

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 9999px;
    background: rgba(201, 168, 76, 0.05);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: #F5F0E8;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.5);
}

/* ========== MENU CARDS ========== */
.menu-card {
    background: rgba(13, 18, 36, 0.8);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 1.25rem;
    padding: 1.25rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 168, 76, 0.05);
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(201, 168, 76, 0.8);
    letter-spacing: 0.02em;
}

/* ========== INFO CARDS ========== */
.info-card {
    background: rgba(13, 18, 36, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(13, 18, 36, 0.8);
}

/* ========== CONTACT FORM ========== */
.contact-form-card {
    background: rgba(13, 18, 36, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 0.75rem;
    color: #F5F0E8;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(245, 240, 232, 0.25);
}

.form-input:focus {
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(10, 14, 26, 0.8);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

/* ========== NAVBAR ========== */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

#navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.08), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A84C;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #D4B96A !important;
}

/* ========== MOBILE MENU ========== */
.menu-line {
    transition: all 0.3s ease;
}

#menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}
#menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}
#menu-toggle.active .menu-line:nth-child(3) {
    width: 1.5rem;
    transform: rotate(-45deg) translate(3px, -3px);
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    transition: color 0.3s ease;
}

/* ========== SCROLL INDICATOR ========== */
@keyframes scrollIndicator {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.animate-scroll-indicator {
    animation: scrollIndicator 1.5s ease-in-out infinite;
}

/* ========== HERO ANIMATIONS ========== */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-image {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease 0.2s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== ABOUT IMAGES ========== */
.about-images {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-images.revealed {
    opacity: 1;
    transform: translateX(0);
}

.about-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about-content.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ========== FLOATING BOBA PEARLS (decorative) ========== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(5deg); }
    66% { transform: translateY(5px) rotate(-3deg); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    #hero {
        padding-top: 6rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-images,
    .about-content {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 640px) {
    .gold-btn {
        width: 100%;
        text-align: center;
    }

    .flex.flex-wrap.gap-4 > .gold-btn,
    .flex.flex-wrap.gap-4 > a {
        width: 100%;
        justify-content: center;
    }
}
