/* Hero Section & Slider */
.hero {
    position: relative;
    height: 80vh;
    min-height: 400px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Animasi fade-in */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Overlay gelap agar teks lebih terbaca */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide h1,
.slide p {
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.slide h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Penyesuaian responsif untuk teks hero di mobile */
@media (max-width: 768px) {
    .slide h1 { font-size: 2rem; }
    .slide p { font-size: 1rem; }
}