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

body {
  font-family: "Cormorant Garamond", serif;
}

.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%
    ),
    /* Red glow */
    radial-gradient(
        circle at 12% 8%,
        rgba(255, 140, 140, 0.06) 0%,
        transparent 25%
      ),
    /* Crimson glow */
    radial-gradient(
        circle at 50% 45%,
        rgba(180, 20, 30, 0.08) 0%,
        transparent 40%
      ),
    /* Bottom glow */
    radial-gradient(
        circle at 50% 100%,
        rgba(180, 20, 30, 0.15) 0%,
        transparent 45%
      ),
    /* Main background */
    linear-gradient(
        180deg,
        #0d0404 0%,
        #180707 20%,
        #220a0a 40%,
        #2e0e0e 60%,
        #3a1111 80%,
        #4c1515 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: #d4a0a0;
  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;
}

.invitation {
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

.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, 235, 235, 0.9) 0%,
    rgba(252, 210, 210, 0.65) 35%,
    rgba(240, 195, 195, 0.45) 60%,
    #e8c0c0 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: #7a3535;
  font-weight: 500;
}

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

.name-wrapper {
  position: relative;
}

.heart-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 20, 40, 0.18) 0%,
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.bride-name,
.groom-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: #8b1515;
  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: #d42030;
}

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

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

.invite-message {
  margin-top: 15px;
  margin-bottom: 35px;
  text-align: center;
}

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

.invite-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: #9a6060;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

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

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

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

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

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

@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: #fde8e8;
}

/* ---------- 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: #993333;
}

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

.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: #8b1515;
  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 #f0d5d5;
  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, #d42030, #a01020);
  color: #fff;
  font-weight: 700;
  border: none;
  transform: scale(1.08);
  box-shadow:
    0 14px 28px rgba(180, 20, 30, 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: #8b1515;
  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: #8b1515;
  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: #8b1515;

  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(4, 1fr);
    gap: 10px;
    justify-items: stretch;
  }

  .time-box {
    width: 100%;
  }

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

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

  .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: 8px;
  }

  .flip-card {
    width: 100%;
    height: 95px;
    border-radius: 14px;
  }

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

  .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;
  }

  .timer {
    gap: 5px;
  }

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

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

/* ---------- 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(255, 180, 180, 0.18) 0%,
      transparent 40%
    ),
    linear-gradient(180deg, #fdf5f5 0%, #f9e8e8 30%, #f4dede 65%, #fdf7f7 100%);
}

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

.couple::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 170, 170, 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: #a84040;
}

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

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

.couple-photo {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.couple-photo img {
  width: 100%;
  height: 500px; /* Adjust as needed */
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* 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;
  }

  .couple-photo {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .couple-photo img {
    height: 350px;
  }
}

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

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

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

.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: #d8a0a0;
}

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

.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;
}

/*-------------------- 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;
  background:
    radial-gradient(
      circle at top left,
      rgba(200, 40, 40, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 185, 185, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fdf8f8 0%, #faf0f0 55%, #fffdfd 100%);
}
.location-section::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -250px;
  top: -250px;
  border-radius: 50%;
  background: rgba(200, 40, 40, 0.12);
  filter: blur(130px);
}

.location-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(255, 185, 185, 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(240, 210, 210, 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, 50, 50, 0.15);
}

.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: #a85555;
}

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

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

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

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

.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, #9b1515, #d04040);
  transition: 0.35s;
}

.location-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(180, 30, 30, 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, 50, 50, 0.15);
}

@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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background:
    radial-gradient(
      circle at top left,
      rgba(200, 40, 40, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 185, 185, 0.18),
      transparent 40%
    ),
    linear-gradient(180deg, #fffdfd, #fdf5f5, #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(240, 210, 210, 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: #a85555;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

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

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

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

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

.contact-box small {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 4px;
  color: #b06060;
  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: #9b1515;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

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

  .rsvp-card {
    max-width: 100%;
    padding: 45px 35px;
  }

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

  .contact-grid {
    gap: 20px;
  }

  .contact-box h4 {
    font-size: 28px;
  }

  .contact-box a {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .rsvp-section {
    padding: 70px 18px;
  }

  .rsvp-card {
    padding: 35px 25px;
    border-radius: 22px;
  }

  .rsvp-card h3 {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .rsvp-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .rsvp-divider {
    width: 80px;
    margin-bottom: 30px;
  }

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

  .contact-box {
    padding: 25px 20px;
  }

  .contact-box small {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .contact-box h4 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .contact-box a {
    font-size: 15px;
    word-break: break-word;
  }
}

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

  .rsvp-card {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .rsvp-card h3 {
    font-size: 10px;
    letter-spacing: 2px;
  }

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

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

  .contact-box h4 {
    font-size: 16px;
  }

  .contact-box a {
    font-size: 14px;
  }
}

/* ---------- SCROLL HINT ---------- */

.scroll-hint {
  position: fixed;
  bottom: 25%;
  right: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
  animation: swipeHint 2.4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint.hide {
  opacity: 0;
  animation: none;
}

.scroll-label {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: #ffffff;
  white-space: nowrap;
}

.hand-icon {
  width: 52px;
  height: 64px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

@keyframes swipeHint {
  0%   { transform: translateX(70px);               opacity: 0; }
  18%  { transform: translateX(0)  translateY(0);   opacity: 1; }
  45%  { transform: translateX(0)  translateY(0);   opacity: 1; }
  72%  { transform: translateX(0)  translateY(38px); opacity: 0.6; }
  88%  { transform: translateX(70px) translateY(38px); opacity: 0; }
  100% { transform: translateX(70px);               opacity: 0; }
}

/* ---------- FALLING PETALS ---------- */

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

.petal {
  position: absolute;
  opacity: 0;
  will-change: transform;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0% {
    transform: translateY(-8vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  25% {
    transform: translateY(25vh) translateX(var(--sx1)) rotate(90deg);
  }
  50% {
    transform: translateY(52vh) translateX(var(--sx2)) rotate(200deg);
  }
  75% {
    transform: translateY(76vh) translateX(var(--sx1)) rotate(300deg);
  }
  92% {
    opacity: 0.85;
  }
  100% {
    transform: translateY(112vh) translateX(var(--sx2)) rotate(420deg);
    opacity: 0;
  }
}

@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;
  }
}
