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

.landing-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;

  background:
    /* Moon glow */
    radial-gradient(
      circle at 78% 18%,
      rgba(255, 244, 220, 0.08) 0%,
      rgba(255, 230, 180, 0.03) 15%,
      transparent 28%
    ),
    /* Pink glow */
    radial-gradient(
        circle at 12% 8%,
        rgba(255, 180, 210, 0.06) 0%,
        transparent 25%
      ),
    /* Purple glow */
    radial-gradient(
        circle at 50% 45%,
        rgba(120, 70, 210, 0.08) 0%,
        transparent 40%
      ),
    /* Bottom glow */
    radial-gradient(
        circle at 50% 100%,
        rgba(120, 70, 210, 0.15) 0%,
        transparent 45%
      ),
    /* Main background */
    linear-gradient(
        180deg,
        #090411 0%,
        #12081f 20%,
        #1b0f2e 40%,
        #261543 60%,
        #321c56 80%,
        #41256c 100%
      );

  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Dark Edge Vignette */

.landing-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle,
    transparent 40%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

/* Sections */

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

/* Plane Animation */

@keyframes fly {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(var(--moveX), var(--moveY));
  }
}

@keyframes twinkle {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 0.9;
  }
}

/* Snow */

.snow-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.snow {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 255, 255, 0.5);

  will-change: transform;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Falling Animation */

@keyframes fall {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }

  25% {
    transform: translateY(25vh) translateX(15px) rotate(90deg);
  }

  50% {
    transform: translateY(50vh) translateX(-15px) rotate(180deg);
  }

  75% {
    transform: translateY(75vh) translateX(18px) rotate(270deg);
  }

  100% {
    transform: translateY(120vh) translateX(-18px) rotate(360deg);
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 5;
}

/* ---------------- Divider ---------------- */

.divider {
  width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 25px 0;
}

.divider span {
  flex: 1;
  height: 1px;
  background: rgba(212, 174, 87, 0.45);
}

.flowers {
  color: #ddb0bf;
  font-size: 18px;
  letter-spacing: 10px;
}

/* ---------------- Small Text ---------------- */

.invite-text {
  margin-top: 15px;
  margin-bottom: 35px;
  color: rgba(212, 174, 87, 0.75);
  font-size: 13px;
  letter-spacing: 8px;
  font-family: "Montserrat", sans-serif;
}

/* ---------------- Logo Circle ---------------- */

.logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

/* ---------------- Couple Name ---------------- */

.couple-name {
  font-family: "Cormorant Garamond", serif;
  color: #f7f0f2;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  margin-bottom: 45px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

/* ---------------- Button ---------------- */

.invite-btn {
  padding: 18px 55px;
  border-radius: 50px;
  border: 1px solid rgba(212, 174, 87, 0.55);
  background: transparent;
  color: #caa15b;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.35s;
}

.invite-btn:hover {
  background: rgba(212, 174, 87, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---------------- Responsive ---------------- */

@media (max-width: 768px) {
  .divider {
    width: 240px;
  }
  .invite-text {
    letter-spacing: 4px;
    font-size: 11px;
  }
  .logo {
    width: 135px;
  }
  .couple-name {
    font-size: 56px;
  }
  .invite-btn {
    padding: 16px 35px;
    letter-spacing: 3px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .couple-name {
    font-size: 36px;
  }
  .divider {
    width: 180px;
  }
  .initial-circle {
    width: 150px;
    height: 150px;
  }
  .logo {
    width: 110px;
  }
  .invite-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ---------------- VIDEO ---------------- */

#video-container {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#video-container.show {
  display: flex;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero.hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
}

.hidden {
  display: none;
}

/* ------------------------------------------ */

.welcome {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

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

  background: radial-gradient(
    circle at 50% 35%,
    rgba(255, 220, 235, 0.9) 0%,
    rgba(234, 204, 240, 0.65) 35%,
    rgba(212, 188, 232, 0.45) 60%,
    #d5c2e7 100%
  );
}

.content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 30px;
}

.flowers-top {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.flowers-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 600px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.family-details {
  text-align: center;
  margin-bottom: 35px;
}

.family-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: #8e7468;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.family-line span {
  color: #866b61;
  font-weight: 500;
}

.hero-content {
  text-align: center;
}

.name-wrapper {
  position: relative;
}

.bride-name,
.groom-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #8d1c7b;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 2px 2px rgba(255, 255, 255, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

.and-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 18px 0;
}

.and {
  font-family: "Pinyon Script", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: #ec3ea7;
}

.line {
  width: 70px;
  height: 1px;
  background: #ec3ea7;
}

.designation {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: #8c7a74;
  text-transform: uppercase;
}

.invite-text {
  margin-top: 15px;
}

.invite-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: #6d5555;
}

.date-section {
  text-align: center;
}

.day {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  font-weight: 400;
  color: #8b64c4;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(139, 100, 196, 0.15);
}

.date {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: #8b64c4;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(210, 170, 97, 0.15);
}

.venue {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #8b64c4;
}

.time {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #8b64c4;
}

@media (max-width: 1024px) {
  .content {
    max-width: 700px;
    padding: 40px 30px;
  }

  .flowers-top {
    width: 420px;
  }

  .flowers-bottom {
    width: 420px;
  }

  .bride-name,
  .groom-name {
    font-size: 3.5rem;
  }

  .family-line {
    font-size: 24px;
  }

  .day {
    font-size: 3.5rem;
  }

  .date {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .welcome {
    min-height: 100vh;
    padding: 70px 20px;
  }

  .content {
    padding: 20px;
  }

  .flowers-top {
    width: 180px;
    right: 0px;
    top: 0px;
    opacity: 0.95;
  }

  .flowers-bottom {
    width: 200px;
    left: 0px;
    bottom: 0px;
    opacity: 0.95;
  }

  .family-details {
    margin-bottom: 20px;
  }

  .family-line {
    font-size: 18px;
    line-height: 1.6;
  }

  .bride-name,
  .groom-name {
    font-size: 2.8rem;
    letter-spacing: 3px;
  }

  .and {
    font-size: 1.8rem;
  }

  .line {
    width: 45px;
  }

  .designation {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-top: 15px;
  }

  .invite-title {
    font-size: 1rem;
  }

  .day {
    font-size: 2.8rem;
    margin-top: 35px;
  }

  .date {
    font-size: 2.2rem;
  }

  .venue {
    font-size: 1.2rem;
  }

  .time {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .welcome {
    padding: 60px 15px;
  }

  .flowers-top {
    width: 140px;
    right: 0px;
    top: 0px;
  }

  .flowers-bottom {
    width: 150px;
    left: 0px;
    bottom: 0px;
  }

  .family-line {
    font-size: 15px;
  }

  .bride-name,
  .groom-name {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .and {
    font-size: 1.4rem;
  }

  .line {
    width: 30px;
  }

  .designation {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  .invite-title {
    font-size: 0.85rem;
  }

  .day {
    font-size: 2.1rem;
  }

  .date {
    font-size: 1.6rem;
  }

  .venue {
    font-size: 1rem;
  }

  .time {
    font-size: 0.85rem;
  }
}

/* ----------  COUNTDOWN SECTION ----------  */

.countdown {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #f9dff1;
}

/* ---------- HEADING ---------- */

.countdown-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
}

.countdown-header span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #a36a8d;
}

.title-line {
  width: 60px;
  height: 1px;
  background: #d6b8c8;
}

.countdown-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #2d2323;
  margin-bottom: 25px;
  text-align: center;
}

/* ---------- CALENDAR ---------- */

.calendar {
  width: 100%;
  max-width: 460px;
  margin-bottom: 70px;
}

/* Month */

.calendar-header {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  color: #8d1c7b;
  margin-bottom: 28px;
  font-weight: 600;
}

/* Week Days */

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.weekdays span {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: #554545;
}

/* Calendar Dates */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.calendar-grid span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #ead8e5;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #4d3f3f;
  transition: 0.35s ease;
}

/* Hover */

.calendar-grid span:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

/* Empty Cells */

.calendar-grid .empty {
  visibility: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Wedding Day */
.calendar-grid .selected {
  background: linear-gradient(180deg, #ec3ea7, #c71b88);
  color: #fff;
  font-weight: 700;
  border: none;
  transform: scale(1.08);
  box-shadow:
    0 14px 28px rgba(199, 27, 136, 0.35),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* ---------- TIMER ---------- */
.timer {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* TIMER BOX */

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* CALENDAR CARD */
.flip-card {
  width: 120px;
  height: 140px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 5px 12px rgba(0, 0, 0, 0.08),
    inset 0 2px 0 rgba(255, 255, 255, 0.9);

  transition: 0.3s;
}

.flip-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.18),
    0 10px 18px rgba(0, 0, 0, 0.08);
}

.flip-card::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 6px;
  border-radius: 50px;
  background: #d6d6d6;
}

.flip-card span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  color: #8d1c7b;
  transform-origin: top center;
  backface-visibility: hidden;
}

.time-box p {
  margin-top: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #8d1c7b;
  font-weight: 500;
}

.flip {
  animation: calendarFlip 0.55s ease-in-out;
}

@keyframes calendarFlip {
  0% {
    transform: rotateX(0deg);
  }

  25% {
    transform: rotateX(-45deg);
  }

  50% {
    transform: rotateX(-90deg);
  }

  51% {
    opacity: 0.4;
  }

  75% {
    transform: rotateX(45deg);
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

.flip-card:hover span {
  color: #8d1c7b;

  transition: 0.3s;
}

@media (max-width: 992px) {
  .countdown {
    padding: 70px 20px;
  }

  .countdown-title {
    font-size: 3.2rem;
  }

  .calendar {
    max-width: 420px;
  }

  .calendar-grid span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .timer {
    gap: 24px;
  }

  .flip-card {
    width: 110px;
    height: 130px;
  }

  .flip-card span {
    font-size: 4.5rem;
  }
}

@media (max-width: 768px) {
  .countdown {
    min-height: auto;
    padding: 60px 18px;
  }

  .countdown-header {
    gap: 10px;
  }

  .countdown-header span {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .title-line {
    width: 40px;
  }

  .countdown-title {
    font-size: 2.6rem;
    margin-bottom: 18px;
    text-align: center;
  }

  /* Calendar */

  .calendar {
    width: 100%;
    max-width: 360px;
    margin-bottom: 45px;
  }

  .calendar-header {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .weekdays {
    gap: 6px;
  }

  .weekdays span {
    font-size: 14px;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-grid span {
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 10px;
  }

  /* Timer */

  .timer {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .flip-card {
    width: 120px;
    height: 130px;
    border-radius: 18px;
  }

  .flip-card span {
    font-size: 4rem;
  }

  .flip-card::after {
    width: 28px;
    height: 5px;
  }

  .time-box p {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .countdown {
    padding: 50px 12px;
  }

  .countdown-title {
    font-size: 2rem;
  }

  .calendar {
    max-width: 100%;
  }

  .calendar-header {
    font-size: 1.5rem;
  }

  .weekdays span {
    font-size: 12px;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-grid span {
    width: 32px;
    height: 32px;
    font-size: 15px;
    border-radius: 8px;
  }

  .timer {
    gap: 16px;
  }

  .flip-card {
    width: 100px;
    height: 110px;
    border-radius: 16px;
  }

  .flip-card span {
    font-size: 3.2rem;
  }

  .flip-card::after {
    width: 22px;
    height: 4px;
    top: 8px;
  }

  .time-box p {
    margin-top: 10px;
    font-size: 10px;
    letter-spacing: 2px;
  }
}

@media (max-width: 360px) {
  .countdown-title {
    font-size: 1.8rem;
  }

  .calendar-grid span {
    width: 28px;
    height: 28px;

    font-size: 13px;
  }

  .flip-card {
    width: 90px;
    height: 100px;
  }

  .flip-card span {
    font-size: 2.8rem;
  }
}

/* ---------- THE COUPLE ----------*/

.couple {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top,
      rgba(255, 255, 255, 0.18) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(215, 180, 255, 0.18) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #f8f2fb 0%, #f2e6f7 30%, #ebe0f4 65%, #f9f4fb 100%);
}

.couple::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -250px;
  left: -250px;
  border-radius: 50%;
  background: rgba(160, 120, 220, 0.22);
  filter: blur(140px);
}

.couple::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 182, 220, 0.15);
  filter: blur(90px);
  bottom: -180px;
  right: -180px;
}

.couple-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  z-index: 2;
}

.couple-header span {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #b17694;
}

.couple-header .line {
  width: 70px;
  height: 1px;
  background: #dcb9ca;
}

/* Couple Names */
.couple h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: #342a2a;
  z-index: 2;
}

/* Photo */
.heart-photo {
  position: relative;
  width: fit-content;
  margin: auto;
}

.heart-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: #fff;
  border-radius: inherit;
  filter: blur(2px);
  z-index: -1;

  mask: url("./assets/couple-heart.png") center/contain no-repeat;
  -webkit-mask: url("./assets/couple-heart.png") center/contain no-repeat;
}

.heart-photo img {
  width: 700px;
  max-width: 100%;
  height: auto;
  display: block;

  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #fff)
    drop-shadow(0 0 12px #fff) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.18));
}

/* Quote */
.quote {
  max-width: 650px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.7;
  color: #695656;
  font-style: italic;
  z-index: 2;
}

@media (max-width: 768px) {
  .couple {
    padding: 70px 20px;
  }

  .couple h2 {
    font-size: 2.8rem;
  }

  .couple-photo img {
    width: 240px;
    height: 320px;
  }

  .quote {
    font-size: 1.4rem;
    max-width: 90%;
  }

  .section-title span {
    letter-spacing: 4px;
    font-size: 10px;
  }

  .section-title .line {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .couple h2 {
    font-size: 2.2rem;
  }

  .couple-photo img {
    width: 200px;
    height: 270px;
  }

  .quote {
    font-size: 1.2rem;
  }
}

/*---------- CEREMONY SECTION ----------*/
.ceremony-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      circle at top left,
      rgba(170, 120, 225, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 205, 225, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fcfbfd 0%, #f7f0fa 45%, #fffdfd 100%);
}

.ceremony-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -260px;
  top: -260px;
  border-radius: 50%;
  background: rgba(171, 123, 223, 0.18);
  filter: blur(130px);
}

.ceremony-section::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(255, 205, 230, 0.18);
  filter: blur(130px);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-title span {
  width: 70px;
  height: 1px;
  background: #dcb7d7;
}

.section-title p {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: #9b7291;
}

.section-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 500;
  color: #3b2929;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.section-description {
  max-width: 760px;
  margin-bottom: 60px;
  font-size: 22px;
  line-height: 1.8;
  color: #7b6565;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/*---------- Card ----------*/
.timeline {
  width: 100%;
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.timeline::before {
  display: none;
}

.timeline-item {
  display: block;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 22px;
  border: 1px solid rgba(235, 225, 235, 0.8);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.08),
    0 8px 25px rgba(175, 130, 180, 0.08);
  transition: 0.45s;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 90px rgba(175, 130, 180, 0.18);
}

/*---------- Image ----------*/
.ceremony-image {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  margin-bottom: 28px;
}

.ceremony-date {
  display: block;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b58b95;
}

.timeline-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 500;
  color: #372726;
  margin-bottom: 15px;
}

.timeline-content .time {
  display: block;
  margin-bottom: 22px;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 4px;
  color: #cf9a55;
}

.timeline-content p {
  max-width: 650px;
  margin: auto;
  font-size: 25px;
  line-height: 2;
  color: #7c6765;
}

.timeline-content:hover {
  transform: scale(1.02);
  transition: 0.5s;
}

@media (max-width: 1200px) {
  .timeline {
    max-width: 900px;
  }

  .section-heading {
    font-size: 4.5rem;
  }
}

@media (max-width: 992px) {
  .ceremony-section {
    padding: 90px 25px;
  }

  .section-heading {
    font-size: 4rem;
  }

  .section-description {
    font-size: 20px;
  }

  .timeline-content {
    padding: 18px;
  }

  .timeline-content h3 {
    font-size: 46px;
  }

  .timeline-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .ceremony-section {
    padding: 80px 18px;
    min-height: auto;
  }

  .section-title span {
    width: 40px;
  }

  .section-title p {
    letter-spacing: 4px;
    font-size: 11px;
  }

  .section-heading {
    font-size: 3rem;
    line-height: 1.2;
  }

  .section-description {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .timeline-content {
    padding: 16px;
    border-radius: 22px;
  }

  .ceremony-image {
    height: 300px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .ceremony-date {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .timeline-content h3 {
    font-size: 38px;
  }

  .timeline-content .time {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .timeline-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .ceremony-section {
    padding: 70px 15px;
  }

  .section-heading {
    font-size: 2.4rem;
  }

  .section-description {
    font-size: 15px;
  }

  .timeline-content {
    padding: 14px;
    border-radius: 18px;
  }

  .ceremony-image {
    height: 220px;
    border-radius: 16px;
  }

  .timeline-content h3 {
    font-size: 2rem;
  }

  .timeline-content .time {
    font-size: 16px;

    letter-spacing: 2px;
  }

  .timeline-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .ceremony-date {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

/*-------------------- LOCATION SECTION --------------------*/
.location-section {
  position: relative;
  overflow: hidden;
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(177, 135, 223, 0.15),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 208, 228, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fbf8fc 0%, #f6effb 55%, #fffdfd 100%);
}
.location-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -250px;
  top: -250px;
  border-radius: 50%;
  background: rgba(170, 130, 220, 0.15);
  filter: blur(130px);
}

.location-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(255, 210, 230, 0.18);
  filter: blur(120px);
}

/*----------------LOCATION WRAPPER---------------------*/
.location-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/*---------------- LOCATION CARD ---------------------*/
.location-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(235, 225, 235, 0.8);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(180, 145, 200, 0.16);
}

.location-item {
  text-align: center;
  margin-bottom: 18px;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-item small {
  display: block;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #b88b95;
}

.location-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #8d3b8d;
}

.location-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  color: #922f93;
}

.location-item p {
  font-size: 20px;
  line-height: 1.8;
  color: #675656;
}

.location-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: #efe2e7;
}

.location-btn {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 18px 20px;
  border-radius: 60px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #96278d, #c86daf);
  transition: 0.35s;
}

.location-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(190, 100, 170, 0.35);
}

/* ---------------------------- MAP ---------------------------- */

.location-map {
  min-height: 620px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: none;
  border-radius: 30px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.location-map iframe:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(180, 145, 200, 0.16);
}

@media (max-width: 992px) {
  .location-wrapper {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .location-map {
    order: 2;
    min-height: 420px;
  }

  .location-map iframe {
    min-height: 420px;
  }

  .location-card {
    order: 1;
    min-height: auto;
  }

  .location-item h3 {
    font-size: 42px;
  }

  .location-item h4 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .location-card {
    padding: 28px;
    border-radius: 24px;
  }

  .location-item h3 {
    font-size: 34px;
  }

  .location-item h4 {
    font-size: 28px;
  }

  .location-item p {
    font-size: 16px;
  }

  .location-map {
    min-height: 320px;
  }

  .location-map iframe {
    min-height: 320px;
    border-radius: 24px;
  }

  .location-btn {
    padding: 16px;
    font-size: 11px;
    letter-spacing: 2px;
  }
}

@media (max-width: 480px) {
  .location-card {
    padding: 20px;
  }

  .location-item small {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .location-item h3 {
    font-size: 28px;
  }

  .location-item h4 {
    font-size: 24px;
  }

  .location-item p {
    font-size: 15px;
    line-height: 1.7;
  }

  .location-map {
    min-height: 260px;
  }

  .location-map iframe {
    min-height: 260px;
    border-radius: 18px;
  }

  .location-btn {
    padding: 14px;
    font-size: 10px;
  }
}

/*---------------- RSVP ---------------------*/
.rsvp-section {
  padding: 120px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(190, 160, 255, 0.15),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 210, 230, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fffdfd, #f8f2fb, #fffefe);

  text-align: center;
  position: relative;
  overflow: hidden;
}

.rsvp-card {
  max-width: 760px;
  margin: 20px auto 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(235, 225, 235, 0.8);
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.rsvp-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 5px;
  color: #b88b95;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rsvp-card h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: #7d2c7d;
  font-weight: 400;
  margin-bottom: 35px;
}

.rsvp-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 45px;
  background: #e7d7e7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-box {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f0e3ee;
  transition: 0.35s;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(170, 130, 190, 0.15);
}

.contact-box small {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: #c28da4;
  font-family: "Montserrat", sans-serif;
}

.contact-box h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: #342524;
  margin-bottom: 10px;
}

.contact-box a {
  text-decoration: none;
  color: #9b3f92;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 768px) {
  .rsvp-card {
    padding: 35px 25px;
  }

  .rsvp-card h1 {
    font-size: 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 22px;
  }
}
