/* =========================
ABOUT HERO
========================= */

.about-hero {
    min-height: 60vh;
    padding: 120px 20px 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    width: 100%;
    max-width: 800px;

    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 auto;
}


/* =========================
ABOUT STORY
========================= */

.about-story {
    padding: 100px 0;
}

.about-row {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 80px;
}

.about-image,
.about-content {
    flex: 1;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: 550px;

    object-fit: cover;

    border-radius: 20px;
}


/* =========================
MISSION & VISION
========================= */

.mission-section {
    width: 90%;
    max-width: 1200px;

    margin: 80px auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

.mission-box {
    padding: 50px;

    background: #f8f5f0;

    text-align: center;

    border-radius: 20px;
}

.mission-box h2 {
    font-size: 35px;
    line-height: 1.2;

    margin-bottom: 20px;

    color: #222;
}

.mission-box p {
    color: #666;

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 0;
}


/* =========================
WHY CHOOSE US
========================= */

.why-section {
    padding: 100px 0;

    text-align: center;
}

.why-section > h2 {
    font-size: 45px;
    line-height: 1.2;

    margin-bottom: 50px;
}

.why-grid {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.why-grid div {
    padding: 35px;
}

.why-grid h3 {
    font-size: 25px;
    line-height: 1.3;

    margin-bottom: 15px;

    color: #222;
}

.why-grid p {
    color: #666;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================
ABOUT CTA
========================= */

.about-cta {
    text-align: center;

    padding: 80px 20px;

    background: #f8f5f0;
}

.about-cta h2 {
    font-size: 40px;
    line-height: 1.2;

    margin-bottom: 25px;
}

.about-cta a {
    display: inline-block;

    padding: 15px 40px;

    background: white;

    color: var(--bridal-purple);

    text-decoration: none;

    border: 2px solid var(--bridal-purple);

    border-radius: 30px;

    transition: 0.3s ease;
}


/* ==================================================
TABLET
================================================== */

@media (max-width: 1024px) {

    /* Hero */

    .about-hero {
        min-height: 55vh;

        padding: 120px 30px 70px;
    }

    .about-hero-content {
        max-width: 700px;
    }

    .about-hero-content h1 {
        font-size: 44px;
    }

    .about-hero-content p {
        font-size: 18px;
    }


    /* Story */

    .about-story {
        padding: 80px 0;
    }

    .about-row {
        gap: 50px;
    }

    .about-image img {
        height: 450px;
    }


    /* Mission */

    .mission-section {
        gap: 25px;
        margin: 60px auto;
    }

    .mission-box {
        padding: 40px 30px;
    }

    .mission-box h2 {
        font-size: 30px;
    }


    /* Why */

    .why-section {
        padding: 80px 0;
    }

    .why-section > h2 {
        font-size: 38px;
    }

    .why-grid {
        gap: 25px;
    }

    .why-grid div {
        padding: 25px 20px;
    }

    .why-grid h3 {
        font-size: 22px;
    }


    /* CTA */

    .about-cta {
        padding: 70px 20px;
    }

    .about-cta h2 {
        font-size: 34px;
    }
}


/* ==================================================
TABLET / SMALL LAPTOP
================================================== */

@media (max-width: 900px) {

    .about-row {
        gap: 35px;
    }

    .about-image img {
        height: 400px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==================================================
PHONE
================================================== */

@media (max-width: 768px) {

    /* =========================
    HERO
    ========================= */

    .about-hero {
        min-height: auto;

        padding: 140px 20px 70px;
    }

    .about-hero-content {
        max-width: 100%;
    }

    .about-hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .about-hero-content p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* =========================
    STORY
    ========================= */

    .about-story {
        padding: 70px 0;
    }

    .about-row {
        width: 90%;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 350px;

        border-radius: 15px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* =========================
    MISSION
    ========================= */

    .mission-section {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 25px;

        margin: 50px auto;
    }

    .mission-box {
        padding: 35px 25px;
    }

    .mission-box h2 {
        font-size: 28px;
    }

    .mission-box p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* =========================
    WHY CHOOSE US
    ========================= */

    .why-section {
        padding: 70px 0;
    }

    .why-section > h2 {
        width: 90%;
        margin-left: auto;
        margin-right: auto;

        font-size: 34px;
    }

    .why-grid {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .why-grid div {
        padding: 25px 15px;
    }

    .why-grid h3 {
        font-size: 22px;
    }

    .why-grid p {
        font-size: 16px;
    }


    /* =========================
    CTA
    ========================= */

    .about-cta {
        padding: 60px 20px;
    }

    .about-cta h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    .about-cta a {
        padding: 13px 30px;
    }
}


/* ==================================================
SMALL PHONES
================================================== */

@media (max-width: 480px) {

    /* Hero */

    .about-hero {
        padding: 125px 18px 60px;
    }

    .about-hero-content h1 {
        font-size: 30px;
    }

    .about-hero-content p {
        font-size: 15px;
    }


    /* Story */

    .about-story {
        padding: 55px 0;
    }

    .about-row {
        width: 92%;
    }

    .about-image img {
        height: 300px;
        border-radius: 12px;
    }

    .about-content h2 {
        font-size: 27px;
    }

    .about-content p {
        font-size: 15px;
    }


    /* Mission */

    .mission-section {
        width: 92%;

        margin: 40px auto;
    }

    .mission-box {
        padding: 30px 20px;
    }

    .mission-box h2 {
        font-size: 25px;
    }

    .mission-box p {
        font-size: 15px;
    }


    /* Why */

    .why-section {
        padding: 55px 0;
    }

    .why-section > h2 {
        font-size: 29px;

        margin-bottom: 30px;
    }

    .why-grid {
        width: 92%;
    }

    .why-grid div {
        padding: 20px 10px;
    }

    .why-grid h3 {
        font-size: 21px;
    }

    .why-grid p {
        font-size: 15px;
    }


    /* CTA */

    .about-cta {
        padding: 50px 18px;
    }

    .about-cta h2 {
        font-size: 27px;
    }

    .about-cta a {
        width: 100%;
        max-width: 280px;

        padding: 13px 20px;
    }
}
