/* Reset Dasar */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* SECTION 1: HERO */
.mils-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh; /* Kunci layar penuh */
    overflow: hidden;
    display: flex;
    align-items: center; /* Teks di tengah vertikal */
    justify-content: center; /* Teks di tengah horizontal */
}

.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Di belakang teks */
}

.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar/Video akan otomatis terpotong proporsional memenuhi layar */
}

.hero-content {
    position: relative;
    z-index: 2; /* Di atas gambar */
    text-align: center;
    color: #ffffff; /* Asumsi teks putih di atas gambar gelap */
}

/* Styling Tombol 'View More' */
.btn-view-more {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #ffffff;
    color: #000000;
}