/* ===== Base & Utilities ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #0a0a0a;
    color: #e2e2e2;
}

::selection {
    background-color: rgba(255, 92, 26, 0.3);
    color: #f6f6f6;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #141414;
}
::-webkit-scrollbar-thumb {
    background: #3d3d3d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #525252;
}

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

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ===== Hero Animations ===== */
.hero-subtitle {
    animation: slideUp 0.8s ease forwards 0.2s;
}

.hero-title {
    animation: slideUp 0.8s ease forwards 0.4s;
}

.hero-desc {
    animation: slideUp 0.8s ease forwards 0.6s;
}

.hero-ctas {
    animation: slideUp 0.8s ease forwards 0.8s;
}

.hero-trust {
    animation: slideUp 0.8s ease forwards 1s;
}

.hero-image-wrapper {
    animation: fadeIn 1.2s ease forwards 0.5s;
    opacity: 0;
}

.hero-badge {
    animation: floatUp 0.8s ease forwards 1.2s;
    opacity: 0;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ===== Section Animations ===== */
.section-label,
.section-title,
.section-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-label.visible,
.section-title.visible,
.section-desc.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-label { transition-delay: 0.1s; }
.section-title { transition-delay: 0.2s; }
.section-desc { transition-delay: 0.3s; }

/* ===== Menu Cards ===== */
.menu-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-card:nth-child(1) { transition-delay: 0.1s; }
.menu-card:nth-child(2) { transition-delay: 0.2s; }
.menu-card:nth-child(3) { transition-delay: 0.3s; }
.menu-card:nth-child(4) { transition-delay: 0.4s; }

/* ===== About Animations ===== */
.about-label {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}
.about-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-divider {
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
}
.about-divider.visible {
    opacity: 1;
}

.about-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-content p.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-content p:nth-child(1) { transition-delay: 0.3s; }
.about-content p:nth-child(2) { transition-delay: 0.4s; }
.about-content p:nth-child(3) { transition-delay: 0.5s; }

.about-stats > div {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-stats > div.visible {
    opacity: 1;
    transform: translateY(0);
}
.about-stats > div:nth-child(1) { transition-delay: 0.6s; }
.about-stats > div:nth-child(2) { transition-delay: 0.7s; }
.about-stats > div:nth-child(3) { transition-delay: 0.8s; }

/* ===== Gallery ===== */
.gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Visit Cards ===== */
.visit-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.visit-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.visit-card:nth-child(1) { transition-delay: 0.1s; }
.visit-card:nth-child(2) { transition-delay: 0.2s; }
.visit-card:nth-child(3) { transition-delay: 0.3s; }

/* ===== CTA ===== */
.cta-title,
.cta-desc {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.cta-title.visible {
    opacity: 1;
    transform: translateY(0);
}
.cta-desc.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===== Mobile Menu ===== */
#mobile-menu {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-title lg\:text-8xl {
        font-size: 2.75rem;
    }
}
