* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Quicksand", sans-serif;
  background: linear-gradient(to bottom right, #fefcea, #f1daff);
  color: #333;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  background: url("c93fe439-057c-4e10-bb20-074fd18b60a3.png") center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  color: white;
  z-index: 2;
  padding: 20px;
}
.hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: 5rem;
}
.hero h2 {
  font-size: 2rem;
}
.foto {
  margin-top: 1rem;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Konten */
.container {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
  background: #ffffffdd;
  border-radius: 20px;
  text-align: center;
}

/* Box Info */
.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}
.info {
  background: #ffe0f0;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(255, 105, 135, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.info:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(255, 105, 135, 0.4);
}
.info:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Jam Digital */
.clock-section {
  margin: 30px 0;
}
.petunjuk-jam {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
}
#clock {
  font-size: 2rem;
  background: #fff3cd;
  padding: 12px;
  border-radius: 12px;
  display: inline-block;
}

/* Lokasi */
.lokasi h3 {
  margin-top: 30px;
}
.alamat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin: 10px 0;
}
.alamat img {
  width: 24px;
}

/* WhatsApp Button */
.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 999;
}
.floating-wa a {
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.floating-wa a:hover {
  background: #1ebe5c;
}
.floating-wa img {
  width: 20px;
  margin-right: 8px;
}

/* Ornamen Bunga */
#bunga-container .flower {
  position: absolute;
  background: pink;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {
  iframe {
    width: 100% !important;
    height: 300px !important;
  }
}

/* Responsif */
@media (max-width: 600px) {
  .info-boxes {
    flex-direction: column;
  }
  .foto {
    width: 140px;
    height: 140px;
  }
  .hero h1 {
    font-size: 3rem;
  }
}
