/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 450px;
    max-height: 700px;
    background-image: url('/assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(26, 58, 92, 0.65) 0%,
            rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-xl);
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    font-weight: 400;
    font-style: italic;
    margin-bottom: var(--space-lg);
    opacity: 0.95;
    letter-spacing: 2px;
}

.hero-location {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.hero-cta-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    letter-spacing: 1px;
}

.hero-btn {
    display: inline-block;
    background: var(--color-green);
    color: var(--color-white);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: var(--font-size-base);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(51, 204, 51, 0.3);
}

.hero-btn:hover {
    background: var(--color-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(51, 204, 51, 0.4);
}

@media (max-width: 768px) {
    .hero-section {
        height: 55vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: var(--font-size-md);
    }

    .hero-location {
        font-size: var(--font-size-sm);
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: var(--font-size-xl);
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }
}