/* ==================================================
   HOME PAGE - ROSTER CILEGON
   Tanpa Rating / Review
================================================== */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.hero-label,
.section-heading span,
.home-about-content > span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9a6338;
}

.hero-content h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: 52px;
    line-height: 1.12;
    color: #30251e;
}

.hero-content h1 span {
    color: #956039;
}

.hero-content p {
    max-width: 570px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #75685e;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary,
.btn-secondary,
.cta-button {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-primary,
.cta-button {
    background: #8f5d35;
    color: #fff;
}

.btn-primary:hover,
.cta-button:hover {
    background: #754923;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #cbb8a7;
    color: #725238;
}

.btn-secondary:hover {
    background: #eee3d7;
}

.hero-image-box {
    height: 470px;
    overflow: hidden;
    border-radius: 24px;
    background: #eee3d7;
    box-shadow: 0 20px 50px rgba(80,50,30,.15);
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;
    font-size: 34px;
    color: #30251e;
}

.section-heading p {
    line-height: 1.7;
    color: #75685e;
}

/* FEATURES */

.features {
    padding: 90px 0;
    background: rgba(255,255,255,.4);
}

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

.feature-card {
    padding: 30px 25px;
    text-align: center;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(143,93,53,.12);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(80,50,30,.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eee3d7;
    color: #8f5d35;
    font-size: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #30251e;
}

.feature-card p {
    color: #75685e;
    line-height: 1.7;
    font-size: 14px;
}

/* PRODUCTS */

.home-products,
.home-about,
.home-gallery {
    padding: 90px 0;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.home-product-card {
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(80,50,30,.08);
}

.home-product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.home-product-content {
    padding: 20px;
}

.home-product-content h3 {
    margin-bottom: 8px;
    color: #30251e;
}

.home-product-content p {
    color: #75685e;
    font-size: 14px;
}

.center-button {
    margin-top: 35px;
    text-align: center;
}

.text-link {
    color: #8f5d35;
    font-weight: 700;
}

/* ABOUT */

.home-about {
    background: rgba(255,255,255,.35);
}

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

.home-about-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.home-about-content h2 {
    margin-bottom: 20px;
    font-size: 36px;
    color: #30251e;
}

.home-about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #75685e;
}

/* GALLERY */

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.home-gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 14px;
    transition: .3s ease;
}

.home-gallery-grid img:hover {
    transform: translateY(-4px);
}

/* CTA */

.home-cta {
    padding: 90px 20px;
    text-align: center;
    background: #2f251e;
    color: #fff;
}

.home-cta h2 {
    margin-bottom: 12px;
    font-size: 36px;
}

.home-cta p {
    margin-bottom: 25px;
    color: #d8cfc8;
}

/* FOOTER */

.footer {
    padding: 25px 20px;
    text-align: center;
    background: #211914;
    color: #cfc3b9;
}

.footer p {
    margin: 0;
    font-size: 13px;
}

.footer strong {
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero-container,
    .home-about-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-grid,
    .home-product-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-image-box {
        height: 330px;
    }

    .features,
    .home-products,
    .home-about,
    .home-gallery,
    .home-cta {
        padding: 65px 0;
    }

    .section-heading h2,
    .home-about-content h2,
    .home-cta h2 {
        font-size: 28px;
    }

    .feature-grid,
    .home-product-grid,
    .home-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Review */

