/* landing.css - Hero image di atas full width, judul & deskripsi di bawahnya full width, rata tengah, gambar tidak terpotong */

body {
    background: #f6f9f3 !important;
    min-height: 100vh;
}

.landing-hero-img {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin: 32px auto 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.landing-hero-img img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
    background: #fff;
}
.landing-hero-caption {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 32px auto;
    padding: 32px 16px 48px 16px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}
.landing-hero-caption h2 {
    color: #3b5704;
    font-family: "Fredoka One", cursive;
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 18px;
    text-align: center;
}
.landing-hero-caption p {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 0;
    text-align: center;
}
@media (max-width: 900px) {
    .landing-hero-img img {
        max-height: 200px;
    }
    .landing-hero-caption {
        padding: 18px 8px 32px 8px;
    }
    .landing-hero-caption h2 {
        font-size: 1.4rem;
    }
    .landing-hero-caption p {
        font-size: 1rem;
    }
}
@media (max-width: 600px) {
    .landing-hero-img img {
        max-height: 120px;
    }
    .landing-hero-caption {
        padding: 10px 4px 18px 4px;
        margin-bottom: 12px;
    }
    .landing-hero-caption h2 {
        font-size: 1.1rem;
    }
    .landing-hero-caption p {
        font-size: 0.95rem;
    }
}