/* Schools Section */

.schools-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--uci-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.schools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 30px;
}

.school-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.school-image {
    height: 200px;
    background-color: var(--medium-gray);
    background-size: cover;
    background-position: center;
}

.school-content {
    padding: 25px;
}

.school-name {
    color: var(--uci-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.school-description {
    color: #555;
    margin-bottom: 20px;
}

.school-link {
    color: var(--uci-blue);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.school-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.school-link:hover {
    text-decoration: underline;
}

.school-link:hover i {
    transform: translateX(3px);
}


/* Programs Highlights */

.programs-section {
    background-color: var(--light-blue);
    padding: 60px 20px;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.programs-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.program-tab {
    background-color: white;
    border: 1px solid var(--medium-gray);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.program-tab:hover {
    background-color: var(--uci-blue);
    color: white;
    border-color: var(--uci-blue);
}

.program-tab.active {
    background-color: var(--uci-blue);
    color: white;
    border-color: var(--uci-blue);
}

.programs-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    color: var(--uci-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.program-card h3 i {
    margin-right: 15px;
    font-size: 1.8rem;
    color: var(--uci-gold);
}

.program-card p {
    margin-bottom: 20px;
    color: #555;
}

.program-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--uci-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}


/* Unique Opportunities */

.opportunities-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.opportunity-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.opportunity-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.opportunity-content {
    padding: 25px;
}

.opportunity-title {
    color: var(--uci-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.opportunity-description {
    color: #555;
    margin-bottom: 20px;
}


/* Academic Support */

.support-section {
    background-color: var(--light-blue);
    padding: 60px 20px;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-icon {
    font-size: 2.5rem;
    color: var(--uci-blue);
    margin-bottom: 20px;
}

.support-title {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.support-description {
    color: #666;
    margin-bottom: 20px;
}


/* Responsive Design */

@media (max-width: 900px) {
    .academics-hero h1 {
        font-size: 2.5rem;
    }
    .academics-hero p {
        font-size: 1.2rem;
    }
    .academics-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .academics-hero {
        padding: 60px 20px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}