/**
 * WiseLeaf Homepage Hero Sections - Extracted Inline Styles
 * Phase 1 Implementation: Safe extraction of hero section styles
 * 
 * Extracted from: help.html, vision.html, fees.html
 * Risk Level: LOW (No JavaScript dependencies)
 * Date: October 21, 2025
 */

/* ====================================
   HELP PAGE HERO SECTION
   ==================================== */

/* Note: Help page uses existing help.css styles with background images.
   The original help.css already contains .help-hero styles with background images.
   No additional styles needed - help.css handles everything. */

/* ====================================
   VISION PAGE HERO SECTION
   ==================================== */

.hero-vision {
    background: linear-gradient(135deg, #0c4a60 0%, #1a5c75 50%, #005a8b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: -20px -20px 40px -20px;
    border-radius: 0;
}

.hero-vision__title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-vision__subtitle {
    color: white;
    opacity: 0.95;
    font-size: 1.2rem;
}

/* Vision page CTA section */
.vision-cta {
    background: linear-gradient(135deg, #0c4a60 0%, #1a5c75 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.vision-cta__title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vision-cta__icon {
    margin-right: 10px;
}

/* ====================================
   FEES PAGE HERO SECTION
   ==================================== */

.fees-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    color: #0c4a60;
}

.fees-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/pages/fees-hero-bg.jpeg') center/cover no-repeat;
    z-index: 1;
}

.fees-hero > * {
    position: relative;
    z-index: 2;
}

.fees-hero__title {
    font-size: 2.8rem;
    margin: 0;
    color: #0c4a60 !important;
    font-family: 'Merriweather', serif;
}

/* Override wiseleaf-hero-consolidated.css */
div.fees-hero,
body div.fees-hero,
html body div.fees-hero {
    background-color: transparent !important;
    background: transparent !important;
}

div.fees-hero::before,
body div.fees-hero::before,
html body div.fees-hero::before {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

div.fees-hero h1,
body div.fees-hero h1,
html body div.fees-hero h1 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 768px) {
    .hero-help__title,
    .hero-vision__title,
    .fees-hero__title {
        font-size: 2rem;
    }
    
    .hero-help__description,
    .hero-vision__subtitle {
        font-size: 1rem;
    }
    
    .hero-vision,
    .fees-hero {
        padding: 40px 15px;
    }
    
    .vision-cta {
        padding: 30px 20px;
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .hero-help__title,
    .hero-vision__title,
    .fees-hero__title {
        font-size: 1.8rem;
    }
    
    .hero-vision,
    .fees-hero {
        padding: 30px 10px;
    }
}