* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

html,
body {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

#loadingCover {
  position: fixed;
  inset: 0;

  z-index: 1000;

  background: #000;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: opacity 1s ease;
}

.loading-content {
  text-align: center;

  color: #fffbea;
}

.loading-couple {
  font-family: "Great Vibes", cursive;

  font-size: 60px;

  letter-spacing: 4px;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
}

.loading-couple span {
  font-size: 28px;
}

/* loading line animation */

.loading-line {
  margin: 30px auto;

  width: 160px;
  height: 2px;

  background: rgba(255, 255, 255, 0.2);

  position: relative;

  overflow: hidden;
}

.loading-line::after {
  content: "";

  position: absolute;

  left: -40%;

  width: 40%;
  height: 100%;

  background: #fffbea;

  animation: loadingMove 1.5s infinite;
}

@keyframes loadingMove {
  from {
    left: -40%;
  }
  to {
    left: 100%;
  }
}

.loading-text {
  font-size: 14px;

  letter-spacing: 3px;

  opacity: 0.8;
}

.loading-credit {

  margin-top: 18px;

  font-size: 11px;

  letter-spacing: 2px;

  opacity: 0.65;

  color: #fffbea;

  font-style: italic;

}

/* OPEN INVITATION */
#cover {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: url("../assets/cover.webp") center/cover no-repeat;
  transition: transform 1s ease;
}

.cover-image {
  display: none;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.cover-overlay button {
  margin-top: 20px;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.hide-cover {
  transform: translateY(-100%);
}

.cover-couple {
  /* font-family: "Indie Flower"; */
  font-family: "Great Vibes";

  font-size: 62px;

  letter-spacing: 4px;

  text-align: center;

  color: #fffbea;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
}

.cover-couple span {
  font-size: 28px;
}

.cover-dear {
  margin-top: 30px;

  font-size: 14px;

  letter-spacing: 2px;

  color: #fffbea;
}

.cover-guest {
  margin-top: 6px;

  font-size: 22px;

  font-weight: 500;

  color: #fffbea;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
}

/* MAIN CONTENT */
#layout {
  width: 100%;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

#left-bg {
  display: none;
}

.photo-section {
  height: 100vh;
  background-size: cover;
  background-position: center;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-1 {
  background-image: url("../assets/section1.webp");
}
.section-2 {
  background-image: url("../assets/section2.webp");
}
.section-3 {
  background-image: url("../assets/section3.webp");
}
/* TEXT CENTER */
.center-text {
  text-align: center;
  max-width: 80%;
}

/* FIXED BACKGROUND SECTION */
.fixed-bg {
  background-attachment: fixed;
}

/* EFFECTS */
/* .typewriter span {
  border-right: 2px solid #fff;
  padding-right: 6px;
} */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 5s ease;
}

.fade-in.show {
  opacity: 1;
  transform: none;
}
/* ========================= */
/* GIFT SECTION MOBILE */
/* ========================= */

.gift-box {
  background: rgba(0, 0, 0, 0.6);
  width: 92%;
  max-width: 360px;

  padding: 20px;

  border-radius: 14px;

  margin-top: 20px;
}

/* ROW */

.gift-row {
  margin-bottom: 16px;
}

/* BANK */

.bank {
  color: #fffbea;

  font-size: 15px;

  font-weight: 600;
}

/* NAME */

.name {
  color: #fffbea;

  font-size: 13px;

  opacity: 0.9;

  margin-bottom: 6px;
}

/* REKENING */

.rekening {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;
}

/* NOMOR REKENING */

.rekening span {
  color: #fffbea;

  font-size: 14px;

  letter-spacing: 0.8px;
}

/* COPY BUTTON */
/* COPY BUTTON */

.copy-btn {
  border: none;

  background: rgba(255, 255, 255, 0.15);

  color: #fffbea;

  width: 34px;
  height: 34px;

  border-radius: 8px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;

  transition: all 0.25s ease;
}

/* HOVER */

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.35);

  transform: scale(1.05);
}

/* COPIED STATE */

.copy-btn.copied {
  background: #fffbea;

  color: black;

  transform: scale(1.08);
}
/* WISH */
.wish-box {
  width: 90%;
  max-width: 480px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 20px;
  border: none;
  margin-top: 10px;
}
/* GALLERY */
.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.photo-section {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* SECTION BACKGROUNDS */
.s1 {
  background-image: url("../assets/section1.webp");
}
.s2 {
  background-image: url("../assets/section2.webp");
  color: #fffbea;
}
.s3 {
  background-image: url("../assets/section3.webp");
}
.s32 {
  background-image: url("../assets/section32.webp");
}
.s4 {
  background-image: url("../assets/section4.webp");
}
.s5 {
  background-image: url("../assets/section5.webp");
}
.s6 {
  background-image: url("../assets/section6.webp");
}
.s7 {
  background-image: url("../assets/section7.webp");
}
.s8 {
  background-image: url("../assets/section8.webp");
}
.s9 {
  background-image: url("../assets/section9.webp");
}
.s10 {
  background-image: url("../assets/section10.webp");
}

.typewriter {
  font-family: "Great Vibes", cursive;
  color: #fffbea;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* 
.typewriter span {
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  padding-right: 6px;
  animation: blink 1s infinite;
} */

/* @keyframes blink {
  0%,
  50%,
  100% {
    border-color: rgba(255, 255, 255, 0.8);
  }
  25%,
  75% {
    border-color: transparent;
  }
} */

/* SECTION 1 CUSTOM POSITION */
.section-1-custom {
  position: relative;
}

/* LEFT BOTTOM TEXT */
.text-left-bottom {
  position: absolute;
  left: 30px;
  bottom: 340px;
  transform: rotate(-15deg);
  transform-origin: left bottom;
  text-align: left;
  max-width: 70%;
  font-size: 50px;
}
/* LEFT BOTTOM TEXT */
.text-left-bottom2 {
  position: absolute;
  left: 30px;
  bottom: 290px;
  transform: rotate(-15deg);
  transform-origin: left bottom;
  text-align: left;
  max-width: 70%;
  font-size: 50px;
}

/* RIGHT BOTTOM TEXT */
.text-right-bottom {
  position: absolute;
  right: 40px;
  bottom: 120px;
  transform: rotate(10deg);
  transform-origin: right bottom;
  text-align: right;
  max-width: 100%;
  font-size: 80px;
}

.s1 h2 {
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 36px;
}

/* SECTION 2*/
/* for font inside section 2 */
/* SECTION 2 BACKDROP */
.section-2-text {
  font-size: 20px;

  background: rgba(30, 29, 29, 0.515); /* putih bening */
  padding: 32px 28px;
  border-radius: 20px;

  /* color: #e6e6e6; teks jadi kontras */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* CENTERING */
.section-2-center-text {
  text-align: center;
  max-width: 80%;
}

.section-2-surah {
  font-size: 30px;
  display: block;
  margin-top: 16px;
}

/* =========================
   SECTION 3 – MOBILE
========================= */
.section-3-custom {
  position: relative;
  overflow: hidden;
}

/* THE BRIDE */
.section-3-custom .bride-title {
  position: absolute;
  top: 100px;
  left: -30px;
  font-size: 150px;
  transform: rotate(-20deg);
  transform-origin: left top;
}
.section-3-custom .bride-title2 {
  position: absolute;
  top: 200px;
  left: 20px;
  font-size: 150px;
  transform: rotate(-20deg);
  transform-origin: left top;
}

/* NAME */
.section-3-custom .bride-name {
  position: absolute;
  bottom: 550px;
  right: 20px;

  font-size: 28px;
  transform: rotate(10deg);
  transform-origin: right bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: right;
  max-width: 80%;
}
.section-3-custom .bride-born {
  position: absolute;
  bottom: 510px;
  right: 20px;

  font-size: 28px;
  transform: rotate(10deg);
  transform-origin: right bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: right;
  max-width: 80%;
}
.section-3-custom .bride-ig {
  position: absolute;
  bottom: 470px;
  right: 20px;

  font-size: 28px;
  transform: rotate(10deg);
  transform-origin: right bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: right;
  max-width: 80%;
}

/* =========================
   SECTION 3(2) – MOBILE
========================= */
.section-32-custom {
  position: relative;
  overflow: hidden;
}

/* THE GROOM */
.section-32-custom .groom-title {
  position: absolute;
  top: 50px;
  right: 20px;
  font-size: 150px;
  transform: rotate(15deg);
  transform-origin: right top;
}
.section-32-custom .groom-title2 {
  position: absolute;
  top: 160px;
  right: 20px;
  font-size: 150px;
  transform: rotate(15deg);
  transform-origin: right top;
}

/* NAME */
.section-32-custom .groom-name {
  position: absolute;
  bottom: 560px;
  left: 15px;

  font-size: 28px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transform: rotate(-10deg);
  transform-origin: left bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: left;
  max-width: 100%;
}
/* NAME */
.section-32-custom .groom-born {
  position: absolute;
  bottom: 520px;
  left: 15px;

  font-size: 28px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transform: rotate(-10deg);
  transform-origin: left bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: left;
  max-width: 100%;
}
/* NAME */
.section-32-custom .groom-ig {
  position: absolute;
  bottom: 480px;
  left: 15px;

  font-size: 28px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transform: rotate(-10deg);
  transform-origin: left bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: left;
  max-width: 100%;
}

/* =========================
   SECTION 4 – MOBILE
========================= */
.section-4-custom {
  position: relative;
  overflow: hidden;
}

.section-4-custom .groom-parent-s4 {
  position: absolute;
  top: 210px;
  right: 50px;

  font-size: 45px;
  transform: rotate(10deg);
  transform-origin: right top;

  text-align: center;
  max-width: 50%;
}
.section-4-custom .groom-parent-s4-2 {
  position: absolute;
  top: 270px;
  right: 15px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 25px;
  transform: rotate(10deg);
  transform-origin: right top;

  text-align: center;
  max-width: 50%;
}
.section-4-custom .groom-parent-s4-3 {
  position: absolute;
  top: 300px;
  right: 15px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 25px;
  transform: rotate(10deg);
  transform-origin: right top;

  text-align: center;
  max-width: 50%;
}

.section-4-custom .bride-parent-s4 {
  position: absolute;
  top: 290px;
  left: 0px;

  font-size: 45px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 50%;
}
.section-4-custom .bride-parent-s4-2 {
  position: absolute;
  top: 340px;
  left: 30px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 25px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 50%;
}
.section-4-custom .bride-parent-s4-3 {
  position: absolute;
  top: 370px;
  left: 15px;

  font-size: 25px;
  transform: rotate(-10deg);
  transform-origin: left top;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 50%;
}

/* =========================
   SECTION 5 – MOBILE
========================= */
.section-5-custom {
  position: relative;
  overflow: hidden;
}

.section-5-custom .title-s5 {
  position: absolute;
  top: 120px;
  left: 20px;

  font-size: 45px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 100%;
}
.section-5-custom .title-s5-2 {
  position: absolute;
  top: 170px;
  left: 15px;

  font-size: 90px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 100%;
}
.section-5-custom .title-s5-3 {
  position: absolute;
  top: 230px;
  right: 90px;

  font-size: 45px;
  transform: rotate(-10deg);
  transform-origin: right top;

  text-align: center;
  max-width: 100%;
}
.section-5-custom .subtitle-s5 {
  position: absolute;
  bottom: 150px;
  left: 55px;

  font-size: 45px;
  transform: rotate(-10deg);
  transform-origin: left bottom;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 100%;
}
.section-5-custom .subtitle-s5-2 {
  position: absolute;
  bottom: 80px;
  right: 10px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 30px;
  transform: rotate(-10deg);
  transform-origin: right bottom;

  text-align: center;
  max-width: 80%;
}

/* =========================
   SECTION 6 – MOBILE
========================= */
.section-6-custom {
  position: relative;
  overflow: hidden;
}

.section-6-custom .title-s6 {
  position: absolute;
  top: 120px;
  left: 150px;

  font-size: 35px;
  transform: rotate(-10deg);
  transform-origin: left top;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 100%;
}
.section-6-custom .title-s6-2 {
  position: absolute;
  top: 170px;
  left: 100px;

  font-size: 90px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 100%;
}
.section-6-custom .title-s6-3 {
  position: absolute;
  top: 250px;
  left: 80px;

  font-size: 90px;
  transform: rotate(-10deg);
  transform-origin: left top;

  text-align: center;
  max-width: 100%;
}
.section-6-custom .title-s6-4 {
  position: absolute;
  top: 340px;
  left: 70px;

  font-size: 35px;
  transform: rotate(-10deg);
  transform-origin: left top;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
  max-width: 100%;
}

/* Style tombol */
.btn-hover {
  background-color: #fffbea; /* Warna awal */
  color: rgb(31, 31, 31);
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease; /* Animasi halus */
  margin-top: 600px;
}

/* Efek hover */
.btn-hover:hover {
  background-color: #efde91; /* Warna saat hover */
  transform: scale(1.05); /* Membesar sedikit */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Bayangan */
}

/* =========================
   SECTION 7 – WEDDING GIFT
========================= */

.s7 {
  display: flex;
  flex-direction: column; /* bikin berbaris ke bawah */
  justify-content: center; /* tengah vertikal */
  align-items: center; /* tengah horizontal */
  text-align: center;
  gap: 24px; /* jarak antar elemen */
  padding: 40px 20px;
}

.s7 h1 {
  font-size: 56px;
  margin-bottom: 10px;
}

.s7 p {
  font-size: 26px;
  max-width: 320px;
  line-height: 1.6;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.s7 .gift-box {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .s7 h1 {
    font-size: 64px;
  }

  .s7 p {
    font-size: 18px;
    max-width: 360px;
  }
}

.s8 {
  display: flex;
  flex-direction: column; /* bikin berbaris ke bawah */
  justify-content: center; /* tengah vertikal */
  align-items: center; /* tengah horizontal */
  text-align: center;
  gap: 24px; /* jarak antar elemen */
  padding: 40px 20px;
}

.s8 h1 {
  font-size: 45px;
}

.s8 p {
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  font-size: 25px;
}
.btn-hover-s8 {
  background-color: #fffbea; /* Warna awal */
  color: rgb(31, 31, 31);
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease; /* Animasi halus */
  margin-top: 20px;
}

/* =========================
   SECTION 9 – MOBILE
========================= */
.section-9-custom {
  position: relative;
  overflow: hidden;
}

/* Thank you title */
.section-9-custom .thankyou-title {
  position: absolute;
  top: 100px;
  left: -30px;
  font-size: 150px;
  transform: rotate(-20deg);
  transform-origin: left top;
}
.section-9-custom .thankyou-title2 {
  position: absolute;
  top: 200px;
  left: 20px;
  font-size: 150px;
  transform: rotate(-20deg);
  transform-origin: left top;
}

/* GALLERY BACKGROUND */

.gallery-section {
  background-image: url("../assets/section-gallery.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */

.gallery-overlay {
  width: 92%;
  height: 92%;

  background: rgba(0, 0, 0, 0.5);

  border-radius: 16px;

  padding: 10px;
}

/* GRID */

.gallery-tiles {
  display: grid;

  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;

  gap: 6px;
}

/* FOTO */

.gallery-tiles img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 8px;
}

/* TILE */

.tile-big {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-vertical {
  grid-row: span 2;
}

.tile-horizontal {
  grid-column: span 2;
}
/* GALLERY SECTION 2 */
/* GALLERY SECTION 2 */

.gallery-section-2 {
  background-image: url("../assets/section-gallery2.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */

.gallery-section-2 .gallery-overlay {
  width: 92%;
  height: 92%;

  background: rgba(0, 0, 0, 0.5);

  border-radius: 16px;

  padding: 10px;
}

/* GRID (SAMA SEPERTI GALLERY1) */

.gallery-tiles-2 {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 110px;

  gap: 6px;
}

/* FOTO */

.gallery-tiles-2 img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 8px;
}

/* TILE */

.g2-big {
  grid-column: span 2;
  grid-row: span 2;
}

.g2-vertical {
  grid-row: span 2;
}

.g2-horizontal {
  grid-column: span 2;
}
/* Modal */
.gallery-modal {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.8);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 9999;
}

.gallery-modal img {
  max-width: 90%;
  max-height: 90%;

  object-fit: contain;
}

/* STORY SECTIONS */

.story-section,
.engagement-section {
  min-height: 100vh;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* BACKGROUND IMAGE */

.story-section {
  background-image: url("../assets/story-section.webp");
}

.engagement-section {
  background-image: url("../assets/engagement-section.webp");
}

/* TRANSPARENT BOX */

.story-box {
  max-width: 700px;

  background: rgba(0, 0, 0, 0.273);

  padding: 40px;

  border-radius: 18px;
  /* backdrop-filter: blur(6px); */
}

/* TITLE */

.story-box h1 {
  color: #fffbea;

  font-size: 42px;

  margin-bottom: 10px;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* SUBTITLE */

.story-box h2 {
  color: #fffbea;

  font-size: 22px;

  margin-bottom: 25px;

  opacity: 0.85;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* TEXT */

.story-box p {
  color: #fffbea;

  line-height: 1.8;

  margin-bottom: 16px;

  font-size: 16px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .story-box {
    padding: 25px;
  }

  .story-box h1 {
    font-size: 32px;
  }

  .story-box h2 {
    font-size: 18px;
  }

  .story-box p {
    font-size: 15px;
  }
}

/* ========================= */
/* SEND WISH MOBILE */
/* ========================= */

.s8 {
  height: 100dvh;

  padding: 20px;
}

/* SUBTITLE */

.wish-sub {
  font-size: 14px;

  padding: 0 10px;

  margin-bottom: 24px;
  color: #fffbea;

  text-align: center;
}

/* FORM */

.wish-box {
  width: 100%;
  max-width: 380px;
  padding-top: 200px;
  gap: 12px;
}

/* ATTEND BUTTON */

.attend-btn {
  font-size: 13px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #fffbea;

  background: transparent;

  color: #fffbea;

  cursor: pointer;

  transition: 0.25s;
}

.attend-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ACTIVE ATTENDANCE */

.attend-btn.active {
  background: #fffbea;
  color: black;
}

.wish-submit {
  flex: 1;

  padding: 12px;

  border-radius: 20px;

  border: 1px solid #fffbea;

  background: #fffbea;
  color: black;

  cursor: pointer;

  transition: 0.25s;
}

.wish-submit:hover {
  background: rgba(255, 255, 255, 0.15);
}
/* GUEST COUNTER */
.guest-counter {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 16px;

  color: #fffbea;

  font-size: 16px;
}

.guest-counter button {
  width: 30px;
  height: 30px;

  border-radius: 50%;

  border: 1px solid #fffbea;

  background: #fffbea;

  color: black;

  font-weight: 600;

  cursor: pointer;

  font-size: 18px;
}

/* TEXTAREA */

.wish-box textarea {
  min-height: 100px;
}

/* ========================= */
/* WISHLIST SECTION MOBILE */
/* ========================= */

.wishlist-section {
  height: 100vh;

  background-image: url("../assets/section-wishlist.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* OVERLAY */

.wishlist-overlay {
  width: 92%;
  height: 88%;

  background: rgba(0, 0, 0, 0.7);

  border-radius: 16px;

  padding: 24px;
}

/* TITLE */

.wishlist-overlay h1 {
  color: #fffbea;

  font-size: 24px;

  margin-bottom: 20px;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  text-align: center;
}

/* LIST */

.wish-list {
  flex: 1;

  overflow-y: auto;

  margin-top: 20px;
}
/* ITEM */

.wish-item {
  background: rgba(255, 255, 255, 0.08);

  padding: 16px;

  border-radius: 10px;

  margin-bottom: 14px;
}

/* NAME */

.wish-item b {
  color: #fffbea;

  font-size: 16px;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 4px;

  display: block;
}

/* MESSAGE */

.wish-item p {
  color: #fffbea;

  font-size: 14px;

  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  line-height: 1.5;

  opacity: 0.9;
}

.wish-list::-webkit-scrollbar {
  width: 6px;
}

.wish-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.video-section {
  height: 100vh;

  background-image: url("../assets/section-video.webp");
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* OVERLAY */

.video-overlay {
  width: 90%;
  max-width: 900px;
  margin-bottom: 300px;
  font-family: "Indie Flower"; /* biar kontras sama judul */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.65);

  padding: 40px;

  border-radius: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE */

.video-overlay h1 {
  color: #fffbea;

  margin-bottom: 24px;

  font-size: 24px;

  text-align: center;
}

/* VIDEO WRAPPER */

.video-wrapper {
  width: 100%;

  position: relative;

  padding-bottom: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;

  width: 100%;
  height: 100%;

  border: none;

  border-radius: 12px;
}
