/* Font & Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #2c3e50;
}

/* Header */
.header {
  text-align: center;
  padding: 30px 15px; /* awalnya 60px, dikurangi */
  background-color: #2ecc71;
  color: white;
}

.header h1 {
  font-size: 2.2rem; /* awalnya 3rem */
  margin-bottom: 0.3rem;
}

.header p {
  font-size: 1rem; /* awalnya 1.2rem */
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.6rem;
  }
  .header p {
    font-size: 0.95rem;
  }
}


/* Hero Slider */
.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* efek gelap */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white !important; /* dipaksa putih */
  padding: 1rem;
  box-sizing: border-box;
}


.hero-overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 0rem;
}

.hero-overlay p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .hero-overlay {
    padding: 1rem 1.2rem;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
  hero-overlay {
    color: white !important; /* tetap putih di mobile */
  }
}
.wa-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section {
  text-align: center;
  padding: 20px 20px;
  max-width: 880px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #2ecc71;
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1rem;
}
.features-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.feature-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #2ecc71;
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  .features-section {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }
}
.gallery-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 20px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-section h2 {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2rem;
  color: #2ecc71;
  margin-bottom: 30px;
}

.gallery-box {
  position: relative;
  width: 100%;
  padding-top: 50%; /* lebih ramping */
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.gallery-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

.gallery-box img.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-section {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .gallery-section h2 {
    font-size: 1.5rem;
  }
}
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* tetap sejajar */
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.form-card,
.info-card {
  width: 50%;
  background-color: #f9f9f9;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.form-card h3,
.info-card h3 {
  margin-bottom: 20px;
  color: #2ecc71;
  font-size: 1.3rem;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-card input,
.form-card textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
}

.form-card button {
  background-color: #2ecc71;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-card button:hover {
  background-color: #27ae60;
}

/* Responsive hanya untuk HP kecil */
@media (max-width: 600px) {
  .contact-section {
    flex-direction: column;
  }

  .form-card,
  .info-card {
    width: 100%;
  }
}
.site-footer {
  background-color: #111;
  color: #888;
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer .copyright {
  margin-bottom: 10px;
  color: #bbb;
}

.site-footer .seo-keywords {
  color: #666;
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
