/* =========================================
   Initiative Page Redesign Updates
   ========================================= */

/* --- Simplified Hero Images --- */
.hero-media-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-media-large img,
.hero-media-large iframe,
.hero-image-clean img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-media-large:hover img,
.hero-image-clean:hover img {
    transform: translateY(-5px);
}

/* Remove old hero image styles if applied directly */
.hero-video-container.clean-style,
.hero-image.clean-style {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
}

/* --- Pre-FAQ Themed Sections --- */
.initiative-highlight-section {
    padding: 80px 0;
    /* Increased padding */
    color: white;
    position: relative;
    overflow: hidden;
}

.initiative-highlight-section .section-title,
.initiative-highlight-section .lead-text,
.initiative-highlight-section h3,
.initiative-highlight-section p,
.initiative-highlight-section strong {
    color: white !important;
}

.initiative-highlight-section .initiative-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.initiative-highlight-section .feature-tag {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.initiative-highlight-section .feature-tag:before {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Theme Colors */
.theme-uniforms {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.theme-dignity {
    background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%);
}

.theme-fudumala {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

/* Button variants for themed sections */
.btn-theme-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: white;
    color: var(--text-primary);
    border: 2px solid white;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-theme-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile Optimizations */
@media screen and (max-width: 991px) {
    .hero-media-large img {
        max-height: 400px;
        margin-top: 2rem;
    }
}