/* Reset dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Background full screen */
.coming-soon {
  position: relative;
  min-height: 100vh;
  background-image: url("background.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}


/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Konten utama */
.content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 24px;
  text-align: center;
}

/* Headline */
.content h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
}

/* Subtitle */
.subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  margin: 0 auto 28px;
  border-radius: 3px;
}

/* Note */
.note {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* Footer */
.footer {
  font-size: 0.8rem;
  opacity: 0.65;
}
/* Footer fixed di bawah */
.site-footer {
  position: absolute;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.65;
  z-index: 1;
}

/* Mobile */
@media (max-width: 480px) {
  .subtitle {
    font-size: 1rem;
  }
}
