/* Programs Page Styles */

.programs-header {
    text-align: center;
    margin-top: 15vh;
    margin-bottom: 4rem;
    color: white;
}

.programs-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Funnel Display', sans-serif;
}

.programs-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    font-family: 'Funnel Display', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

/* Program Cards */
.program-card {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(232, 129, 127, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(232, 129, 127, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
    background: rgba(232, 129, 127, 0.15);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.program-card.coming-soon {
    opacity: 0.6;
}

.program-card h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Funnel Display', sans-serif;
}

.program-card p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Program Meta Tags */
.program-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.program-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(232, 129, 127, 0.2);
    border-radius: 20px;
    color: #e8817f;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Program Links */
.program-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(232, 129, 127, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-link:hover {
    background: rgba(232, 129, 127, 0.5);
    transform: translateX(5px);
}

/* Navbar Logo Link */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Active Nav Link */
.nav-links a.active {
    color: #e8817f;
}
