/* --- Base Styles Hero (Desktop) --- */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.hero-section {
    background-color: #0A0A12;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: #C4C9AC;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204,255,0,0.1) 0%, rgba(0,0,0,0) 70%);
    left: 10%;
    top: 20%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-media {
    position: relative;
}

.hero-coordinates {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: rotate(-90deg);
    color: rgba(68, 68, 68, 0.4);
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-img {
    width: 100%;
    filter: grayscale(1);
    background: transparent;
    display: block;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(204, 255, 0, 0.05);
    border: 1px solid rgba(204, 255, 0, 0.3);
    margin-bottom: 20px;
}

.hero-badge p {
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    color: #CCFF00;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 54px; /* Sedikit dinaikkan biar lebih bold di desktop */
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #FFFFFF;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #C4C9AC;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 0 40px 0;
}

.hero-desc-highlight {
    display: block;
    color: #eee;
    font-style: italic;
    font-weight: 600;
    margin-top: 10px;
}

.hero-actions {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/* Transformasi Inline Button ke CSS Hover Murni */
.btn-explore {
    width: 264px;
    height: 58px;
    background-color: #CCFF00;
    color: #161E00;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background-color: #E6FF80;
    box-shadow: 0 4px 25px rgba(204, 255, 0, 0.4);
    transform: translateY(-2px);
}

/* --- 📱 Media Query Mobile Device (< 768px) --- */
@media screen and (max-width: 768px) {
    .hero-section {
        padding: 120px 24px 60px 24px; /* Tambah padding top agar tidak tertutup navbar sticky */
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr; /* Kolom tunggal bertumpuk vertikal */
        gap: 40px;
    }

    .hero-media {
        order: 1; /* Posisi gambar pindah ke atas teks */
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-coordinates {
        display: none; /* Menyembunyikan teks koordinat miring agar tidak tabrakan di HP */
    }

    .hero-content {
        order: 2;
        text-align: center; /* Meratakan konten di tengah untuk tampilan ponsel */
    }

    .hero-title {
        font-size: 36px; /* Mengecilkan ukuran judul agar muat di layar HP */
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn-explore {
        width: 100%; /* Tombol melebar penuh di mobile agar jempol mudah menekan */
        max-width: 320px;
    }
}