/* Research Stats */

.research-stats {
    /* background-color: var(--uci-blue); */
    /* color: white; */
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Research Areas */

.research-areas {
    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;
}

.areas-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(580px, 1fr));
    gap: 30px; */
}

.area-card {
    height: 500px;
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 150px;
    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;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.area-image {
    height: 200px;
    background-color: var(--medium-gray);
    background-size: cover;
    background-position: center;
}

.area-content {
    padding: 25px;
}

.area-title {
    color: var(--uci-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.area-description {
    color: #555;
    margin-bottom: 20px;
}


/* Research Centers */

.research-centers {
    background-color: var(--light-blue);
    padding: 60px 20px;
}

.centers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.center-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.center-card h3 {
    color: var(--uci-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.center-card h3 i {
    margin-right: 15px;
    font-size: 1.8rem;
    color: var(--uci-gold);
}

.center-card p {
    margin-bottom: 20px;
    color: #555;
}


/* Faculty Spotlight */

.faculty-spotlight {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faculty-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faculty-image {
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80');
    background-size: cover;
    background-position: center;
}

.faculty-content {
    padding: 40px;
}

.faculty-name {
    color: var(--uci-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.faculty-title {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-style: italic;
}

.faculty-bio {
    margin-bottom: 20px;
    line-height: 1.8;
}

.faculty-research {
    font-weight: bold;
    margin-bottom: 20px;
}


/* Research Opportunities */

.research-opportunities {
    background-color: var(--light-blue);
    padding: 60px 20px;
}

.opportunities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.opportunities-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.opportunity-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;
}

.opportunity-tab:hover {
    background-color: var(--uci-blue);
    color: white;
    border-color: var(--uci-blue);
}

.opportunity-tab.active {
    background-color: var(--uci-blue);
    color: white;
    border-color: var(--uci-blue);
}

.opportunities-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.opportunity-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.opportunity-item h3 {
    color: var(--uci-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.opportunity-item p {
    margin-bottom: 15px;
    color: #555;
}

.opportunity-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
}


/* Responsive Adjustments */

@media (max-width: 900px) {
    .research-hero h1 {
        font-size: 2.5rem;
    }
    .research-hero p {
        font-size: 1.2rem;
    }
    .faculty-card {
        grid-template-columns: 1fr;
    }
    .faculty-image {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .research-hero {
        padding: 80px 20px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}