/* Program Hero Section */
.program-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/programs-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 76px; /* Account for fixed navbar */
}

.program-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.program-hero .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Program Cards */
.program-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.program-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover img {
    transform: scale(1.05);
}

.program-card .card-body {
    padding: 2rem;
}

.program-card .card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.program-card .card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Program Features List */
.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.program-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Program Icons */
.program-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-hero {
        height: 50vh;
        margin-top: 66px;
    }

    .program-hero h1 {
        font-size: 2.5rem;
    }

    .program-hero .lead {
        font-size: 1.2rem;
    }

    .program-card {
        margin-bottom: 20px;
    }

    .program-card img {
        height: 200px;
    }

    .program-card .card-body {
        padding: 1.5rem;
    }

    .program-card .card-title {
        font-size: 1.5rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-card {
    animation: fadeInUp 0.6s ease-out;
}

.program-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Program Schedule Table Styles */
.table-responsive {
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border: 1px solid #dee2e6;
}

.table tbody tr:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

.table tbody tr:first-child td {
    border-top: none;
}

@media (max-width: 768px) {
    .table thead th,
    .table tbody td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
} 