/* programs.css - Styles for Programs page */

/* Program Sections */
.program-section {
    padding: 100px 0;
    position: relative;
}

.program-section:nth-child(odd) {
    background-color: #f9f9f9;
}

.program-section:nth-child(even) {
    background-color: #fff;
}

.program-header {
    text-align: center;
    margin-bottom: 60px;
}

.program-icon-large {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    background: #f8f9fa;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Program-specific colors */
.program-health .program-icon-large {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.program-climate .program-icon-large {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.program-empowerment .program-icon-large {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.program-advocacy .program-icon-large {
    color: #8e44ad;
    background: rgba(142, 68, 173, 0.1);
}

.program-education .program-icon-large {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

/* Program Stats */
.program-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.stat-item-program {
    text-align: center;
    flex: 1;
}

.stat-number-program {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label-program {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--gray-color);
}

/* Program Stat Card */
.program-stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid var(--primary-color);
}

.program-stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-stat-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.activity-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.activity-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.activity-item h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Target List */
.target-list {
    list-style: none;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.target-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.target-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Program Image Showcase */
.program-image-showcase {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-image-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Approach Cards */
.approach-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.approach-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

/* Location Cards */
.location-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    border-top: 5px solid var(--primary-color);
}

.location-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Approach Image */
.approach-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 100%;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .program-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .program-icon-large {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .program-section {
        padding: 70px 0;
    }
    
    .program-image-showcase img {
        height: 300px;
    }
    
    .program-stat-card, .activity-item, .target-list {
        padding: 20px;
    }
    
    .location-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .program-icon-large {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 2.5rem;
    }
    
    .program-subtitle {
        font-size: 1.1rem;
    }
    
    .program-image-showcase img {
        height: 250px;
    }
}