/* =========================================================
   ABOUT US PAGE — CLEAN, CREAM THEME + FADE ANIMATION
   Comic Sans + Brown text + Soft cream containers
========================================================= */

/* ==== GLOBAL PAGE BACKGROUND ==== */
body {
    background-color: #fdef98; /* Cream yellow background */
    font-family: "Comic Neue", "Comic Sans", cursive;
    color: #5a3e1b; /* Soft brown text */
    margin: 0;
    padding: 0;
}

/* ==== FADE-IN ANIMATION ==== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==== PAGE CONTAINER ==== */
.about-container {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
    animation: fadeUp 1s ease-out; /* Slow appear */
}

/* ==== PAGE TITLE ==== */
.page-title {
    text-align: center;
    color: #8b4e00; /* Warm brown */
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==== MAIN SECTION FLEX LAYOUT ==== */
.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

/* ==== IMAGE BOX ==== */
.about-image-box img {
    width: 100%;
    max-width: 450px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(139, 78, 0, 0.20); /* Brown glow */
    animation: fadeUp 1s ease-out;
}

/* ==== TEXT BOX ==== */
.about-text-box {
    flex: 1;
    min-width: 300px;
    background: #fff6d6; /* Light cream box */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(0,0,0,0.12);
    animation: fadeUp 1s ease-out;
}

/* ==== TITLE INSIDE TEXT BOX ==== */
.about-text-box h2 {
    color: #8b4e00; /* Stronger brown */
    margin-bottom: 12px;
    font-size: 26px;
}

/* ==== PARAGRAPHS ==== */
.about-text-box p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a3e1b; /* Ensure brown text */
}

/* ==== BULLET LIST ==== */
.about-text-box ul {
    list-style: none;
    padding: 0;
}

.about-text-box ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a3e1b;
}
/*fontload*/
.cursive {
    font-family: 'Dancing Script', cursive;
}
/* ==== MOBILE VIEW FIX ==== */
@media (max-width: 768px) {

    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image-box {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-image-box img {
        max-width: 260px;   /* controlled size */
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}


