* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d8a72 0%, #086b58 100%); /* Gradasi Hijau */
}

/* Container untuk gambar rumah */
.bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4; /* Agar teks tetap terbaca */
}

.house-overlay {
    width: 100%;
    height: 100%;
    /* Ganti URL di bawah dengan link gambar rumah elegan Anda */
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    animation: overfly 10s ease-in-out infinite alternate;
}

/* Animasi Overfly (Melayang Halus) */
@keyframes overfly {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.1) translateY(-20px);
    }
}

/* Konten Utama */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    
}

.content h1 span {
    color: #ffcc00; /* Warna kuning Cozy Group */
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Tombol */
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background-color: #00bfa5;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #0d8a72;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}