/*
 * File: page_styles/index_s01.css
 * Purpose: Fixed homepage - hero image top, 3-across buttons, softer colors
 * Version: 2.2.0
 * Created: December 2025
 * 
 * Hero image at top, forced 3-across button grid, toned-down colors,
 * click-to-latch tooltip support. Professional patient advocacy design.
 */

/* ===========================================
   HERO SECTION - Image at TOP
   =========================================== */

.hero {
    background: linear-gradient(135deg, #34495e, #5d6d7e);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

/* Hero image at TOP */
.hero-image-top {
    margin-bottom: 0rem;
}

.hero-image-top img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Hero content below image */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 0.8;
}

.mission-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.mission-description p {
    margin-bottom: 1rem;
}

.tragedy-link {
    color: white !important;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.tragedy-link:hover {
    opacity: 0.8;
}

/* ===========================================
   CTA BUTTONS - Softer colors
   =========================================== */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-mission {
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.2);
}

.btn-mission:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.btn-community {
    background: linear-gradient(135deg, #239b56, #1e8449);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(35, 155, 86, 0.2);
}

.btn-community:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 155, 86, 0.3);
}

/* ===========================================
   PAGE EXPLORATION - FORCED 3 ACROSS
   =========================================== */

.exploration-section {
    margin-top: 2rem;
}

.exploration-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 500;
}

.page-exploration {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.explore-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.2rem 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.explore-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.explore-item i {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: #ffffff;
    display: block;
}

.explore-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

/* Empty slot for future expansion */
.explore-item-empty {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-height: 100px;
}/* ===========================================
   SECTION PLACEHOLDERS - Softer colors
   =========================================== */

.section-placeholder-1,
.section-placeholder-2,
.section-placeholder-3,
.section-placeholder-4 {
    padding: 4rem 2rem;
    text-align: center;
}

.section-placeholder-1 {
    background: #c0392b;
    color: white;
}

.section-placeholder-2 {
    background: #f8f9fa;
    color: #2c3e50;
}

.section-placeholder-3 {
    background: #239b56;
    color: white;
}

.section-placeholder-4 {
    background: #34495e;
    color: white;
}

.placeholder-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.placeholder-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Placeholder element layouts */
.placeholder-elements,
.placeholder-actions,
.placeholder-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.element-1,
.element-2,
.element-3,
.grid-item,
.action-item,
.step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.section-placeholder-2 .grid-item {
    background: rgba(52, 73, 94, 0.1);
    border-color: rgba(52, 73, 94, 0.2);
    color: #2c3e50;
}

/* ===========================================
   RESPONSIVE DESIGN - Mobile first
   =========================================== */

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-image-top img {
        max-height: 200px;
    }
    
    .mission-tagline {
        font-size: 2rem;
    }
    
    .mission-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-mission,
    .btn-community {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .exploration-title {
        font-size: 1.2rem;
    }
    
    /* MAINTAIN 3 ACROSS on mobile */
    .page-exploration {
        max-width: 100%;
        gap: 0.5rem;
    }
    
    .explore-item {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    
    .explore-item i {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }
    
    .explore-item span {
        font-size: 0.75rem;
    }
    
    .section-placeholder-1,
    .section-placeholder-2,
    .section-placeholder-3,
    .section-placeholder-4 {
        padding: 3rem 1rem;
    }
    
    .placeholder-content h2 {
        font-size: 1.8rem;
    }
    
    .placeholder-elements,
    .placeholder-grid,
    .placeholder-actions,
    .placeholder-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .mission-tagline {
        font-size: 1.8rem;
    }
    
    .explore-item {
        padding: 0.8rem 0.3rem;
        min-height: 70px;
    }
    
    .explore-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .explore-item span {
        font-size: 0.7rem;
    }
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

.bottom-spacer {
    height: 4rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}