* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* ================= NAVBAR ================= */
header {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #00b894;
    font-size: 24px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.menu a:hover {
    color: #00b894;
}

/* ================= HERO ================= */
.hero {
    height: 90vh;
    background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
}

.hero button {
    padding: 12px 25px;
    border: none;
    background: #00b894;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.hero button:hover {
    background: #019875;
}

/* ================= PROPERTY ================= */
.property {
    background: white;
    padding: 60px 20px;
}

.property h2 {
    text-align: center;
    margin-bottom: 30px;
}

.property-list {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.price {
    color: #00b894;
    font-weight: bold;
}

/* ================= LAYANAN ================= */
.layanan {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.layanan-box {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ================= GALERI ================= */
.galeri {
    padding: 60px 20px;
    background: white;
    text-align: center;
}

.galeri-list {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.galeri-list img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.galeri-list img:hover {
    transform: scale(1.05);
}

/* ================= KONTAK ================= */
.kontak {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.kontak form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kontak input,
.kontak textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.kontak button {
    padding: 10px;
    border: none;
    background: #00b894;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.kontak button:hover {
    background: #019875;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
}

/* ================= HAMBURGER MENU ================= */
.hamburger {
    display: none; /* sembunyi default di desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
}

/* responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px; /* sesuai tinggi navbar */
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        display: none; /* sembunyi default */
        border-radius: 5px;
        padding: 10px 0;
    }

    .menu.show {
        display: flex;
    }

    .menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu a {
        color: white;
    }
}


/* ================= WHATSAPP BUTTON ================= */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float img {
    width: 30px;
}

.whatsapp-float span {
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}
