/* --- HERO SECTION STYLES --- */

/* Wrapper Utama Hero */
.hero-section {
    min-height: 100vh; /* Ketinggian penuh skrin */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Tetapan Latar Belakang Gambar */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Gradien Gelap untuk menonjolkan teks (Meningkatkan keterbacaan teks/SEO) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 25, 20, 0.9) 0%, rgba(14, 25, 20, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}

/* Tipografi */
.hero-subtitle {
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.hero-title {
    font-family: 'Playfair Display', serif; /* Font serif memberikan kesan mewah/resort */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.hero-desc {
    max-width: 550px;
    font-size: 1.1rem;
    font-weight: 300;
    color: #f8f9fa;
    line-height: 1.6;
}

.header-ic {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Butang WhatsApp (Hijau) */
.btn-wa-primary {
    background-color: #27814a; /* Warna hijau alam mengikut gambar */
    color: #ffffff !important;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-wa-primary:hover {
    background-color: #1c6136;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Butang Putih Pepejal (Lihat Tipe Kamar) */
.btn-white-solid {
    background-color: #ffffff;
    color: #333333 !important;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-white-solid:hover {
    background-color: #e2e6e9;
    transform: translateY(-2px);
}

/* Teks Fitur Bawah */
.feature-text {
    font-size: 0.85rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    display: block;
}

.hero-features {
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Garis pemisah nipis */
}

/* Bantuan Z-Index */
.z-index-1 { z-index: 1; }

/* --- RESPONSIF UNTUK MUDAH ALIH (MOBILE) --- */
@media (max-width: 997.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px; /* Menyediakan ruang untuk navbar yang fixed */
        padding-bottom: 40px;
    }

    .hero-overlay {
        /* Gradien dikurangkan sedikit di mobile supaya gambar lebih jelas */
        background: linear-gradient(180deg, rgba(14, 25, 20, 0.7) 0%, rgba(14, 25, 20, 0.8) 100%);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-wa-primary, .btn-white-solid {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
