
/* =================================================
   ABOUT PAGE
================================================= */


/* ================= ABOUT HERO ================= */

.about-hero {
    min-height: 550px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.48)
        ),
        url("../images/home/blog3.avif");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: white;
}

.about-hero-content {
    max-width: 850px;
    padding: 40px 20px;
}

.about-hero .section-label {
    color: #B86F5A;
}

.about-hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 7vw, 85px);

    line-height: 1;

    font-weight: 500;

    margin: 20px 0 25px;
}

.about-hero h1 span {
    display: block;
    color: #B86F5A;
}

.about-hero p:last-child {
    max-width: 650px;

    margin: auto;

    color: #eee;

    font-size: 14px;

    line-height: 1.9;
}


/* ================= OUR STORY ================= */

.our-story {
    padding: 110px 5%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

    background: #FFFFFF;
}

.story-image {
    height: 600px;

    overflow: hidden;
}

.story-image img {
    height: 100%;

    object-fit: cover;

    transition: 0.6s;
}

.story-image:hover img {
    transform: scale(1.04);
}

.story-content {
    max-width: 570px;
}

.story-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.05;

    font-weight: 500;

    margin-bottom: 30px;
}

.story-content h2 span {
    display: block;

    color: #E7A49A;
}

.story-content > p:not(.section-label) {
    color: #666;

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 18px;
}

.story-content .primary-btn {
    margin-top: 20px;
}


/* ================= MISSION ================= */

.mission-section {
    min-height: 550px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("../images/home/women.avif");

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    padding: 70px 5%;
}

.mission-content {
    max-width: 750px;
}

.mission-content .section-label {
    color: #B86F5A;
}

.mission-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 500;

    line-height: 1;

    margin: 20px 0 30px;
}

.mission-content h2 span {
    display: block;

    color: #B86F5A;
}

.mission-content p:not(.section-label) {
    color: #ddd;

    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 12px;
}


/* ================= VALUES ================= */

.values-section {
    padding: 110px 5%;

    background: #fff;
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.value-card {
    border: 1px solid #e4e1dc;

    padding: 35px 28px;

    min-height: 330px;

    position: relative;

    transition: 0.4s;
}

.value-card:hover {
    transform: translateY(-8px);

    border-color: #E7A49A;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}

.value-number {
    color: #E7A49A;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 35px;
}

.value-icon {
    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #f3eee7;

    color: #E7A49A;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    margin-bottom: 25px;
}

.value-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 500;

    margin-bottom: 12px;
}

.value-card p {
    color: #777;

    font-size: 12px;

    line-height: 1.8;
}


/* ================= STATS ================= */

.about-stats {
    background: #111;

    color: white;

    padding: 70px 5%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    text-align: center;

    gap: 30px;
}

.stat {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.stat strong {
    font-family: "Playfair Display", serif;

    font-size: 48px;

    font-weight: 500;

    color: #B86F5A;
}

.stat span {
    color: #aaa;

    font-size: 9px;

    letter-spacing: 2px;
}


/* ================= CTA ================= */

.about-cta {
    min-height: 500px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.52),
            rgba(0, 0, 0, 0.52)
        ),
        url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1800&q=85");

    background-size: cover;

    background-position: center;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 70px 5%;
}

.about-cta > div {
    max-width: 750px;
}

.about-cta .section-label {
    color: #B86F5A;
}

.about-cta h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 75px);

    font-weight: 500;

    line-height: 1;

    margin: 20px 0;
}

.about-cta h2 span {
    display: block;

    color: #B86F5A;
}

.about-cta p:not(.section-label) {
    color: #ddd;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =================================================
   ABOUT PAGE RESPONSIVE
================================================= */

@media (max-width: 1000px) {

    .our-story {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .story-image {
        height: 550px;
    }

    .story-content {
        max-width: 100%;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .about-hero {
        min-height: 500px;
    }

    .about-hero h1 {
        font-size: 50px;
    }

    .our-story {
        padding: 75px 5%;
    }

    .story-image {
        height: 450px;
    }

    .mission-section {
        min-height: 500px;
    }

    .values-section {
        padding: 75px 5%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: auto;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;

        padding: 55px 5%;
    }

    .stat strong {
        font-size: 38px;
    }

    .about-cta {
        min-height: 450px;
    }

}


@media (max-width: 450px) {

    .about-hero h1 {
        font-size: 43px;
    }

    .story-image {
        height: 380px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 15px;
    }

}
