/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inria Serif', serif;
}

body {
  background: #f9f9f9;
}

/* Home di belakang */
.bg-home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* Overlay transparan blur */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

/* Popup box */
.popup {
  background: #fff;
  text-align: center;
  padding: 30px 25px;
  border-radius: 15px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  animation: zoomIn 0.6s ease-out;
}

.popup .logo {
  width: 100px;
  margin-bottom: 15px;
}

.popup h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.popup p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.popup button {
  background: #b48a4c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup button:hover {
  background: #926d38;
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.fade-out {
  animation: fadeOut 0.8s forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}
