/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    min-height: calc(100vh - 80px);
}

.hero-card {
    background-color: var(--bg-card);
    border: 1px solid var(--hijau-border);
    border-radius: 32px;
    padding: 60px 80px;
    width: calc(100% - 48px);
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-image {
    flex: 0 0 auto;
    width: 45%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================================
   TEKS
   ================================ */
.teks-hijau-cerah {
    color: #4ade80;
    letter-spacing: 4px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.teks-biru-muda {
    color: var(--warna-udara);
    margin-top: -8px;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

/* ================================
   KOTAK ELEMEN
   ================================ */
.element-grid {
    display: flex;
    gap: 16px;
}

.element-box {
    width: 130px;
    height: 90px;
    background-color: var(--bg-utama);
    border: 1px solid var(--hijau-border);
    border-radius: 16px;
    transition: transform 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 10px;
}

.element-box:hover {
    border-color: var(--hijau-medium);
    transform: translateY(-5px);
}

.element-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* ================================
   VIDEO BUMI
   ================================ */
.hero-video {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    border-radius: 50%;
}

[data-theme="light"] .hero-video {
    mix-blend-mode: darken;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

/* ================================
   RESPONSIF — TABLET
   ================================ */
@media (max-width: 992px) {
    .hero-card {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 32px;
        gap: 24px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .teks-hijau-cerah,
    .teks-biru-muda {
        font-size: 3.5rem;
    }

    .hero-image {
        width: 100%;
        max-width: 320px;
    }

    .element-grid {
        justify-content: center;
    }
}

/* ================================
   RESPONSIF — HP SEDANG
   ================================ */
@media (max-width: 768px) {
    .hero-card {
        padding: 32px 24px;
        width: calc(100% - 32px);
        border-radius: 24px;
    }

    .teks-hijau-cerah,
    .teks-biru-muda {
        font-size: 2.8rem;
    }

    .hero-image {
        max-width: 260px;
    }
}

/* ================================
   RESPONSIF — HP KECIL
   ================================ */
@media (max-width: 480px) {
    .hero-card {
        padding: 28px 20px;
        width: calc(100% - 24px);
        border-radius: 20px;
    }

    .hero-image {
        max-width: 220px;
    }

    .element-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .element-box {
        width: 100%;
    }
}