/*
========================================
  HERO SLIDER STYLES (REVISED)
========================================
*/
.hero {
    height: 550px; /* Sesuaikan tinggi sesuai kebutuhan */
    position: relative;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 5rem; /* Ukuran font besar */
    font-weight: 800; /* Font sangat tebal */
    color: #40FFC4; /* Warna cyan/turquoise */
    text-transform: uppercase;
    line-height: 1;

    /* Trik untuk outline putih dan drop shadow hitam */
    text-shadow: 
        /* Lapisan outline putih */
        -2px -2px 0 #fff,  
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
        /* Lapisan drop shadow halus di belakang outline */
        -3px  3px 5px rgba(0, 0, 0, 0.25),
         3px  3px 5px rgba(0, 0, 0, 0.25);
}

/* Tombol Panah Navigasi Kiri/Kanan */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.29);
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}
.hero-nav:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.hero-nav.hero-prev {
    left: 40px;
}
.hero-nav.hero-next {
    right: 40px;
}
.hero-nav svg {
    width: 24px;
    height: 24px;
}

/* Pagination Dots */
.hero .swiper-pagination {
    bottom: 30px !important; /* Posisikan lebih tinggi dari bawah */
}

/* Gaya Dot Inaktif: Lingkaran dengan outline */
.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid #fff;
    opacity: 0.8;
}

/* Gaya Dot Aktif: Lingkaran terisi */
.hero .swiper-pagination-bullet-active {
    background-color: #fff;
    border: none;
    opacity: 1;
}

/* Penyesuaian untuk Mobile */
@media (max-width: 768px) {
    .hero { height: 232px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-nav { width: 40px; height: 40px; }
    .hero-nav.hero-prev { left: 15px; }
    .hero-nav.hero-next { right: 15px; }
    .hero-nav.hero-next{
        display: none;
    }
    .hero-nav.hero-prev{
        display: none;
    }
}
