/* ---------- ABOUT US ---------- */
.about-header {
  background: url('WebsiteImages/BTS1.JPG') center/cover no-repeat;
}

.sub-header h1 {
  margin-top: 100px;
}


.about-wrapper {
    width: 100%;
    padding: 60px 5%;
    background: linear-gradient(to bottom,#070707,#000000);
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* -------- TOP SECTION -------- */
.top-row {
    display: flex;
    justify-content: center;     /* center whole section */
    align-items: center;
    gap: 60px;                    /* space between text + images */
    margin-bottom: 70px;
    text-align: left;           /* centers the H1 */
}

.top-text {
    max-width: 600px;
}

.top-text h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin: 0;
    color: #fc3f40;
}

/* Images container — now horizontal */
.top-images {
    display: flex;
    flex-direction: row;          /* side-by-side */
    gap: 25px;                    /* space between images */
}

/* Larger images */
.top-images img {
    width: 280px;                 /* increase size */
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}


/* -------- MIDDLE SECTION -------- */
.middle-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0 auto 90px;
    max-width: 1200px;
}

.middle-image img {
    width: 520px;
    height: auto;
    border-radius: 12px;
}

.middle-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #796e6e;
}

.middle-text p {
    color: #cccccc;
    line-height: 1.7;
}



/* -------- STATISTICS -------- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto 0;
    max-width: 1000px;
}

.stat-block {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ef2b2b;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
    .top-row, .middle-row, .stats-row {
        flex-direction: column;
        text-align: center;
    }

    .top-images {
        flex-direction: row;
        justify-content: center;
    }

    .middle-image img {
        width: 100%;
        max-width: 450px;
        margin: auto;
    }
}
