/* =====================================
   KERALA PAGE STYLES
   (Same layout as Rajasthan)
===================================== */


/* =========================
   KERALA HERO SECTION
========================= */

.state-hero {
    min-height: 75vh;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("../images/kerala-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    
}

/* Hero text aligned LEFT (same as Rajasthan) */
.state-hero-content {
    max-width: 900px;
    margin-left: 60px;
    margin-right: auto;
    padding: 0;
    color: #ffffff;
    text-align: left;
    animation: fadeUp 1.2s ease-out forwards;
    opacity: 0;
}

.state-hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
}

.state-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}


/* =========================
   ABOUT KERALA SECTION
========================= */

.state-about {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center; /* centers heading */
}

.state-about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left; /* paragraphs left-aligned */
}

.state-about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.state-about p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}


/* =========================
   OPTIONAL: MOBILE TWEAKS
========================= */

@media (max-width: 768px) {

    .state-hero-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .state-hero-content h1 {
        font-size: 40px;
    }

    .state-hero-content p {
        font-size: 16px;
    }

    .state-about h2 {
        font-size: 30px;
    }
}
