/* ============ ABOUT PAGE SPECIFIC STYLES ============ */

/* Hero Section Enhancement for About Page */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 6rem;
    color: var(--white);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('/NWN-Website//img/40.png') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.05);
}

/* Blue Overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 31, 63, 0.85) 0%,
            rgba(13, 58, 92, 0.75) 50%,
            rgba(0, 82, 155, 0.85) 100%);
}

/* Content stays above */
.about-hero__content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.about-hero__content {
    max-width: 800px;
    z-index: 1;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 2rem;
    background: var(--white);
}

.mission-vision__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.mv-row--reverse {
    direction: rtl;
    /* This flips the grid columns */
}

.mv-row--reverse .mv-row__content {
    direction: ltr;
    /* Reset text direction for content */
}

@media (max-width: 968px) {
    .mv-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mv-row--reverse {
        direction: ltr;
    }

    .mv-row__image {
        height: 400px;
    }
}

.mv-row__image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 510px;
}

.mv-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mv-row:hover .mv-row__image img {
    transform: scale(1.05);
}

.mv-row__icon {
    width: 56px;
    height: 56px;
    background: var(--gray-50);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--nwn-blue);
    box-shadow: var(--shadow-sm);
}

.mv-row__title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.mv-row__text {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Our Story Section */
.story {
    padding: 2rem 2rem;
}

.story__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 968px) {
    .story__container {
        grid-template-columns: 1fr;
    }

    .story {
        padding: 0rem 2rem;
    }
}

.story__image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}


.story__content h2 {
    margin-bottom: 2rem;
}

.story__text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray-700);
}

/* Values Grid */
.values {
    padding: 8rem 2rem;
    background: var(--nwn-navy);
    color: var(--white);
}

.values__header {
    text-align: center;
    margin-bottom: 4rem;
}

.values__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--nwn-blue);
}

.value-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--nwn-yellow);
}

.value-card__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Team Section */
.team {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-top: 4px solid var(--nwn-blue);
}

.team__header {
    text-align: center;
    margin-bottom: 4rem;
}

.team__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}


.team-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.team-card__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--nwn-blue);
    transition: border-color 0.3s;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card:hover .team-card__image {
    border-color: var(--nwn-yellow);
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.team-card__role {
    color: var(--nwn-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-card__profession {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.team-card__socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    background-color: var(--nwn-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--nwn-yellow);
    color: var(--nwn-blue);
}