.bg-header {
    background-image: url(../img/gedung1.jpeg);
    /* max-width: 100%;
    height: auto;
    background-size: 100% 100%; */
    background-repeat: no-repeat;
    background-size: cover;
    
}

/* Hero */
#hero{
    background-image: url("../../assets/images/bgawal01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 600px; */
}

.hero-text {
    font-size: 8vw; /* Gunakan vw agar proporsional terhadap lebar layar */
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

#hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Ubah nilai opacity sesuai kebutuhan */
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 4vw;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }
}

@media (min-width: 992px) {
    .hero-text {
        font-size: 60px; /* Kembali ke ukuran tetap untuk desktop besar */
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    }
}

.hero-title {
    padding-top: 25vh; /* Gunakan tinggi relatif untuk padding atas */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

