/* Programs Page Styles */

body {
    background-color: #0f172a;
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
}

/* Hero Section */
.programs-hero-section {
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem 3rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.programs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.programs-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.programs-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
}

/* Subtitle Section - Hidden */
.programs-subtitle-section {
    display: none;
}

/* Programs Grid Section */
.programs-grid-section {
    padding: 3rem 3rem 6rem;
    background-color: #0f172a;
}

@media (min-width: 768px) {
    .programs-grid-section {
        padding: 4rem 5rem 6rem;
    }
}

@media (min-width: 1024px) {
    .programs-grid-section {
        padding: 5rem 8rem 8rem;
    }
}

@media (min-width: 1280px) {
    .programs-grid-section {
        padding: 5rem 10rem 8rem;
    }
}

.programs-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .programs-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Program Box */
.program-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.program-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-box:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.program-box:hover::before {
    opacity: 1;
}

/* Program Title */
.program-title {
    font-size: 2rem;
    font-weight: 800;
    color: #8b5cf6;
    margin: 0 0 1.5rem 0;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

/* Program List */
.program-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.program-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.program-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #8b5cf6;
    font-size: 1.5rem;
    line-height: 1;
}

/* Learn More Button */
.program-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.program-button:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-hero-title {
        font-size: 2.5rem;
    }

    .programs-subtitle {
        font-size: 1.5rem;
    }

    .program-box {
        padding: 2rem;
    }

    .program-title {
        font-size: 1.5rem;
    }

    .program-list li {
        font-size: 1rem;
    }
}
