/* Hero Section sudah ada, tambahkan bagian tombol dan responsif tambahan */
.hero-section {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url("/images/hero.jpg") center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Animasi halus untuk deskripsi setiap kali berubah */
.hero-desc {
    transition: opacity 0.8s ease-in-out;
}

/* Tombol reservasi */
.hero-section .btn {
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Responsif tambahan */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        padding: 0 1.5rem;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .btn {
        font-size: 1rem;
        padding: 0.6rem 1.6rem;
    }
}
