.hero-section {
    position: relative; 
    height: 100vh;
    display: flex;
    align-items: center; 
    padding-left: 5%; 
    padding-right: 5%; 
    background-image: url("/images/Home.webp");
    background-size: cover;
    background-position: bottom;
    color: white; 
}

/* Overlay gelap di background */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative;
    padding-top: 150px; 
    z-index: 2; 
    max-width: 650px;
}

/* =========================
   SLIDER TEXT HORIZONTAL
   ========================= */
.hero-slider {
    overflow: hidden;
    width: 100%;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* 👉 kunci utama ada di sini */
.hero-slide {
    flex: 0 0 100%;          /* lebar fix 100% dari container */
    max-width: 100%;
    box-sizing: border-box;
}

/* =========================
   JUDUL & PARAGRAF HERO
   ========================= */

.hero-content h1,
.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: white;
}

/* =========================
   TOMBOL CTA
   ========================= */

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0D4884;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FEDE30;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media (max-width: 768px) {

    .hero-content {
        padding-top: 110px;
        max-width: 100%;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}
