/* Programs Page Styles */
:root {
    --primary: #ff6347;
}
.programs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('../img/remy-4.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.programs-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.programs-hero .pre-title {
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.programs-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.programs-hero .highlight {
    color: var(--primary);
}

.programs-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    color: #fff;
}

/* Programs Grid */
.programs-grid {
    padding: 100px 0;
    background: #f8f9fa;
}

.program-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-icon {
    background: linear-gradient(135deg, var(--primary), #e5533d);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 2rem;
    color: #fff;
}

.program-content {
    flex: 1;
}

.program-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 99, 71, 0.12);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.program-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.program-content h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.program-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat .label {
    color: #666;
    font-size: 0.9rem;
}

.program-impact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
}

.program-impact h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.program-impact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-impact li {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-impact li i {
    color: var(--primary);
}

/* Call to Action Section */
.programs-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), #e5533d);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .program-card {
        flex-direction: column;
        gap: 20px;
    }

    .program-icon {
        margin: 0 auto;
    }

    .program-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .programs-hero h1 {
        font-size: 2.5rem;
    }

    .program-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .programs-hero {
        padding: 80px 0 60px;
    }

    .program-card {
        padding: 30px;
    }

    .program-icon {
        width: 60px;
        height: 60px;
    }

    .program-icon i {
        font-size: 1.5rem;
    }
}

.program-gallery {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eee;
}

.program-gallery img {
    height: 110px;
    width: auto;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    object-fit: cover;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    background: #fff;
}

.program-gallery img:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,99,71,0.18);
}

@media (max-width: 576px) {
    .program-gallery img {
        height: 70px;
    }
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    transition: opacity 0.2s;
}
.gallery-modal.open {
    display: flex;
    animation: fadeIn 0.2s;
}
.gallery-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}
.gallery-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.gallery-modal-content img {
    max-width: 70vw;
    max-height: 60vh;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}
.gallery-modal-close {
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 18px;
    z-index: 3;
    transition: color 0.2s;
}
.gallery-modal-close:hover {
    color: #e5533d;
}
@media (max-width: 576px) {
    .gallery-modal-content img {
        max-width: 90vw;
        max-height: 40vh;
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.nav-links a.active {
    color: var(--primary) !important;
    font-weight: 700;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 4px auto 0 auto;
}

.programs-slider {
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 2rem;
}
.programs-card-slider {
    display: flex;
    gap: 2rem;
    min-width: 100%;
}
.programs-card-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    min-width: 320px;
    max-width: 340px;
    flex: 0 0 320px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.programs-card-item:hover {
    box-shadow: 0 8px 32px rgba(255,99,71,0.13);
    transform: translateY(-4px) scale(1.03);
}
.programs-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ff8c42);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.programs-card-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--primary);
    font-weight: 700;
}
.programs-card-item p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    flex: 1;
}
.programs-card-actions {
    display: flex;
    gap: 0.7rem;
    width: 100%;
}
.programs-card-item .btn-primary {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: none;
}
@media (max-width: 900px) {
    .programs-card-slider {
        gap: 1rem;
    }
    .programs-card-item {
        min-width: 260px;
        max-width: 280px;
        padding: 1.2rem 1rem 1rem 1rem;
    }
}
@media (max-width: 600px) {
    .programs-card-slider {
        gap: 0.5rem;
    }
    .programs-card-item {
        min-width: 85vw;
        max-width: 90vw;
    }
} 