/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Hero Section Override */
.about-hero {
    height: 60vh;
    min-height: 400px;
    background: url('./images/about-bg.jpg') no-repeat center center/cover;
    /* Placeholder, will fallback to color or generic if missing */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    /* Header is fixed, but we'll handle spacing via padding in shared style if needed, or stick to this */
}

/* Ensure padding for fixed header matching index alignment */
.about-hero {
    padding-top: 100px;
}

.about-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.about-title {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-main);
    text-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--accent-blue);
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* Mission & Vision */
.mission-section {
    background-color: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: var(--accent-blue);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.mission-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--gold);
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: 20px;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--accent-blue);
}

/* Team Section */
.team-section {
    background-color: #f8fafc;
}

.team-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.team-img-wrapper {
    height: 250px;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-info {
    padding: 10px;
}

.team-role {
    color: var(--royal-blue);
    font-size: 0.9rem;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.team-name {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}