/* 
  ABOUT PAGE STYLES
  Complementing styles.css for Molehe & Family
*/

.page-hero {
    height: 60vh;
    background: linear-gradient(rgba(27, 38, 46, 0.8), rgba(27, 38, 46, 0.8)), 
                url('assets/about_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(249, 166, 26, 0.2);
    transition: var(--transition);
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Dark mode overrides for Core Values section headers in about.html */
.section-header .section-title {
    color: var(--secondary-color);
}

/* Animation triggers */
.fade-in-left { animation: fadeInLeft 1s ease-out forwards; }
.fade-in-right { animation: fadeInRight 1s ease-out forwards; }

/* Responsive */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .mv-card {
        padding: 2rem;
    }
}
