/* 1. RESET & FONDASI DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth; /* Membuat efek scroll menu navigasi menjadi halus */
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* 2. HEADER & NAVIGASI */
header {
    background-color: #ffffff;
    padding: 20px 50px;
    display: flex; /* Ini adalah teknologi Flexbox */
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header a {
    text-decoration: none;
    color: #555;
    margin-left: 20px;
    font-weight: bold;
}

header a:hover {
    color: #000; /* Warna berubah saat mouse diarahkan */
}

/* 3. RUANG TAMU (HERO SECTION) */
#beranda {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#beranda h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* 4. PENGATURAN SPASI UNTUK SETIAP BAGIAN */
section {
    padding: 60px 50px;
}

h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* 5. DAFTAR HARGA */
#harga ul {
    list-style-type: none; /* Menghilangkan titik bawaan (bullet) */
}

#harga li {
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* 6. TOMBOL WHATSAPP (CALL TO ACTION) */
#kontak a {
    display: inline-block;
    background-color: #25D366; /* Warna Hijau khas WhatsApp */
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}

#kontak a:hover {
    background-color: #1ebe57; /* Hijau yang lebih gelap saat di-hover */
}

/* 7. FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* 8. PENGATURAN GALERI FOTO */
.kumpulan-foto {
    display: grid; /* Teknologi CSS Grid */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.kumpulan-foto img {
    width: 100%; /* Memaksa gambar mengikuti lebar wadahnya */
    height: 250px; /* Menyeragamkan tinggi gambar */
    object-fit: cover; /* Mencegah gambar menjadi gepeng/distorsi */
    border-radius: 8px; /* Memberi lengkungan di sudut gambar */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Memberi efek bayangan 3D */
    transition: transform 0.3s; /* Efek transisi saat di-hover */
}

.kumpulan-foto img:hover {
    transform: scale(1.05); /* Gambar akan sedikit membesar saat disentuh mouse */
}