/* HERO */
.about-hero {
    position: relative;

    min-height: 65vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background-image:
        url("/images/imageaboutus.jpg");

    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.35)
        );
}

/* CONTENT */
.about-hero-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: white;

    max-width: 900px;

    margin: auto;
}

/* SUBTITLE */
.about-subtitle {
    text-transform: uppercase;

    letter-spacing: 3px;

    font-weight: 600;

    color:
        rgb(216,176,107);

    margin-bottom: 20px;
}

/* TITLE */
.about-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);

    font-weight: 700;

    line-height: 1.2;

    text-shadow:
        0 4px 16px rgba(0,0,0,0.3);
}

/* SECTION */
.about-section {
    padding:
        100px 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8f5ef
        );
}

/* ABOUT CARD */
.about-card {
    margin-bottom: 80px;
}

/* IMAGE */
.about-image {
    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 18px 38px rgba(0,0,0,0.12);
}

/* IMAGE */
.about-image img {
    width: 100%;

    transition:
        transform 0.6s ease;
}

/* HOVER */
.about-image:hover img {
    transform: scale(1.05);
}

/* TEXT */
.about-text {
    font-size: 1.1rem;

    line-height: 1.9;

    color: #555;
}

/* MISSION/VISION */
.mission-card {
    height: 100%;

    padding:
        45px;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.75);

    backdrop-filter: blur(12px);

    box-shadow:
        0 14px 34px rgba(0,0,0,0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* HOVER */
.mission-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 44px rgba(0,0,0,0.14);
}

/* TITLE COMPONENT */
.titleaboutus {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding:
        14px 28px;

    margin-bottom: 26px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #d8b06b,
            #c8943e
        );

    color: white;

    font-size: 1.2rem;

    font-weight: 600;

    letter-spacing: 0.5px;

    box-shadow:
        0 10px 24px rgba(216,176,107,0.28);
}

/* MOBILE */
@media (max-width: 992px) {

    .about-section {
        padding:
            70px 20px;
    }

    .about-card {
        margin-bottom: 60px;
    }

    .mission-card {
        padding: 35px;
    }
}

/* MOBILE SMALL */
@media (max-width: 768px) {

    .about-hero {
        min-height: 50vh;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-section {
        padding:
            50px 14px;
    }

    .mission-card {
        padding: 28px;
    }

    .about-text {
        font-size: 1rem;
    }

    .titleaboutus {
        width: 100%;

        text-align: center;
    }
}