/* Base & Utilities */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
}

::selection {
    background: #F5C77E;
    color: #3d1847;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5C77E 0%, #e0a830 100%);
    color: #3d1847;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(245, 199, 126, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 199, 126, 0.5);
    background: linear-gradient(135deg, #ffd97a 0%, #F5C77E 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Navbar */
.nav-link {
    position: relative;
}

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

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

#navbar {
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 251, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(123, 45, 142, 0.08);
}

#navbar.scrolled .nav-link {
    color: #7B2D8E;
}

#navbar.scrolled .btn-primary {
    background: linear-gradient(135deg, #F5C77E 0%, #e0a830 100%);
}

/* Hero */
.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(61, 24, 71, 0.75) 0%,
        rgba(123, 45, 142, 0.6) 50%,
        rgba(61, 24, 71, 0.7) 100%
    );
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

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

.hero-badge {
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-content h1 {
    animation: fadeUp 1s ease-out 0.4s both;
}

.hero-content p {
    animation: fadeUp 1s ease-out 0.6s both;
}

.hero-content .flex {
    animation: fadeUp 1s ease-out 0.8s both;
}

.hero-scroll {
    animation: fadeUp 1s ease-out 1.2s both;
}

.scroll-dot {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.4; }
}

/* Cards */
.card {
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-8px);
}

/* Gallery */
.gallery-item {
    aspect-ratio: 1;
}

.gallery-item:nth-child(2) {
    aspect-ratio: 3/4;
}

.gallery-item:nth-child(5) {
    aspect-ratio: 1;
}

.gallery-item:nth-child(6) {
    aspect-ratio: 3/4;
}

/* Testimonial Cards */
.testimonial-card {
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

/* Visit Cards */
.visit-card {
    transform: translateY(0);
}

.visit-card:hover {
    transform: translateY(-6px);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* Mobile Menu */
.mobile-link {
    position: relative;
}

.mobile-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5C77E;
    transition: width 0.3s ease;
}

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

/* Decorative Elements */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, #F5C77E, #7B2D8E, #F5C77E, transparent);
    border: none;
    border-radius: 2px;
    margin: 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fffbf0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7B2D8E, #F5C77E);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5e226d, #e0a830);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}
