/* INDEX.CSS - Homepage Specific Styles */
/* Chicago Neighborhood Soccer - Nonprofit Homepage */

/* Homepage Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(55, 65, 81, 0.85) 0%, rgba(0, 165, 254, 0.8) 50%, rgba(34, 197, 94, 0.75) 100%), 
                url('/assets/gallery_slideshow/weekly_pickup.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(55, 65, 81, 0.3) 70%);
}

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

.nonprofit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-mission {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #f3f4f6;
}

.impact-stats-hero {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #22c55e;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Fixed secondary button - now has better visibility */
.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Program button overrides for better visibility and consistent sizing */
.program-body .btn-secondary,
.youth-program-card .btn-secondary {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: 2px solid #6b7280;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.program-body .btn-secondary:hover,
.youth-program-card .btn-secondary:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    border-color: #4b5563;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 114, 128, 0.3);
}

/* Improved tournament button - better formatted and more pop */
.btn-tournament {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 280px;
}

.btn-tournament:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}


/* Community Gallery Section */
.community-gallery {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 100px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-slideshow {
    position: relative;
    max-width: 900px;
    height: 550px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(55, 65, 81, 0.9));
    color: white;
    padding: 40px 30px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-image.active .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-caption p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.gallery-dot:hover {
    background: #9ca3af;
    transform: scale(1.1);
}

.gallery-dot.active {
    background: #16a34a;
    transform: scale(1.2);
}

/* Leadership Podcast Section */
.podcast-section {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
    padding: 100px 0;
}

.podcast-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.podcast-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.podcast-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #e5e7eb;
}

.podcast-quote {
    background: rgba(249, 115, 22, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #f97316;
    font-style: italic;
    margin: 2rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
}

.podcast-cta {
    margin-top: 2rem;
}

.podcast-player {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #000;
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* Quick Actions Section */
.quick-actions {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 120px 0;
}

.quick-actions h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    color: #374151;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.action-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.action-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #374151;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.action-card p {
    font-family: 'Open Sans', sans-serif;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background: white;
}

.programs h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: #374151;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: white;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #16a34a;
}

.program-header {
    padding: 2rem;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
}

.program-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

.program-body {
    padding: 2rem;
}

.program-body p {
    font-family: 'Open Sans', sans-serif;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.program-body ul {
    margin: 1rem 0;
    padding-left: 1rem;
    list-style: none;
}

.program-body ul li {
    font-family: 'Open Sans', sans-serif;
    color: #6b7280;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.program-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 1.1rem;
}

.program-body .btn-primary {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.program-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    color: white;
}
/* Events Section - Redesigned */
.events-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 80px 0;
}

.events-section h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: #374151;
}

.events-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.event-card-modern {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}

.event-card-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.event-card-modern.featured {
    border: 2px solid #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.event-date {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-type {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-type.featured {
    background: #f97316;
    color: white;
}

.event-type.upcoming {
    background: #fad901;
    color: white;
}

.event-type.womens {
    background: #8b5cf6;
    color: white;
}

.event-type.ongoing {
    background: #3b82f6;
    color: white;
}

.event-card-modern h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-card-modern p {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Event Button Group for Multiple Actions */
.event-button-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-event {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-event:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    transform: translateY(-1px);
    color: white;
}

.btn-event.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-event.disabled:hover {
    background: #9ca3af;
    transform: none;
}

/* Weekly Access Specific Buttons */
.btn-pickup,
.btn-meetup,
.btn-discord {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
}

.btn-pickup:hover,
.btn-meetup:hover,
.btn-discord:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    color: white;
}

.ongoing-programs {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.ongoing-programs h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.schedule-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #22c55e;
}

.schedule-item .day {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.schedule-item .type {
    color: #6b7280;
    font-size: 0.8rem;
    text-align: center;
}


/* Programs Section */
.programs-section {
    padding: 100px 0;
    background: white;
}

.programs-section h2 {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: #374151;
}

.program-header {
    padding: 2rem;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.program-icon {
    font-size: 2.5rem;
    margin: 0;
}

.program-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
    flex: 1;
}

.program-status {
    position: absolute;
    top: -2px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.program-card.featured .program-status {
    background: #f97316;
}

.program-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.additional-events {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-top: 3rem;
}

.additional-events h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.events-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #22c55e;
}

.btn-link {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-link:hover {
    color: #15803d;
    text-decoration: underline;
}

/* Nonprofit Impact Section */
.nonprofit-impact {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.impact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.impact-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
}

.stat span:last-child {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-mission {
        font-size: 1.3rem;
    }
    
    .impact-stats-hero {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary, .btn-tournament {
        width: 90%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .podcast-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .gallery-slideshow {
        height: 400px;
        margin: 0 20px;
    }
    
    .gallery-caption {
        padding: 30px 20px 20px;
    }
    
    .gallery-caption h3 {
        font-size: 1.3rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    .programs-section {
        padding: 80px 0;
    }
    
    .programs-section h2, .events-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .programs-grid, .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .program-header, .event-card {
        padding: 1.5rem;
    }
    
    .program-header h3, .event-card h3 {
        font-size: 1.3rem;
    }
    
    .program-body {
        padding: 1.5rem;
    }
    
    .program-body p, .event-card p {
        font-size: 0.95rem;
    }
    
    .program-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .events-section {
        padding: 80px 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-visual img {
        height: 150px;
    }
    
    .community-support {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .community-support h4 {
        font-size: 1.1rem;
    }
}

/* Youth Programming Hero Section */
.youth-programming-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    border-bottom: 3px solid #22c55e;
}

.youth-programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.youth-program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.youth-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.youth-program-card.featured {
    border: 3px solid #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.youth-program-card.featured::before {
    content: "FLAGSHIP PROGRAM";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.youth-program-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.youth-program-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.program-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.program-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
}

.youth-program-card .btn-primary,
.youth-program-card .btn-secondary {
    margin-top: 1.5rem;
}

/* Featured program card enhancements */
.program-card.featured {
    border: 3px solid #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
}

.program-card.featured::before {
    content: "FLAGSHIP PROGRAM";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #22c55e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youth-programming-hero {
        padding: 60px 0;
    }
    
    .youth-programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .youth-program-card {
        padding: 1.5rem;
    }
    
    .youth-program-card h3 {
        font-size: 1.2rem;
    }
    .event-button-group {
        gap: 0.75rem;
    }
    
    .btn-event {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

/* Community Engagement Section */
.community-engagement {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 6rem 0;
}

.engagement-header {
    text-align: center;
    margin-bottom: 4rem;
}

.engagement-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.engagement-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.engagement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    text-align: center;
}

.engagement-stat {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.engagement-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.simple-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-message {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

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

.simple-cta-buttons .btn-primary {
    background: white;
    color: #16a34a;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.simple-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 14px 30px;
}

.simple-cta-buttons .btn-secondary:hover {
    background: white;
    color: #16a34a;
}

.involvement-pathways {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pathway-card {
    background: white;
    color: #1f2937;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pathway-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pathway-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #16a34a;
    font-family: 'Poppins', sans-serif;
}

.pathway-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.community-voice {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.voice-content blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.95;
}

.voice-content cite {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

.voice-actions {
    margin-top: 2.5rem;
}

.voice-actions p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.voice-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.voice-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 14px 28px;
}

.voice-buttons .btn-secondary:hover {
    background: white;
    color: #16a34a;
}

/* Responsive Design for Community Engagement */
@media (max-width: 768px) {
    .engagement-header h2 {
        font-size: 2.2rem;
    }
    
    .engagement-subtitle {
        font-size: 1.1rem;
    }
    
    .engagement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .involvement-pathways {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pathway-card {
        padding: 2rem 1.5rem;
    }
    
    .community-voice {
        padding: 2rem 1.5rem;
    }
    
    .voice-content blockquote {
        font-size: 1.2rem;
    }
    
    .voice-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .simple-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-message {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .engagement-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


