.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5vw;
    min-height: 80vh;
    overflow: hidden;
    text-align: left;
}

/* Membuat layout dua kolom */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 kolom */
    gap: 5vw; /* Jarak antar teks */
    align-items: center;
    width: 90%;
}

/* Logo Background */
.background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    opacity: 0.1;
    z-index: -1;
}

/* Kolom kiri (Judul) */
.hero-title h1 {
    font-family: "Georgia", serif;
    font-size: 3.5vw;
    font-weight: normal;
    margin: 0;
    line-height: 1.2;
}

/* Kolom kanan (Deskripsi & Tombol) */
.hero-content {
    font-family: "Arial", sans-serif;
    font-size: 1.2vw;
    line-height: 1.5;
    color: #333;
}

.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1vw;
    color: black;
    border: 2px solid black;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: black;
    color: white;
}

/* Responsive untuk layar lebih kecil */
@media screen and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title h1 {
        font-size: 5vw;
    }

    .hero-content {
        font-size: 2vw;
    }

    .hero-content .btn {
        font-size: 2vw;
    }

    .background-logo {
        width: 85%;
    }
}

@media screen and (max-width: 768px) {
    .hero-title h1 {
        font-size: 6vw;
    }

    .hero-content {
        font-size: 2.5vw;
    }

    .hero-content .btn {
        font-size: 2.5vw;
    }

    .background-logo {
        width: 100%;
    }
}
