/* ============================== */
/* OUR VALUES SECTION             */
/* ============================== */

/* ROW — TWO COLUMNS SIDE BY SIDE */
.our_values {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -60px;
    padding: 0px;
    background-color: black;
    gap: 50px; /* space between image + text */
}

/* LEFT COLUMN (IMAGE) */
.column-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.column-image img {
    width: 100%;
    height: auto;
    max-width: 450px; /* controls size */
    border-radius: 10px;
    display: block;
}

/* RIGHT COLUMN (TEXT) */
.column-text {
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Heading */
.about-heading {
    font-size: 70px;
    font-weight: 100;
    font-style: italic;
    color: white;
    margin-bottom: 30px;
}

/* Description text */
.description-text {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: white;
}

/* ============================== */
/* TABLET RESPONSIVE              */
/* ============================== */

@media (max-width: 1050px) {
    .our_values {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
        padding: 40px 20px;
    }

    .column-image,
    .column-text {
        width: 100%;
    }

    .column-text {
        align-items: center;
    }

    .about-heading {
        font-size: 48px;
    }
}

/* ============================== */
/* MOBILE GRID LAYOUT             */
/* ============================== */

@media (max-width: 900px) {
    .our_values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 40px 20px;
        align-items: start;
        margin-top: 0px;
    }

    /* Heading at top, centered */
    .about-heading {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
        font-size: 42px;
        margin-bottom: 10px;
    }

    /* Let paragraphs flow into grid */
    .column-text {
        display: contents;
    }

    .description-text {
        font-size: 18px;
        line-height: 1.6;
    }

    /* FORCE image AFTER all paragraphs */
    .column-image {
        display: none;
    }

    .column-image img {
        max-width: 320px;
    }
}

/* ============================== */
/* EXTRA SMALL SCREENS             */
/* ============================== */

@media (max-width: 480px) {
    .our_values {
        grid-template-columns: 1fr;
    }

    .about-heading {
        font-size: 32px;
    }

    .column-image {
        display: none;
    }

    .column-image img {
        max-width: 280px;
    }
}

/* ============================== */
/* FLAG IMAGE OVERLAY (UNCHANGED) */
/* ============================== */

.flag-image {
    display: none;
}

.flag-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin-right: 0px;
}

/* Black overlay */
.flag-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 12px;
}
