/* ==========================================
   Volunteer Page Elite Styles
   ========================================== */

.volunteer-hero-v2 {
    position: relative;
    padding: 140px 0 100px;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--color-primary-dark);
}

.volunteer-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.volunteer-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.2);
}

.elite-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(7, 37, 89, 0.95) 0%,
            rgba(7, 37, 89, 0.8) 50%,
            rgba(7, 37, 89, 0.4) 100%);
}

.volunteer-hero-content {
    position: relative;
    z-index: 10;
}

.hero-text-align-left {
    max-width: 700px;
}

.hero-text-align-left h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 25px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    /* Ensure it's white even if gradient is applied */
}

.hero-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    line-height: 1.7;
    font-weight: 500;
}

/* Registration Section Overrides (Base in style.css) */
.volunteer-registration-section {
    padding: 100px 0;
    position: relative;
    z-index: 20;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.form-header p {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Refinement */
@media (max-width: 1024px) {
    .volunteer-hero-v2 {
        padding: 120px 0 80px;
    }

    .form-header h2 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .volunteer-hero-v2 {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-text-align-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-intro {
        margin: 0 auto;
    }

    .registration-card-v3 {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .volunteer-registration-section {
        padding: 60px 0;
    }

    .form-header {
        margin-bottom: 40px;
    }
}