
@font-face {
  font-family: 'ChevaDisplay';
  src: url('../fontawesome/ChevadisplayRegular.woff2') format('woff2'),
       url('../fontawesome/ChevadisplayRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.popup-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 60px;
  width: auto;
  z-index: 10;
}

/* Ukuran tombol lebih kecil */

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.popup {
  background: url('../background_popup.png') center center / cover no-repeat;
  width: 100%;
  max-width: 900px;
  padding: 60px 40px;
  border-radius: 20px;
  position: relative;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}


.popup-highlight {
  display: inline-block;
  background-color: #fdd446; /* kuning mustard */
  color: #143b67; /* biru gelap */
  font-weight: bold;
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.popup h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  /* text-shadow: 2px 2px 6px #000; */
}

/* Tambahan styling khusus untuk teks SastraIndonesia.id */
.popup-sastra {
 font-family: 'ChevaDisplay', serif;
  font-size: 3.6rem;
  font-weight: normal;
  color: #f5f2f3; /* senada dengan bulu */
  letter-spacing: 0.3px;
    text-shadow: none;
  -webkit-text-stroke: 0px;
}

.popup .tombol-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}
.popup a {
 min-width: 200px;
  padding: 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
   padding: 14px 12px;
}


.popup-tombol-merah {
  background: linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
  color: white;
  text-shadow: 0 1px 0 #810e05;
}

.popup-tombol-hijau {
  background-color: #3CAEA3;
  color: white;
  border: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.popup-tombol-merah:hover {
  background-color: #9b2a59;
}
.popup-tombol-hijau:hover {
  background-color: #2b978f;
}

.btn-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: #a00;      /* merah tua */
  color: #fff;                 /* ikon putih */
  border: 2px solid #fff;      /* garis putih */
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.2s ease;
}

.btn-close:hover {
  background-color: #fff;
  color: #a00;
  border-color: #a00;
}

@media (min-width: 576px) {
  .popup .tombol-container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .popup h2 {
    font-size: 2rem; /* atau 1.8rem sesuai selera */
  }

  .popup h3 {
    font-size: 1.3rem;
  }

 .popup a {
    min-width: 100%;
    padding: 12px;
    font-size: 0.95rem;
  }

  .popup {
    padding: 40px 20px;
  }
  .popup-logo {
    top: 10px;
    left: 10px;
    height: 50px;
  }
}
