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

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

body {
    overflow-x: hidden;
}

::selection {
    background: #e9cff0;
    color: #4e1857;
}

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

#navbar.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(123, 45, 139, 0.08);
}

.nav-brand {
    transition: color 0.3s ease;
}

#navbar.scrolled .nav-brand {
    color: #4e1857;
}

.nav-link {
    position: relative;
}

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

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

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7B2D8B 0%, #9b3fb0 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 60px;
    padding: 14px 32px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(123, 45, 139, 0.35);
    background: linear-gradient(135deg, #62206e 0%, #7B2D8B 100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    padding: 12px 32px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    font-size: 1rem;
}

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

/* ========== HERO ========== */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(78, 24, 87, 0.72) 0%,
        rgba(123, 45, 139, 0.55) 50%,
        rgba(232, 148, 26, 0.25) 100%
    );
}

.hero-eyebrow {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-ctas {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

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

/* ========== SECTION EYEBROW ========== */
.section-eyebrow {
    letter-spacing: 0.2em;
}

/* ========== HIGHLIGHT CARDS ========== */
.highlight-card {
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(123, 45, 139, 0.12);
}

/* ========== MENU ========== */
.menu-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(123, 45, 139, 0.08);
    transition: padding-left 0.3s ease;
}

.menu-item:hover {
    padding-left: 8px;
}

.menu-item:last-child {
    border-bottom: none;
}

/* ========== ABOUT ========== */
.about-images {
    position: relative;
}

.about-img-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.about-accent {
    animation: float 6s ease-in-out infinite reverse;
}

/* ========== GALLERY ========== */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(78, 24, 87, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========== VISIT ========== */
.visit-card {
    border-radius: 20px;
    padding: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.visit-card:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateX(4px);
}

/* ========== CONTACT FORM ========== */
.input-field {
    background: #fff;
    border: 2px solid rgba(123, 45, 139, 0.15);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    color: #4e1857;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.input-field::placeholder {
    color: #b08fb0;
}

.input-field:focus {
    border-color: #7B2D8B;
    box-shadow: 0 0 0 4px rgba(123, 45, 139, 0.1);
}

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

.reveal.visible {
    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; }

/* ========== MOBILE MENU ========== */
.mobile-link {
    border-bottom: 1px solid rgba(123, 45, 139, 0.08);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-title span {
        display: block;
    }

    .about-img-float {
        width: 40%;
        height: 40%;
        bottom: -1rem;
        right: -1rem;
    }

    .about-accent {
        width: 16%;
        height: 16%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
}
