:root {
  --cream: #f7eee4;
  --paper: #fffaf5;
  --ink: #23231f;
  --olive: #2f472c;
  --pink: #cf7f97;
  --gold: #f6be2f;
  --line: rgba(96, 74, 57, .16);
}
* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  justify-self: center;
}

/* Design System */

/* Typography */
h3{
  color: var(--Green-900, #11160D) !important;
  font-family: Hauora !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 24px !important; /* 133.333% */
  letter-spacing: 0.18px !important;
  margin-bottom: 0!important;
}

p{
  color: var(--Green-900, #11160D) !important;
  font-family: Hauora !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 22px !important; /* 137.5% */
  margin-bottom: 0!important;
}

p.strong{
  color: var(--Green-900, #11160D) !important;
  font-family: Hauora !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 22px !important; /* 137.5% */
  margin-bottom: 0!important;
}

p.small.strong{
  font-family: Hauora !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 800 !important;
  line-height: 20px !important; /* 142.857% */
}

p.small{
  font-family: Hauora !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 20px !important; /* 142.857% */
}

h4.button-label{
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  display: flex;
  padding: 0 6px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0 !important;
}

/* Button */
.btn.btn-primary{
  display: flex;
  width: fit-content;
  height: 44px;
  min-height: 40px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;

  border:none;
  border-radius: 999px;
  background: #324226;

  font-family: "hauora";
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  white-space: nowrap;
}

.btn.btn-primary .button-content{
  display: flex;
  align-items: center;
}

.btn.btn-primary .button-content p{
  color: #fefefe!important;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background: var(--Beige-15, #324226);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.38) inset, 0 45px 12px 8px rgba(17, 22, 13, 0.24) inset;
}

.btn.btn-primary .button-content:hover,
.btn.btn-primary .button-content:focus{
  transform: scale(0.95) !important;
}

.btn.btn-outline-secondary {
  display: flex;
  width: fit-content;
  height: 44px;
  min-width: 162px;
  min-height: 44px;
  padding: 0 20px !important;
  border-radius: 999px !important;

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

  border-radius: 8px;
  border: 1px solid var(--Green-700, #324226);
  background: var(--Beige-15, #fefefe);
  color: var(--Green-700, #11160D);

  font-family: "hauora";
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  white-space: nowrap;
}
.btn.btn-outline-secondary .button-content{
  display: flex;
  align-items: center;
}



.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus {
  background: var(--Beige-15, #FEFEFE);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.24) inset, 0 45px 12px 8px rgba(17, 22, 13, 0.16) inset;
  color: #324226;
}

.btn.btn-outline-secondary .button-content:hover,
.btn.btn-outline-secondary .button-content:focus{
  transform: scale(0.95) !important;
}


a{
  text-decoration: none;
}

/* End of Design System */

body {
  width: 390px;
  height: auto;
  margin: 0;
  background: #FAFBF9;
}
.invitation-shell {
  width: min(100%, 430px);
  margin-inline: auto;
  background: #FAF2EA;
  box-shadow: 0 0 40px rgba(0,0,0,.16);
}

.hero-section .scroll-down {
  position: absolute;
  left: 50%;
  top: 85%;
  z-index: 4;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  width: max-content;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 10px);

  transition:
    opacity 300ms ease,
    transform 300ms ease,
    visibility 300ms ease;

  text-shadow: 0px 2px  8px #000;
}

.hero-section .scroll-down.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hero-section .scroll-down.is-visible svg {
  animation: scrollDownFloat 1600ms ease-in-out infinite;
}

.hero-section .scroll-down.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
}

.hero-section .scroll-down .scroll {
  color: #fefefe;
  font-family: Hauora, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}



@keyframes scrollDownFloat {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section .scroll-down,
  .hero-section .scroll-down svg {
    animation: none;
    transition: none;
  }
}

.hero-section { 
  min-height: 820px;
 background: #FAF2EA; 
}

.hero-art, .closing-bg {
  width: 100%; height: 100%; object-fit: cover; display: block;
  image-rendering: auto;
}
.hero-art { position: absolute; inset: 0; }
/* .hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(9,31,14,.1), rgba(9,31,14,.03) 58%, rgba(9,31,14,.18)); } */

.hero-copy { z-index: 2; pointer-events: none; }
.hero-kicker { font-family: "Cormorant Garamond", serif; letter-spacing: .18em; font-size: .75rem; text-transform: uppercase; opacity: .75; }
.couple-name { font-family: "Great Vibes", cursive; font-size: clamp(4.3rem, 18vw, 6rem); line-height: .72; color: var(--gold); text-shadow: 0 2px 2px rgba(0,0,0,.25); }
.hero-date { color: var(--gold); font-size: .64rem; letter-spacing: .28em; }

.section-cut {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 4;

  width: 390px;
  height: 128px;

  background: url("../assets/Envelope.svg") center / 100% 100% no-repeat;

  pointer-events: none;
}

.content-section { 
  padding: 24px 16px 16px 16px; 
  position: relative; 
}

.section-pattern::after { 
  content: ""; 
  display:contents; 
  width: 72%; 
  height: 48px; 
  margin: 30px auto -22px; 
  opacity: .48; 
  background: linear-gradient(145deg, transparent 49.3%, #decfbe 50%, transparent 50.7%), linear-gradient(35deg, transparent 49.3%, #decfbe 50%, transparent 50.7%);
  background-size: 100% 100%; }

.container-narrow { 
  display: grid;
  gap:28px;
  width: min(100%, 390px); 
  margin-inline: auto; 
}
.section-title { 
  font-family: "Afrah", serif; 
  font-size: 36px; 
  line-height: 44px; 
  font-weight: 500; 
  -webkit-text-stroke: 0.33px black;
  margin-bottom: 0 !important;
}

.ornament { color: var(--pink); font-size: 1.4rem; line-height: 1; margin: 4px 0 -8px; position: relative; z-index: 2; }

.paper-card { 
  background: #FBFAF9; 
  border-radius: 16px; 
  box-shadow: 0 0 4px 4px rgba(43, 25, 8, 0.04);
  padding: 12px; 
  position: relative;
  border-top: 2px solid var(--Beige-15, #FEFEFE);
}
.ornament {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.ornament img {
  display: block;
  height: 48px;
  aspect-ratio: 1/1;
  width: auto;
}

.paper-card .content{
  display: grid;
  gap:20px;
  padding: 16px 12px 120px 16px;
  border-radius: 10px;
  border: 1px dashed var(--Green-100, #DDE2D9); 
}

.verse-card { 
  font-family: "Hauora", serif; 
  font-size: 16px;
  line-height: 22px; 
}

.arabic { 
  font-family: "Hauora"; 
  font-size: 16px; 
  line-height: 32px; 
  direction: rtl; 
  margin-bottom: 0;
}

.verse-ref { 
  font-family: "Hauora", sans-serif; 
  font-size: 14px;
  line-height: 20px; 
}

/* Lokasi Acara */
.lokasi-acara .paper-card{
  padding: 28px 16px 120px 16px;
}

.lokasi-acara .paper-card .lokasi-content{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  align-self: stretch;
}

.content-header .title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.content-header .title{
  display: flex;
  justify-content: flex-start;
  width:100%;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.content-header .subtitle{
  display: flex;
  padding: 0 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.venue-image{
  border-radius: 8px;
  border: 6px solid #FFF;

  box-shadow: 0 -1px 6px 4px rgba(17, 22, 13, 0.12);
  aspect-ratio: 16/9; 
  object-fit: cover;
}


.lokasi-acara .cta{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width:100%;
  align-self: stretch;
}

.venue-image .paperclip{
  position:absolute;
  z-index: 4;
  right:24px;
  top:84px;
}

/* Denah Acara */
/* .denah-acara.content .ornament{
  top: 11.75% !important;
} */

.denah-acara-content{
  display: flex;
  flex-direction: column;
}

.denah-acara .paper-card{
  padding: 28px 16px 120px 16px;
  width: 100%;
}

.denah-acara .paper-card-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.denah-acara .paper-card.sebelum-masuk{
  margin-top: -96px;
}

.denah-acara .floor-plan{
  border-radius: 8px;
  border: 1px solid var(--Green-100, #DDE2D9);
  overflow: hidden;
}

.denah-acara .card-title{
  padding: 0 4px;
  align-self: stretch;
}


.guide-list { 
  display: flex;
  padding: 4px 0;
  flex-direction: column;
  align-items: flex-start;

  border-radius: 8px;
  border: 1px solid var(--Green-100, #DDE2D9);
  background: var(--Beige-15, #FEFEFE);
}

.guide-item {
  display: flex;
  width: 322px;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
}

.guide-item .guide-item-content{ 
  display: flex; 
  grid-template-columns: 32px 1fr; 
  gap: 10px; 
  align-items: center;
  align-self: stretch;
  
}

.divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left:54px;
  align-self: stretch;
}

.divider svg {
  display: block;
  width: 100%;
  height: 1px;
}

.denah-acara .guide-item img{
  height: 32px;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

.guide-item .text{ 
  display: grid;
  gap: 2px;
}

.guide-item .text p.small.strong{
  color: #0C1D17 !important;
  font-weight: 600 !important;
}

.guide-item .text p.small{
  color: rgba(12, 29, 23, 0.62) !important;
}

/* Jadi Saksi Kami */
.jadi-saksi-kami .container-narrow{
  padding: 0;
}

.jadi-saksi-kami .paper-card{
  padding: 28px 0 120px 0;
    display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  align-self: stretch;
}

.jadi-saksi-kami .paper-card h3{
  display: flex;
  padding: 0 16px;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
}

.calendar-ornament { 
  margin-bottom: 0px; 
}

.date-strip { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--Green-100, #DDE2D9);
  border-bottom: 1px solid var(--Green-100, #DDE2D9);
  background: var(--Beige-15, #FEFEFE);
  overflow: hidden; 
}

.date-strip > div { 
  display: grid; 
  padding: 12px 0px; 
  aspect-ratio: 3/4;
  align-content: baseline; 
  border-right: 1px solid var(--Green-100, #DDE2D9);
}

.date-strip .selected-date{
  background: #EEF1EC;
}

.date-strip .selected-date img{
  height:200px;
  aspect-ratio: 1/1;
  top: 21px;
  left:75px;
  position:absolute;
  animation: love doodle drawing 2s;
    animation-fill-mode: forwards;
}

.date-strip p.day { 
  font-family: "Hauora" !important; 
  color: rgba(17, 22, 13, 0.62) !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 18px !important; 
  text-transform: uppercase !important;
}
.date-strip p.date { 
  font-family: "Hauora" !important;
  color: var(--Green-900, #11160D) !important;
  font-family: Hauora !important;
  font-size: 28px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 36px !important;  
}

.timeline{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.timeline-list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.timeline-row { 
  display: flex;
  width: 358px;
  padding: 8px 16px;
  align-items: flex-start;
  gap: 8px;
}

.timeline-row.disabled { 
  opacity: 0.5;
}

.timeline-dot { 
  width: 14px; 
  aspect-ratio: 1/1;
  background: #546E3F;
  border-radius: 50%; 
  margin-top: 3px;
}

/* RSVP */
.rsvp button{
  width: stretch !important;
}
.rsvp-frame { 
  aspect-ratio: 1/1.14;
  justify-self: center;
  padding: 15px 7px; 
  border-radius: 30% 20% 34% 18% / 12% 8% 16% 10%; 
  /* background: linear-gradient(95deg, #ea5a50 0 8%, transparent 8% 90%, #b76182 90%);  */
}

.rsvp-card { 
  display: flex;
  width: 326px;
  height: 326px;
  padding: 32px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  aspect-ratio: 1/1;

  border-radius: 16px;
  background: #FeFefe;
  box-shadow: 0 -1px 6px 4px rgba(0, 0, 0, 0.07);
}

.rsvp #rsvpForm{
  display: grid;
  gap: 40px;
}

.rsvp #rsvpForm,
.rsvp .rsvp-actions{
    width: stretch;
}

.rsvp #rsvpForm .input{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.rsvp .rsvp-actions{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.rsvp-card .rsvp-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

.form-control, .form-select { 
  display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch; 

  border: none;
  border-radius: 8px;
  background: rgba(17, 22, 13, 0.04); 
  
}

/* Text Input */
/* RSVP input */
.rsvp .form-control {
  color: var(--Green-900, #11160d);
}

.rsvp .form-control::placeholder {
  color: rgba(17, 22, 13, 0.50);
  opacity: 1;
}

.rsvp .form-control:focus {
  color: var(--Green-900, #11160D);
  background-color: #FEFEFE;
  border:1.5px solid #324226;
  box-shadow: none;
  outline: none;
}

/* Disabled buttons */
.rsvp .attendance-button:disabled,
.rsvp .attendance-button.disabled {
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}

.rsvp .btn-primary:disabled,
.rsvp .btn-primary.disabled {
  background-color: #DDE2D9;
  border: none;
  color: #fefefe;
}

.rsvp .btn-outline-secondary:disabled,
.rsvp .btn-outline-secondary.disabled {
  border-color: #DDE2D9;
  color: var(--Green-200, #BBC5B2);
}

/* Debug feedback */
.rsvp-frame,
#rsvpForm,
.rsvp-actions {
  width: 100%;
  min-width: 0;
}

.rsvp .form-control,
.rsvp .attendance-button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* RSVP animation stage */
.rsvp-stage {
  position: relative;
  width: 100%;
  height: 446px;
}

.rsvp-stack {
  position: absolute;
  left: 50%;
  bottom: -520px;

  width: calc(100% - 32px);
  max-width: 358px;
  height: 340px;

  opacity: 0;
  transform: translateX(-50%);

  transition:
    bottom 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease-out;

  will-change: bottom, opacity;
}

.rsvp-stack.is-entered {
  bottom: 56px;
  opacity: 1;
}

.rsvp-note,
.rsvp-card {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  border-radius: 16px;

  transform-origin: center;
}

.rsvp-note {
  transform: translate3d(0, 0, 0) rotate(0deg);

  transition:
    transform 750ms cubic-bezier(0.34, 1.56, 0.64, 1);

  will-change: transform;
}

.rsvp-note--left {
  z-index: 1;
  background: #546e3f;
  box-shadow: 0 -1px 6px 4px rgba(0, 0, 0, 0.07);
}

.rsvp-note--right {
  z-index: 2;
  background: #c37d92;
  box-shadow: 0 -1px 6px 4px rgba(0, 0, 0, 0.07);
}

.rsvp-card {
  z-index: 3;

  padding: 48px 24px;
  background: #fefefe;
  box-shadow: 0 8px 24px rgba(17, 22, 13, 0.12);

  transform: translate3d(0, 0, 0);

  transition:
    transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  will-change: transform;
}

.rsvp-stack.is-open .rsvp-note--left {
  transform: translate3d(-19px, 41px, 0) rotate(-7.5deg);
}

.rsvp-stack.is-open .rsvp-note--right {
  transform: translate3d(21px, -18px, 0) rotate(7.5deg);
}

.rsvp-stack.is-open .rsvp-card {
  transform: translate3d(0, -4px, 0);
}


/* RSVP form */
rsvp.content-section{
  padding-left: 0!important;
  padding-right:0!important;
}
.rsvp-card form {
  display: flex;
  flex-direction: column;
  gap: 48px;
  height: 100%;
}

.rsvp-card .input {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.name-field {
  position: relative;
  width: 100%;
}

.name-field .form-control {
  padding-right: 48px;
}

.char-counter {
  position: absolute;
  top: 50%;
  right: 16px;

  transform: translateY(-50%);

  color: rgba(17, 22, 13, 0.50);
  font-family: Hauora, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;

  pointer-events: none;
}

.rsvp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.rsvp-actions .attendance-button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

#rsvpFeedback {
  height: 0;
  margin-top: -12px;

  color: #e6644a !important;
  font-size: 12px !important;
  line-height: 18px !important;
}

#rsvpFeedback.text-sending {
  color: #324226 !important;
}


/* Submitted answer */
.rsvp .attendance-button.is-selected:disabled {
  display: flex;

  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: auto;
  padding: 16px 20px;

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

  border: 0;
  background: transparent;
  box-shadow: none;

  color: var(--Green-900, #11160d);
  opacity: 1;

  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;

  white-space: normal;
  overflow-wrap: anywhere;
  cursor: default;
}

.rsvp .attendance-button.is-selected.is-coming:disabled {
  color: #11160d;
}

.rsvp .attendance-button.is-selected.is-declined:disabled {
  color: #11160d;
  font-size: 18px;
}


/* Snackbar */
.rsvp-snackbar {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 9999;

  width: min(calc(100vw - 32px), 358px);
  min-height: 52px;
  padding: 14px 20px;

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

  border-radius: 12px;
  background: #324226;
  box-shadow: 0 8px 24px rgba(17, 22, 13, 0.2);

  color: #fefefe;
  font-family: Hauora, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translate(-50%, 16px);

  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms ease;
}

.rsvp-snackbar.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


/* Confetti */
.rsvp-confetti {
  position: fixed;
  top: 55%;
  left: 50%;
  z-index: 999;

  width: 585px;
  max-width: 100vw;
  height: auto;

  display: none;
  pointer-events: none;

  transform: translate(-50%, -50%);
}

.rsvp-confetti.is-visible {
  display: block;
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rsvp-stack {
    bottom: 56px;
    opacity: 1;
    transition: none;
  }

  .rsvp-note,
  .rsvp-card {
    transition: none;
  }

  .rsvp-note--left {
    transform: translate3d(-19px, 41px, 0) rotate(-7.5deg);
  }

  .rsvp-note--right {
    transform: translate3d(21px, -18px, 0) rotate(7.5deg);
  }

  .rsvp-card {
    transform: translate3d(0, -4px, 0);
  }
}

/* FAQ */
.faq{
background-color: #0A0D08;
}

.faq .content-section{
  background: #FAF2EA;
  overflow: hidden;
  border-radius: 0 0 24px 24px;

  isolation: isolate;
}

.faq .container-narrow{
  display: grid;
  gap: 16px;
}

.accordion.paper-card { 
  background: #FBFAF9; 
  border-radius: 16px; 
  box-shadow: 0 0 4px 4px rgba(43, 25, 8, 0.04);
  padding: 12px; 
  position: relative;
  border:none !important;
}

.accordion { 
  --bs-accordion-bg: transparent; 
  --bs-accordion-border-color: var(--line); 
  --bs-accordion-btn-focus-box-shadow: none;
}

.accordion-item{
  border:none;
  display: flex;
  width: 354px;
  padding: 4px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  border-radius: 16px;
  border-top: 2px solid #Fefefe;
  background: var(--Beige-30, #FBFAF9);
  box-shadow: 0 -1px 4px 2px rgba(0, 0, 0, 0.04);
}

.accordion-item.tail{
  margin-top: -120px;
  border-top: 2px solid #Fefefe;
}

.accordion-header,
.accordion-content,
.accordion-item{
  width:stretch;
}

.accordion-content{
  display: flex;
  padding-bottom: 120px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.accordion-collapse{
  width: stretch;
}

.accordion-button { 
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.accordion-body { 
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  border-top: 1px dashed var(--Green-100, #DDE2D9);
}
.accordion-button,
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--Green-700, #324226);
  box-shadow: none;
}

/* Closing */
.closing-section { 
  height: 100vh; 
  background: #0A0D08; 
}

.closing-section .taman-hijau{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.closing-section .video-box{
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  z-index: 4;
  padding: 16px 0;
  height: 100%;
}

.closing-section .video-box span.hashtag{
  color: #FeFeFe;
  text-align: center;
  font-family: Hauora;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px; /* 125% */
}

.closing-section span.copyright{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 0 0;
  align-self: stretch;

  color: #FeFefe;
  text-align: center;
  font-family: Hauora;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 150% */
}

.closing-section .video{
  display: flex;
  height: 328px;
  width: 100%;
  padding-left: 24px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

/* Countdown */
.countdown { 
  display: grid; 
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  }

.countdown-item {
  position: relative;
  background: none;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  width:64px;
}

.countdown-item:not(:last-child)::after {
  content: ":";
  width:8px;
  align-items: center;
  position: absolute;
  top: 22px;
  right: -7px;
  z-index: 4;

  font-size: 24px;
  line-height: 1;
  color: #fefefe;
}

.countdown-item strong, .countdown-item span { 
  display: block; 
}

.countdown-item strong { 
  font-family: "hauora"; 
  font-size: 32px;
  line-height:40px;
  color:#fefefe;
  font-weight: 500;
}
.countdown-item span { 
  font-size: 16px;
  line-height: 22px;
  text-transform: uppercase; 
  color:#fefefe;  
  font-weight: 300;
}


.reveal { 
  opacity: 0; 
  transform: translateY(18px); 
  transition: opacity 1s ease, transform 1s ease; }
.reveal.is-visible { opacity: 1; transform: none; }


/* @media (min-width: 431px) {
  body { padding: 24px 0; }
  .invitation-shell { border-radius: 24px; }
} */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
