/* ============================================
   LANDING PAGE STYLES
   ============================================ */



/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 80vh;
    /* Reduced height to fit banners better */
    display: flex;
    align-items: center;
    background: var(--color-background);
    color: white;
    overflow: hidden;
    padding-top: 0;
}

.hero-banners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

/* Base style for desktop - already covered by above, but ensuring clarity */
.hero-banner-img.active {
    opacity: 1;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: none;
}

/* Logo placement in navbar */
.logo-img {
    height: 150px;
    width: auto;
    display: block;
    max-width: 100%;
    transition: height var(--transition-base);
}

/* Contact visual item */
.contact-visual {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--glow-primary);
    margin: var(--spacing-lg) 0;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta .btn {
    min-width: 180px;
}

.hero-cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    backdrop-filter: blur(10px);
}

.hero-cta .btn-secondary:hover {
    background-color: white;
    color: var(--color-primary);
}

/* ==================== EVENTS SECTION ==================== */
.events {
    position: relative;
    background-image: url('../assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Optional: adds a nice parallax-like effect */
}

.events::before {
    display: none;
}

.events .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-light);
}

.event-card {
    background-image: linear-gradient(rgba(5, 5, 5, 0.4), rgba(5, 5, 5, 0.4)), url('../assets/background.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--glow-primary);
    background-image: linear-gradient(rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.2)), url('../assets/background.png');
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
    color: white;
}

.service-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.service-description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.service-price-amount {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.service-price-duration {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    background: white;
}

.benefit-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-xl);
}

.benefit-content h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.benefit-content p {
    margin: 0;
    color: var(--color-text-light);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    background: var(--color-surface);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    color: #fbbf24;
    font-size: var(--font-size-lg);
}

.testimonial-content {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-relaxed);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
}

.testimonial-info h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.testimonial-info p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: white;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-surface);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-success,
.form-error-message {
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-medium);
}

.form-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 2px solid #059669;
}

.form-error-message {
    background-color: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

.hidden {
    display: none !important;
}

/* Honeypot field (hidden spam protection) */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    position: relative;
    background-image: url('../assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-section::before {
    display: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
}

.cta-section .btn:hover {
    background: white;
    color: var(--color-background);
}



/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .logo-img {
        height: 112px;
    }

    .hero {
        min-height: 80vh;
        padding-top: 0;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .service-card,
    .testimonial-card {
        padding: var(--spacing-xl);
    }

    .hero-banner-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
    }

    .benefit-item {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 90px;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .contact-form {
        padding: var(--spacing-lg);
    }
}