#hero {
    padding: 80px 0 100px;
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Jarak pas antara teks & gambar */
    color: white;
}

/* --- KONTEN KIRI --- */
.hero-content {
    flex: 1.2;
    max-width: 600px; /* Dilebarkan dari 420px agar teks tidak terlalu menumpuk */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge Top */
.women-in-python {
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #F3C649; /* Warna kuning mustard cerah */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.women-in-python::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #F3C649;
    border-radius: 50%;
    box-shadow: 0 0 8px #F3C649;
}

/* Judul Utama */
.hero-title {
    font-weight: 800;
    font-size: 56px; /* Disesuaikan sedikit agar proporsional */
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.hero-title span.text-yellow {
    color: #F3C649;
    text-shadow: 0 0 20px rgba(243, 198, 73, 0.3);
}

/* Deskripsi */
.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Dibuat terang & nyaman dibaca */
    margin: 0 0 32px 0;
}

/* Container Tombol */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

/* Styling Tombol di Dalam Hero */
.hero-buttons .primary-btn,
.hero-buttons .btn-primary {
    background-color: #C82333;
    color: #FFFFFF !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 18px rgba(200, 35, 51, 0.4);
    transition: all 0.25 ease;
}

.hero-buttons .primary-btn:hover,
.hero-buttons .btn-primary:hover {
    background-color: #E02638;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(200, 35, 51, 0.55);
}

/* Tombol Sekunder (Upcoming Events) */
.hero-buttons .secondary-btn,
.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 26px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.25s ease;
}

.hero-buttons .secondary-btn:hover,
.hero-buttons .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* --- GAMBAR KANAN --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Memastikan gambar tetap berada rapi di sebelah kanan */
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35)); /* Bayangan halus di balik gambar */
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: translateY(-6px);
}

/* --- RESPONSIVE MOBILE & TABLET --- */
@media (max-width: 992px) {
    #hero {
        padding: 50px 0;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
        align-items: center;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-desc {
        font-size: 16px;
    }
    .hero-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-image {
        justify-content: center;
    }
    .hero-image img {
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .hero-buttons a {
        text-align: center;
    }
}