


/* --- HERO SECTION --- */
.hero-static {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #ffffff;
    padding: 120px 20px; /* Sedikit dikurangi agar tidak terlalu memakan layar di HP */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Judul - Responsif untuk ukuran layar lebih kecil */
.hero-static h1 {
    color: #ffffff !important;
    font-size: clamp(2.5rem, 8vw, 3.5rem); /* Ukuran dinamis agar tidak pecah di HP */
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
}

/* Deskripsi */
.hero-static .lead {
    color: #a7b6c2 !important;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Tombol premium */
.btn-premium-large {
    border: 2px solid #7895b2 !important;
    color: #ffffff !important;
    background: transparent;
    padding: 15px 40px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
}

.btn-premium-large:hover {
    background-color: #7895b2;
    color: #0f2027 !important;
    box-shadow: 0 0 20px rgba(120, 149, 178, 0.5);
}

/* Badge */
.badge-custom {
    color: #7895b2;
    border: 1px solid rgba(120, 149, 178, 0.3);
    background: rgba(120, 149, 178, 0.1);
    padding: 6px 18px;
    letter-spacing: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    border-radius: 50px;
}

/* Tambahan: Pastikan tidak ada scroll horizontal di HP */
@media (max-width: 576px) {
    .hero-static { padding: 80px 15px; }
    .btn-premium-large { padding: 12px 30px; font-size: 0.9rem; }
}
/* --- HEADER CENTERED --- */
.main-header .container {
    display: flex;
    justify-content: center; /* Mengatur agar logo di tengah */
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    flex-direction: column; /* Jika ingin teks di bawah gambar */
    /* ATAU ganti ke 'row' jika ingin tetap sejajar samping */
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh; /* Memenuhi tinggi layar */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Memastikan video memenuhi layar tanpa merusak proporsi */
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradasi gelap agar teks lebih terbaca di atas video yang bervariasi */
    background: rgba(0, 0, 0, 0.45); 
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1; /* Pastikan teks berada di atas overlay dan video */
}
/* --- NAVIGASI TENGAH --- */
.main-nav {
    width: 100%;
    display: flex;
    justify-content: center; /* Memastikan menu berada di tengah horizontal */
    padding-bottom: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Jarak antar menu */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #bf953f !important; /* Warna emas saat di-hover */
}

/* Khusus untuk tombol Order Now agar tetap menonjol */
.btn-inquiry {
    border: 1px solid #bf953f !important;
    padding: 5px 15px !important;
    border-radius: 4px;
}
/* --- Tagline/Sub-Headline Baru --- */
.hero-tagline {
    color: #bf953f !important; /* Menggunakan warna emas branding Anda */
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    display: block;
    opacity: 0.9;
}
.premium-shine{
    position:relative;
    display:inline-block;

    color:#c8a96a;
    font-weight:600;

    overflow:hidden;
}

.premium-shine::after{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transform:skewX(-25deg);

    animation:shineSweep 3s infinite;
}

@keyframes shineSweep{
    0%{
        left:-120%;
    }

    100%{
        left:150%;
    }
}
.premium-shine {
    font-size: 16px; /* Ubah angka ini sesuai dengan tingkat kekecilan yang diinginkan */
    font-weight: bold; /* Opsional: Menjaga tulisan tetap tebal */
}
/* Desktop tetap seperti semula */
.premium-shine{
    text-align:center;
}

/* HP */
@media (max-width:768px){

    .premium-shine{
        text-align:center !important;
        display:block;
        width:100%;
        padding-left:15px;
        padding-right:15px;
    }

}
/* ==========================================
   FULLSCREEN HERO VIDEO
========================================== */

.hero-video{
    position: relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.bg-video{
    position:absolute;
    top:50%;
    left:50%;
    min-width:100%;
    min-height:100%;
    width:auto;
    height:auto;
    transform:translate(-50%,-50%);
    object-fit:cover;
    z-index:-2;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

.hero-content{
    position:relative;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content h1{
    line-height:1.15;
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

@media(max-width:768px){

    .hero-video{
        height:100vh;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

}
.navbar{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:transparent !important;
}
