.gallery-section {
  background-color: #000;
  color: #F0E68C;
  padding: 80px 20px;
  text-align: center;
}

.gallery-section h2 {
  font-size: 1.9em;
  margin-bottom: 15px;
}

.gallery-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.gallery-section {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
}

.gallery-grid a img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 2px solid #F0E68C;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid a img:hover {
  transform: scale(1.05);
}

.gallery-grid a img:active {
  transform: scale(0.9);
}

.gallery-section {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

.gallery-section {
  background-color: #000;
  color: #F0E68C;
  padding: 60px 20px;
  text-align: center;
}

.social-contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}

.social-contact-icons img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  filter: brightness(1);
}

.social-contact-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.3); /* animasi cerah sikit */
}

.about-images-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* supaya responsif di skrin kecil */
  margin-bottom: 15px;
}

.about-image-box img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.about-image-box img:hover {
  transform: scale(1.05);
}

/* ✅ Semua tajuk (h2) di semua section guna saiz sama */

h2 {
  font-size: 1.9em;
  color: #F0E68C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ✅ Font untuk H1 H2  */
body {
  font-family: 'Orbitron', sans-serif;
}

h1, h2, .logo-text {
  font-family: 'Orbitron', sans-serif;
}

/* ✅ Semua perenggan guna font ringkas biasa */

p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #F0E68C;
  margin-bottom: 1em;
}

.testimonial-header-image {
  margin: 15px 0 30px; /* jarak atas bawah */
}

.testimonial-header-image img {
  width: 300px;  /* Saiz sederhana */
  max-width: 90%;
  height: auto;
}
