:root {
  --blue: #8aa1dc;
  --bg: #0a0a0a;
  --shadow: 0 2px 2px rgb(0 0 0 / 0.5);
}

body {
  font-size: 1.2rem;
  font-family: "Work Sans", sans-serif;
  min-height: 5000px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Background tetap */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(img/bg_prewed4.png);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

/* FRAME UTAMA */
.hero-frame {
  position: relative;
  padding: 4rem 2.5rem;
  max-width: 420px;
  width: 100%;
  background: rgba(138, 161, 220, 0.55);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* GARIS BINGKAI */
.hero-frame::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 22px;
  pointer-events: none;
}

/* ORNAMEN ATAS BAWAH (opsional, tapi cakep) */
.hero-frame::after {

  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(138, 161, 220, 1);
  padding: 0 12px;
  color: white;
  font-size: 1.4rem;
}


.hero h1,
.hero h4,
.hero p,
.hero2 h1,
.hero2 h4,
.hero2 p{
  text-shadow: var(--shadow);
}

.hero h1,
.hero2 h1 {
  font-family: "PT Serif", serif;
  font-size: 3rem;
}
.hero h4,
.hero2 h4 {
  font-family: "Tangerine", cursive;
  font-size: 3rem;
}

.hero p
{
  font-size:18px;
  font-family: "PT Serif", serif;
}

.hero a {
  color: white;
  background-color: var(--blue);
  box-shadow: var(--shadow);
  border: 1px solid white;
  font-size: 12px; 
  font-family: "PT Serif", serif;

  padding: 0.6rem 1.6rem;   /* bikin proporsional */
  border-radius: 999px;     /* 🔥 kiri kanan bulet */
}


.hero a:hover {
  background-color: var(--blue);
  color: white;
}

.hero2 {
position: relative;
  background-image: url(img/bg_prewed4.png);
  background-size: cover;
  background-position: center;

  min-height: 100vh;            /* full tinggi layar */
  display: flex;                /* aktifkan flex */
  align-items: center;          /* tengah vertikal */
  justify-content: center;      /* tengah horizontal */

  padding: 4rem 1rem;           /* aman untuk mobile */
}

/* ukuran frame lebih kecil */
.hero-frame-small {
  position: relative;
  padding: 4rem 2.5rem;
  max-width: 420px;
  width: 100%;
  background: rgba(138, 161, 220, 0.55);
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

 
.hero2 p{
  font-size:20px;
  font-family: "PT Serif", serif;
  font-weight:bold;
}

.mynavbar {
  background-color: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(4px);
}

.mynavbar .offcanvas {
  height: 100vh;
}

.mynavbar .navbar-brand,
.mynavbar .offcanvas-title {
  font-family: "Sacramento", cursive;
  font-size: 3.2rem;
  font-weight: bold;
}

.mynavbar .nav-link {
  text-transform: uppercase;
}

.home {
  background-image: url(img/bg_prewed4.png);
  background-size: cover;
  min-height: 100vh;
  margin-top: -6rem;
  padding-top: 15rem;
  padding-bottom: 5rem;
}

.home-card {
  background: rgba(255, 255, 255, 0.88);
  padding: 4rem 3rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.doa {
  background-color: var(--blue);
  min-height: 100vh;
  margin-top: -6rem;
  padding-top: 15rem;
  padding-bottom: 5rem;
}

/* Card */
.doa-card {
  max-width: 680px;
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  color: black;

  /* Background pudar */
  background: linear-gradient(
      rgba(199, 197, 197, 0.253),
      rgba(216, 214, 214, 0.35)
    ),
    url("img/bg-doa.png") center / cover no-repeat;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Masjid (bukan icon, tidak pudar) */
.doa-masjid img {
  max-width: 300px;
  width: 100%;
  margin-bottom: 25px;
}

/* Content */
.doa-content h2 {
  font-family: "Tangerine", cursive;
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight:bold;
}

.doa-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: black;
   font-family: "Work Sans", sans-serif;
}

.doa-content span {
  display: block;
  margin-top: 18px;
  font-style: italic;
  font-weight: bold;
  color: black;
}

.gift-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  background: #fff;
  border-radius: 15px;
  padding: 0 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gift-box.show {
  max-height: 800px;
  opacity: 1;
  padding: 20px 15px;
}

.gift-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.gift-item img {
  width: 40px;
}

.gift-info {
  text-align: left;
  flex: 1;
}

/* Button utama gift */
.btn-gift {
  background-color: #8aa1dc;
  color: white;
  border: 1px solid white;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
}

.btn-gift:hover {
  background-color: #7b93d6;
  color: white;
}

/* Gift Box */
.gift-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  background: #fff;
  border-radius: 20px;
  padding: 0 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gift-box.show {
  max-height: 800px;
  opacity: 1;
  padding: 20px;
}

/* Item rekening */
.gift-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.gift-item img {
  width: 40px;
}

.gift-info {
  flex: 1;
  text-align: left;
}

.gift-item button,
.gift-address button {
  background-color: #8aa1dc;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* Toast notif */
.toast-copy {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9999;
}

.toast-copy.show {
  opacity: 1;
  bottom: 40px;
}


#rsvp {
  padding: 80px 0;
}

#rsvp-list {
  max-height: 400px;
  overflow-y: auto;
}

.rsvp-item {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.rsvp-item h6 {
  margin: 0;
  font-weight: 600;
}

.rsvp-status {
  font-size: 0.85rem;
  font-weight: 600;
}

.hadir {
  color: #2e7d32;
}

.tidak-hadir {
  color: #c62828;
}

.rsvp-item {
  display: flex;
  gap: 12px;
  background: #f7faff;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  animation: fadeUp 0.5s ease;
}

.rsvp-avatar {
  width: 45px;
  height: 45px;
  background: #4da3ff;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rsvp-content h6 {
  margin: 0;
}

.rsvp-status {
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 20px;
}

.rsvp-status.hadir {
  background: #d1e7dd;
  color: #0f5132;
}

.rsvp-status.tidak-hadir {
  background: #f8d7da;
  color: #842029;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.info h2,
.story h2,
.gallery h2,
.rsvp h2,
.gifts h2 {
  color: var(--blue);
   font-family: "Tangerine", cursive;
  font-size: 5rem;
  font-weight: bold;
}
.home h2, .story h2{
   color: var(--bg);
   font-family: "Tangerine", cursive;
  font-size: 4rem;
  font-weight: bold;
}

.home h3 {
  color: black;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  
   font-weight: bold;
}
.home h4 {
  color: black;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-family: "PT Serif", serif;
}

.home p {
  font-size: 1rem;
  color: black;
}

.home .couple {
  margin-top: 50px;
  position: relative;

}

.home .couple h3 {
  font-family: "Tangerine", cursive;
  font-size: 3.5rem;
   color: var(--bg);
  font-weight:bold;
}
.home .couple p {
  
  font-size: 1rem;
   color: var(--bg);
  
}

.home .couple img {
  width: 100%;
}

.home .heart {
  width: 50px;
  height: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

}

/* Ampersand pengganti heart di mobile */
/* Heart desktop */
.heart-desktop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Ampersand mobile */
.ampersand {
  font-family: "Tangerine", cursive;
  font-size: 6rem;
  color: var(--bg);
  line-height: 1;
  font-weight:bold;
}

.info-card {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(
      rgba(199, 197, 197, 0.253),
      rgba(216, 214, 214, 0.35)
    ),
    url("img/bg_prewed4.png") center / cover no-repeat;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
  
  color:black;
}

.location-icon-only i {
  font-size: 36px;
  color: black;
}

.info-card h4{
  font-family: "Tangerine", cursive;
  font-size: 3rem;
   color: var(--bg);
  font-weight:bold;
}
.info-card h6{
 
  font-size: 1.4rem;
   color: var(--bg);
  font-weight:500;
}
.btn-lokasi {
  border-radius: 20px;
  padding: 6px 22px;
  background-color: var(--blue);
  color: white;
  border:white;
}


/* Supaya sejajar cantik */


.wedding-icon {
  text-align: center;
}

.wedding-icon img {
  width: 80px;        /* ukuran desktop */
  max-width: 100%;
  opacity: 0.9;
}


.home .heart i {
 
  color: var(--blue);
  font-size: 1rem;
  
}

.home .img-fluid{
  background-color: var(--blue);
}
.info {
  background-color: var(--blue);
  color: white;
  padding-top: 10rem;
  padding-bottom: 8rem;
}
 .info h2{
  font-family: "Tangerine", cursive;
  font-size: 3.5rem;
   color: white;
  font-weight:bold;
 }

.info .alamat {
  font-size: 1.1rem;
}

.info .description {
  font-size: 1rem;
  font-weight: 300;
}

.info .card {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 1px solid #999;
}

.info .card-haeder {
  border-bottom: 1px solid #999;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.info .card-body {
  font-size: 1rem;
}

.info .card-footer {
  border-top: 1px solid #999;
  font-size: 0.9rem;
  font-weight: 300;
}

.story{
  background: linear-gradient(
      rgba(199, 197, 197, 0.253),
      rgba(216, 214, 214, 0.35)
    ),
    url("img/bg_prewed4.png") center / cover no-repeat;
}
.story,
.gallery,
.rsvp,
.gifts,
.doa {
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.story span,
.gallery span,
.gifts span {
  text-transform: uppercase;
  color: #666;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: block;
  margin-bottom: 1rem;
}

.story p,
.gallery p,
.rsvp p,
.gifts p {
  font-size: 1rem;
  font-weight: 300;
}

.timeline {
  list-style: none;
  padding: 1.4rem;
  margin-top: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  top: 0;
  bottom: 0;
  position: absolute;
  width: 1px;
  background-color: #ccc;
  left: 50%;
}

.timeline li {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline li ::before,
.timeline li::after {
  content: "";
  display: table;
}

.timeline li::after {
  clear: both;
}

.timeline li .timeline-image {
  width: 160px;
  height: 160px;
  background-color: #ccc;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.timeline li .timeline-panel {
  width: 40%;
  float: left;
  border: 1px solid #ccc;
  padding: 2rem;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
}

.timeline li .timeline-panel::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  top: 80px;
  right: -15px;
}

.timeline li .timeline-panel::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  top: 81px;
  right: -13px;
}

.timeline li.timeline-inverted .timeline-panel {
  float: right;
}

.timeline li.timeline-inverted .timeline-panel::before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline li.timeline-inverted .timeline-panel::after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -13px;
  right: auto;
}

.gallery {
  background-color: #f5f5f5;
}

.rsvp {
 background: linear-gradient(
      rgba(255, 251, 251, 0.815),
      rgba(255, 250, 250, 0.866)
    ),
    url("img/bg_prewed4.png") center / cover no-repeat;
}

/* RSVP CARD */
.rsvp-card {
  border-radius: 20px;
  background: rgba(138, 161, 220, 0.48);
}

/* LIST UCAPAN */
.rsvp-item {
  display: flex;
  gap: 15px;
  background: #f8f9fa;
  border-radius: 14px;
  padding: 15px;
  margin-bottom: 15px;
  animation: fadeUp 0.4s ease;
}

.rsvp-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rsvp-content h6 {
  margin: 0;
  font-weight: 600;
}

.rsvp-status {
  font-size: 0.85rem;
  display: inline-block;
  margin-top: 2px;
}

.rsvp-status.hadir {
  color: #198754;
}

.rsvp-status.tidak-hadir {
  color: #dc3545;
}

/* ANIMASI */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.rsvp h2 {
  font-size: 4.5rem;
  color: black;
}
.rsvp p {
  color: rgb(1, 0, 0);
}
.rsvp form label {
  color: black;
}

.rsvp button {
  background-color: var(--blue);
  color: black;
  border: 1px solid var(--blue);
}
.rsvp button:hover {
  background-color: white;
  color: var(--bg);
  border: 1px solid white;
}

footer {
  padding: 3rem;
  background-color: var(--blue);
  color: white;
}

footer a {
  color: var(--bg);
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: white;
}

footer li {
  list-style: none;
  display: inline;
  margin: 0.5rem;
}

.audio-icon-wrapper {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  position: fixed;
  bottom: 2.5rem;
  right: 2rem;
  cursor: pointer;
  color: white;
  opacity: 1;
  mix-blend-mode: difference;
  animation: putar 4s linear infinite;
  transform-origin: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
@keyframes putar {
  form {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.info-flower {
  display: flex;
  justify-content: center;
}

.info-flower img {
  width: 150px;
  max-width: 80%;
  opacity: 0.9;
}
.simply-countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.simply-countdown > .simply-section {
  background: white;
  border-radius: 16px;
  padding: 1.6rem;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.simply-countdown > .simply-section .simply-amount {
  font-size: 1 rem;
  font-weight: bold;
  color: var(--blue);
  line-height: 1;
}

.simply-countdown > .simply-section .simply-word {
  font-size: 0.6rem;
  color: #555;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Button Instagram - Biru Elegan */
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 6px 16px;
  font-size: 0.85rem;
  font-family: "PT Serif", serif;

  background-color: var(--blue);
  color: white;

  border: 2px solid white;
  border-radius: 999px;

  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  transition: all .3s ease;
}

.btn-ig i {
  font-size: 1rem;
}

/* Hover tetap elegan */
.btn-ig:hover {
  background-color: white;
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
}

/* Icon ikut berubah warna saat hover */
.btn-ig:hover i {
  color: var(--blue);
}


/* Media Query */
/* extraler */
@media (max-width: 1200px) {
  .home .heart {
    transform: translateY(-50%) translateY(45);
  }
}
/* laptop */
@media (max-width: 992px) {
  html {
    font-size: 75%;
  }
  /* .simply-countdown > .simply-section {
    padding: 40px;
    margin: 5px;
  } */
  .home .heart {
    display: none;
  }
  .timeline::before {
    left: 60px;
  }
  .timeline li .timeline-image {
    left: 15px;
    margin-left: 45px;
    top: 16px;
  }
  .timeline li .timeline-panel {
    width: calc((100%-200px));
    float: right;
  }
  .timeline li .timeline-panel::before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  .timeline li .timeline-panel::after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -13px;
    right: auto;
  }
}

/* Tablet */
@media (max-width: 768px) {
  html {
    font-size: 65%;
  }
  .simply-countdown {
    flex-wrap: nowrap;   /* 🔒 WAJIB */
     gap: 0.2rem;
    max-width: 100%;
  }

  .simply-countdown > .simply-section {
    min-width: 40px;
    padding: 0.2 rem;
    border-radius: 12px;
  }

  .simply-countdown > .simply-section .simply-amount {
    font-size: 2rem;
  }

  .simply-countdown > .simply-section .simply-word {
    font-size: 0.85rem;
  }

   .hero2 {
    padding: 6rem 1rem 4rem;
  }

  .hero-frame-small h1 {
    font-size: 2.6rem;
  }

  .hero-frame-small h4 {
    font-size: 2.4rem;
  }

  .hero-frame-small p {
    font-size: 1.4rem;
  }
  .mynavbar .nav-link {
    font-size: 2rem;
    text-align: center;
  }

  .sticky-top {
    overflow: hidden;
  }
  .timeline li .timeline-image {
    width: 140px;
    height: 140px;
  }

  .home {
    padding: 4rem 1rem;
  }

  .home-card {
    padding: 2.5rem 1.5rem;
  }

  .heart {
    position: relative;
    transform: none;
    left: auto;
  }

}

/* Mobile Phone */
@media (max-width: 576px) {
  html {
    font-size: 60%;
  }
 .simply-countdown {
    flex-wrap: nowrap;   /* 🔒 WAJIB */
     gap: 0.2rem;
    max-width: 100%;
  }

  .simply-countdown > .simply-section {
    min-width: 40px;
    padding: 0.2 rem;
    border-radius: 12px;
  }

  .simply-countdown > .simply-section .simply-amount {
    font-size: 1.6rem;
  }

  .simply-countdown > .simply-section .simply-word {
    font-size: 0.7rem;
  }
  .timeline li .timeline-image {
    width: 80px;
    height: 80px;
  }

  .timeline li .timeline-panel {
    width: 65%;
    transform: translateX(-20px);
  }

  .timeline li .timeline-panel::before {
    top: 30px;
  }

  .timeline li .timeline-panel::after {
    top: 31px;
  }
    .wedding-icon img {
    width: 60px;
}

.info-flower img {
    width: 100px;
}
.simply-countdown-info  {
    flex-wrap: nowrap;   /* 🔒 WAJIB */
     gap: 0.2rem;
    max-width: 100%;
}

.simply-countdown-info .simply-section {
    min-width: 40px;
    padding: 0.2 rem;
    border-radius: 12px;
}

  .simply-countdown-info .simply-amount {
    font-size: 18px;
  }
}

/* Scroll indicator di dalam hero2 */
.hero2 .scroll-indicator {
  position: relative;      /* ikut alur konten */
  margin-top: 1.8rem;      /* jarak dari tanggal */
  text-align: center;
  color: white;
  opacity: 0.8;
}

/* teks scroll */
.hero2 .scroll-indicator p {
  font-size: 0.7rem;
  margin-top: 0.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "PT Serif", serif;
}

/* bentuk mouse */
.hero2 .scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid white;
  border-radius: 20px;
  display: inline-block;
  position: relative;
}

/* animasi roda */
.hero2 .scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

.wedding-icon img {
  animation: floatRing 3s ease-in-out infinite;
}

@keyframes floatRing {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.ampersand {
  animation: floatAmp 2.5s ease-in-out infinite;
}

@keyframes floatAmp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


.info-countdown {
  display: flex;
  justify-content: center;
}

/* Countdown khusus INFO */
.simply-countdown-info {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Box */
.simply-countdown-info .simply-section {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 80px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Angka */
.simply-countdown-info .simply-amount {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a; /* biru elegan */
}

/* Label */
.simply-countdown-info .simply-word {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  margin-top: 2px;
}

.hero {
  position: relative;
  z-index: 5;
}
.scroll-indicator {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.8;
  animation: fadeUp 2s infinite;
}

.scroll-indicator p {
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 8px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}

@keyframes fadeUp {
  0% { opacity: .4; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
  100% { opacity: .4; transform: translateY(0); }
}
.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: white;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

