* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  margin: auto;
}

/* HEADER */
.site-header {
  background: darkslateblue;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* NAVIGATION */
.navbar {
  background: #345;
  padding: 10px 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* SECTION */
section {
  padding: 40px 0;
}

.about-section,
.program-section,
.kontak-section {
  background: white;
  margin-bottom: 20px;
}

.program-list {
  list-style: inside square;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 200px;        /* 🔑 tinggi dipaksa sama */
  object-fit: contain;   /* 🔑 foto dipotong rapi tanpa gepeng */
  border-radius: 10px;
}

/*
.galeri-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.galeri-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
  */

/* BUTTON */
.btn {
  padding: 12px 24px;
  background: seagreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  padding: 15px;
  text-align: center;
  background: #2f2f3a;
  color: white;
}
