* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: sans-serif;
}

/* Gambar biasa */
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.centered-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Overlay section */
.overlay-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.overlay-content {
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  margin-top: 50px; /* video turun sedikit lebih jauh */
}

/* Video */
.video-promosi {
  width: 100%; /* ukuran video lebih kecil */
  max-width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Tombol katalog */
.catalog-link {
  text-align: center;
  padding: 40px 20px;
  background-color: #000000;
}
.catalog-link a {
  display: inline-block;
  background-color: #219150;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}
.catalog-link a:hover {
  background-color: #CE9F37;
}
.icon-img-small {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Slider */
.slider-container {
  position: relative;
  width: 90%;
  max-width: 600px;
  overflow: hidden;
  margin: 0 auto;
}
.slide-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.slide-image {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* Form Pemesanan */
.form-section {
  background-color: #000;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 24px;
  color: #222;
}

form label {
  display: block;
  margin-top: 20px;
  font-weight: 600;
  color: #333;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  width: 100%;
  background-color: #27ae60;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #219150;
}

/* Sosmed */
.social-footer {
  background: #eee;
  padding: 20px;
  text-align: center;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.icon-img {
  width: 32px;
}

.map-wrapper {
  padding: 40px 20px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-box {
  width: 100%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

.map-box h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 22px;
}

.map-box iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}
