@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Paytone+One&display=swap');


/* ======================================================
   ABOUT PAGE
   ====================================================== */

.about-page {
    margin: 0;
    background: #fffaf7;
    color: #292321;
    font-family: 'Open Sans', sans-serif;
}


/* MAIN CONTAINER */

.about-wrapper {
    width: calc(100% - 40px);
    max-width: 1050px;
    margin: 0 auto;
    padding: 45px 20px 90px;
    text-align: center;
}


/* TOP IMAGE */

.about-image {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 45px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(100, 35, 10, 0.15);
}

.about-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* SMALL ORANGE LABEL */

.about-label {
    display: block;
    margin-bottom: 14px;

    color: #ed7118;

    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
}


/* INTRO */

.about-intro {
    max-width: 750px;
    margin: 0 auto 60px;
}

.about-intro h1 {
    margin: 0 0 25px;

    font-family: 'Paytone One', sans-serif;
    font-weight: 300;

    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;

    color: #292321;
}

.about-intro p {
    max-width: 650px;
    margin: 0 auto;

    color: #706761;

    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}


/* STORY */

.about-story {
    max-width: 720px;

    margin: 0 auto 55px;
    padding-top: 35px;

    border-top: 1px solid #eadfd8;
}

.about-story h2 {
    margin: 0 0 22px;

    font-family: 'Paytone One', sans-serif;
    font-size: 36px;
    font-weight: 300;

    color: #292321;
}

.about-story p {
    margin: 0;

    color: #706761;

    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* TEAM */

.about-team {
    padding-top: 45px;
    border-top: 1px solid #eadfd8;
}

.about-team > h2 {
    margin: 0 0 45px;

    font-family: 'Paytone One', sans-serif;
    font-size: 38px;
    font-weight: 300;

    color: #292321;
}


/* TWO COLUMNS */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

    max-width: 850px;
    margin: 0 auto;
}


/* TEAM MEMBER */

.team-member {
    padding: 45px 35px;

    background: #ffffff;

    border: 1px solid #f0e4dc;
    border-radius: 24px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(90, 40, 15, 0.07);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);

    box-shadow: 0 16px 40px rgba(90, 40, 15, 0.11);
}


/* INITIAL CIRCLE */

.team-avatar {
    width: 110px;
    height: 110px;

    margin: 0 auto 22px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(90, 40, 15, 0.12);
}

.team-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* TEAM NAME */

.team-member h3 {
    margin: 0 0 8px;

    font-family: 'Paytone One', sans-serif;
    font-size: 25px;
    font-weight: 400;

    color: #292321;
}


/* ROLE */

.team-role {
    display: block;

    margin-bottom: 18px;

    color: #e96e19;

    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.6px;
    text-transform: uppercase;
}


/* TEAM DESCRIPTION */

.team-member p {
    max-width: 300px;
    margin: 0 auto;

    color: #766d67;

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}


/* BOTTOM SECTION */

.about-bottom {
    margin-top: 85px;
    padding-top: 55px;

    border-top: 1px solid #eadfd8;
}

.about-bottom p {
    margin: 0 0 25px;

    color: #6f6660;

    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}


/* BUTTON */

.about-button {
    display: inline-block;

    padding: 15px 28px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #ff9820,
        #ed5217
    );

    color: white;

    font-family: 'Paytone One', sans-serif;
    font-size: 15px;
    font-weight: 400;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(225, 82, 20, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 14px 30px rgba(225, 82, 20, 0.32);
}


/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 700px) {

    .about-wrapper {
        width: calc(100% - 30px);
        padding: 25px 15px 70px;
    }

    .about-image {
        margin-bottom: 38px;
        border-radius: 16px;
    }

    .about-intro {
        margin-bottom: 60px;
    }

    .about-intro h1 {
        font-size: 42px;
    }

    .about-intro p {
        font-size: 16px;
    }

    .about-story {
        margin-bottom: 65px;
        padding-top: 45px;
    }

    .about-story h2 {
        font-size: 31px;
    }

    .about-story p {
        font-size: 16px;
    }

    .about-team {
        padding-top: 50px;
    }

    .about-team > h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member {
        padding: 35px 25px;
    }

    .about-bottom {
        margin-top: 65px;
        padding-top: 45px;
    }

    .about-bottom p {
        font-size: 16px;
    }
}
