﻿/* =========================================================
   MAU FEEDS - ABOUT US PAGE
   Page-specific CSS only
   Common header / footer / hero styles are in site.css
   ========================================================= */


/* =========================================================
   1. WHO WE ARE
   ========================================================= */

.about-who-section {
    padding: 42px 0 35px;
    background-color: var(--mau-bg-light);
}

.about-section-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--mau-text);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

    .about-section-eyebrow span {
        display: inline-block;
        width: 28px;
        height: 2px;
        background-color: var(--mau-gold);
    }

.about-section-title {
    margin-bottom: 14px;
    color: var(--mau-green);
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-section-text {
    max-width: 570px;
    margin-bottom: 12px;
    color: var(--mau-text);
    font-size: var(--fs-sm);
    line-height: 1.55;
}


/* ---------- Who We Are Image ---------- */

.about-who-image {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

    .about-who-image img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        object-position: center;
    }


/* ---------- About Highlights ---------- */

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 18px;
}

.about-highlight {
    min-width: 0;
    padding: 0 15px;
    text-align: center;
    border-right: 1px solid var(--mau-border);
}

    .about-highlight:first-child {
        padding-left: 0;
    }

    .about-highlight:last-child {
        padding-right: 0;
        border-right: 0;
    }

.about-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 7px;
    color: var(--mau-green);
    font-size: 1.65rem;
}

.about-highlight h6 {
    margin-bottom: 5px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.25;
}

.about-highlight p {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   2. MISSION & VISION
   ========================================================= */

.about-mission-section {
    padding: 28px 0;
    background-color: var(--mau-white);
}

.about-section-heading {
    margin-bottom: 18px;
}

    .about-section-heading .about-section-eyebrow {
        justify-content: center;
        margin-bottom: 0;
    }

.about-mission-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid var(--mau-border);
    border-radius: var(--radius-md);
    background-color: var(--mau-white);
}

.about-mission-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--mau-green);
    color: var(--mau-white);
    font-size: 1.8rem;
}

.about-mission-content {
    flex: 1;
}

    .about-mission-content h3 {
        margin-bottom: 6px;
        color: var(--mau-text);
        font-family: var(--font-heading);
        font-size: var(--fs-md);
    }

    .about-mission-content p {
        margin-bottom: 0;
        color: var(--mau-text);
        font-size: var(--fs-xs);
        line-height: 1.5;
    }


/* ---------- Center Barley ---------- */

.about-mission-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mau-gold);
}

.about-barley-svg {
    width: 58px;
    height: 95px;
}


/* =========================================================
   3. WHY CHOOSE MAU FEEDS
   ========================================================= */

.about-why-section {
    padding: 30px 0 34px;
    background-color: var(--mau-bg-light);
}

    .about-why-section .about-section-heading {
        margin-bottom: 12px;
    }

.about-why-grid {
    border-top: 0;
}

.about-why-item {
    height: 100%;
    padding: 8px 18px 4px;
    text-align: center;
    border-right: 1px dotted #bdbdb5;
}

.about-why-grid > div:last-child .about-why-item {
    border-right: 0;
}

.about-why-icon {
    min-height: 38px;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mau-green);
    font-size: 1.75rem;
}

.about-why-item h5 {
    margin-bottom: 5px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.25;
}

.about-why-item p {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: 10px;
    line-height: 1.45;
}


/* =========================================================
   4. OUR JOURNEY
   ========================================================= */

.about-journey-section {
    padding: 35px 0 38px;
    background-color: var(--mau-white);
}

    .about-journey-section .about-section-text {
        margin-bottom: 18px;
    }

.about-journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

    .about-journey-timeline::before {
        content: "";
        position: absolute;
        top: 31px;
        left: 10%;
        right: 10%;
        border-top: 2px dotted var(--mau-border);
        z-index: 0;
    }

.about-journey-item {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    text-align: center;
}

.about-journey-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cdd7c5;
    border-radius: 50%;
    background-color: #edf3e9;
    color: var(--mau-green);
    font-size: 1.45rem;
}

.about-journey-item:nth-child(even) .about-journey-icon {
    background-color: #fff8df;
    border-color: #ead99d;
}

.about-journey-year {
    margin-bottom: 2px;
    color: var(--mau-text);
    font-size: var(--fs-xs);
    font-weight: 600;
}

.about-journey-item h5 {
    margin-bottom: 5px;
    color: var(--mau-text);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    line-height: 1.25;
}

.about-journey-item p {
    margin-bottom: 0;
    color: var(--mau-text-light);
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   5. ABOUT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .about-who-section {
        padding: 40px 0;
    }

    .about-who-image img {
        height: 300px;
    }

    .about-highlights {
        margin-top: 22px;
    }

    .about-mission-card {
        padding: 20px;
    }

    .about-journey-timeline {
        margin-top: 15px;
    }
}


@media (max-width: 767.98px) {

    /* ---------- Who We Are ---------- */

    .about-who-section {
        padding: 35px 0;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .about-who-image {
        margin-top: 5px;
    }

        .about-who-image img {
            height: 250px;
        }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .about-highlight:nth-child(2) {
        border-right: 0;
    }

    .about-highlight:nth-child(3),
    .about-highlight:nth-child(4) {
        padding-top: 15px;
        border-top: 1px solid var(--mau-border);
    }


    /* ---------- Mission / Vision ---------- */

    .about-mission-section {
        padding: 30px 0;
    }

    .about-mission-card {
        align-items: flex-start;
    }

    .about-mission-icon {
        flex-basis: 60px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


    /* ---------- Why Choose ---------- */

    .about-why-section {
        padding: 30px 0;
    }

    .about-why-item {
        padding: 12px 10px;
        border-right: 0;
        border-bottom: 1px dotted #bdbdb5;
    }

    .about-why-grid > div:nth-child(odd) .about-why-item {
        border-right: 1px dotted #bdbdb5;
    }

    .about-why-grid > div:nth-last-child(-n+2) .about-why-item {
        border-bottom: 0;
    }


    /* ---------- Journey ---------- */

    .about-journey-section {
        padding: 35px 0;
    }

    .about-journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

        .about-journey-timeline::before {
            display: none;
        }

    .about-journey-item {
        padding: 0 8px;
    }
}


@media (max-width: 575.98px) {

    .about-section-title {
        font-size: 1.4rem;
    }

    .about-section-text {
        font-size: var(--fs-xs);
    }

    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlight {
        padding: 0 8px;
    }

        .about-highlight h6 {
            font-size: 10px;
        }

        .about-highlight p {
            font-size: 9px;
        }

    .about-mission-card {
        gap: 14px;
        padding: 18px;
    }

    .about-mission-content h3 {
        font-size: var(--fs-base);
    }

    .about-mission-content p {
        font-size: 11px;
    }

    .about-journey-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .about-journey-icon {
        width: 54px;
        height: 54px;
        font-size: 1.25rem;
    }
}
