body {
    font-family: 'Poppins', sans-serif; /* Menggunakan font yang bersih */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333; /* Warna teks standar */
}

/* Bagian Hero Section */
.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover; /* Ganti 'hero-bg.jpg' dengan gambar wisata Anda */
    height: 100vh; /* Tinggi penuh layar */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Warna teks putih untuk kontras */
    position: relative;
}

/* Overlay untuk kontras teks yang lebih baik */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Lapisan gelap 40% */
    z-index: 1;
}

.hero-content {
    z-index: 2; /* Pastikan konten ada di atas overlay */
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-content .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Tombol CTA */
.cta-button {
    display: inline-block;
    background-color: #FF5A5F; /* Warna yang menarik (merah muda/merah traveling) */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    font-size: 1.1em;
}

.cta-button:hover {
    background-color: #E04E53; /* Warna sedikit lebih gelap saat di-hover */
}

.trust-text {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}