/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-us {
    padding: 100px 20px;
}

/* GRID LAYOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.about-copy {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 10px;
}

.about-heading {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-lead {
    margin-bottom: 20px;
    color: #555;
}

/* VALUES GRID */
.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-value h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.about-value p {
    font-size: 14px;
    color: #666;
}

/* STATS */
.about-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

/* ============================= */
/* FOUNDERS */
/* ============================= */

.founders-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.founders-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.founders-title {
    font-size: 20px;
    font-weight: 600;
}

.founders-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founder-name {
    font-weight: 600;
}

.founder-role {
    font-size: 14px;
    color: #666;
}

/* RIGHT SIDE (STACKED CARDS) */
.founders-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founders-album {
    position: relative;
    width: 220px;
    height: 220px;
}

.album-card {
    position: absolute;
    width: 160px;
    height: 200px;
    border-radius: 16px;
    background: #ddd;
}

/* STACK EFFECT */
.card-1 {
    background-image: url('../assets/images/image.png');
    background-size: cover;
    background-position: center;
}

.card-2 {
    background-image: url('../assets/images/image2.png');
    background-size: cover;
    background-position: center;
}

.card-3 {
    background-image: url('../assets/images/image3.png');
    background-size: cover;
    background-position: center;
}
/* ============================= */
/* RIGHT IMAGE */
/* ============================= */

.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 420px;
    height: 500px;
    border-radius: 20px;

    background-image: url('../assets/images/image.png');
    background-size: cover;
    background-position: center;
}

/* CTA */
.about-cta {
    display: inline-block;
    margin-top: 30px;
    text-decoration: none;
    font-weight: 600;
}


@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        max-width: 100%;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .founders-block {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .about-image {
        height: 350px;
    }
}