/* =========================
   ABOUT US PAGE
========================= */
body {
    margin: 0;
    font-family: 'Roots', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #333;
    background-color: #F7F3F0;
}


.about-page {
    background: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   HERO
========================= */

.about-hero {
    position: relative;
    background: url("../images/coming_soon_background.jpg") center/cover no-repeat;
    background-position: center 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Story Script", sans-serif;
}

.about-hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    width: 100%;
}

.about-hero-overlay h1 {
    font-size: 4.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    
}

.about-hero-overlay p {
    font-size: 1.5rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   SECTIONS BASE
========================= */

.about-section {
    padding: 60px 20px;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* =========================
   STORY SECTION
========================= */

.about-story .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 10px 20px;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1px;
    color: #444;
    text-align: justify;
}

.about-image img {
    height: 60%;
    width: 60%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   VALUES
========================= */

.about-values {
    background: #fff;
    margin-top: -80px;
    
    
}

.about-values h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    padding: 25px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    color: #fff;
    margin-bottom: 22px;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1.07rem;
    line-height: 1.7;
    color: #fff;
}

/* =========================
   MISSION
========================= */

.about-mission {
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    color: #fff;
    text-align: center;
    padding: 90px 20px;
}

.about-mission-text {
    font-size: 1.3rem;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

/* =========================
   CLOSING / CTA
========================= */

.about-closing {
    background: linear-gradient(135deg, #D4AF37, #f9e076);
    text-align: center;
    padding: 120px 20px;
    color: #fff;
}

.about-closing h2 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.about-closing p {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #fff;
}

.about-cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background: rgba(255, 255, 255, 0.95);
    color: #D4AF37;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* =========================
   RESPONSIVE
========================= */

/* =========================
   ABOUT US – RESPONSIVE ≤ 768px
========================= */
@media (max-width: 768px) {

    /* ===== HERO ===== */
    .about-hero {
        min-height: 25vh;
        background-position: center center;
    }

    .about-hero-overlay {
        padding: 36px 22px;
    }

    .about-hero-overlay h1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.1;
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .about-hero-overlay p {
        font-size: 1.2rem;
        line-height: 1.55;
    }

    /* ===== SECTIONS ===== */
    .about-section {
        padding: 55px 22px;
    }

    /* ===== STORY ===== */
    .about-story .about-container {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 0;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .about-image img {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* ===== VALUES ===== */
    .about-values {
        margin-top: -50px;
    }

    .about-values h2 {
        font-size: 2.1rem;
        margin-bottom: 42px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .value-card {
        padding: 24px 22px;
        border-radius: 18px;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    /* ===== MISSION ===== */
    .about-mission {
        padding: 80px 22px;
    }

    .about-mission-text {
        font-size: 1.15rem;
        line-height: 1.65;
    }

    /* ===== CLOSING / CTA ===== */
    .about-closing {
        padding: 100px 22px;
    }

    .about-closing h2 {
        font-size: 2.2rem;
    }

    .about-closing p {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 0;
        font-size: 1rem;
    }
}

