/* ===== Color Palette =====
   Pink BG:     #f8d3d0
   Coral:       #c75c5c
   Red:         #b94444
   Dark:        #3d3d3d
   White:       #ffffff
   Soft Pink:   #fce8e6
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #3d3d3d;
  background: #f8d3d0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Falling Petals ===== */
.petals-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -40px;
  opacity: 0;
  animation: petalFall linear forwards;
}

.petal svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
}

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(0deg) scale(1);
  }
  8% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.75;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateX(var(--drift)) rotate(var(--spin)) scale(0.5);
    top: 100vh;
  }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 211, 208, 0.9);
  backdrop-filter: blur(12px);
}

.nav ul {
  display: flex;
  justify-content: center;
  gap: 3rem;
  list-style: none;
  padding: 1.2rem 0;
}

.nav a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c75c5c;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 2px;
}

.nav a:hover {
  color: #b94444;
  border-bottom: 1px solid #b94444;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8d3d0;
  overflow: hidden;
  padding-top: 60px;
}

.botanical {
  position: absolute;
  opacity: 0.7;
}

.botanical-tl {
  top: 0;
  left: 0;
  width: clamp(150px, 22vw, 300px);
  height: auto;
}

.botanical-tr {
  top: 0;
  right: 0;
  width: clamp(150px, 22vw, 300px);
  height: auto;
}

.botanical-bl {
  bottom: 0;
  left: 0;
  width: clamp(120px, 18vw, 250px);
  height: auto;
}

.botanical-br {
  bottom: 0;
  right: 0;
  width: clamp(120px, 18vw, 250px);
  height: auto;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}

/* ===== Mini Timeline ===== */
.mini-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2.5rem auto 0;
  flex-wrap: wrap;
}

.mini-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.mini-year {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #c75c5c;
}

.mini-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: #3d3d3d;
  letter-spacing: 0.05em;
}

.mini-timeline-line {
  width: 40px;
  height: 1px;
  background: #c75c5c;
  opacity: 0.4;
  flex-shrink: 0;
}

.hero-slideshow {
  position: relative;
  width: clamp(320px, 70vw, 700px);
  border-radius: 8px;
  overflow: hidden;
  margin: 2.5rem auto 0;
  border: 5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-slideshow .slideshow-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-slideshow .slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hashtag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #c75c5c;
  margin-bottom: 2.5rem;
}

.hero-names {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #3d3d3d;
  line-height: 1.15;
}

.hero-names .amp {
  display: inline-block;
  font-style: italic;
  color: #c75c5c;
  margin: 0 0.15em;
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: #c75c5c;
  margin: 2rem auto;
}

.hero-date {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #c75c5c;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.hero-location {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c75c5c;
  margin-bottom: 3rem;
}

/* ===== Countdown ===== */
.countdown {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #c75c5c;
  line-height: 1;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #c75c5c;
  margin-top: 0.3rem;
}

/* ===== RSVP Button ===== */
.btn-rsvp {
  display: inline-block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #fff;
  background: #2d2d2d;
  padding: 1.3rem 5.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-rsvp:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* ===== Section Divider ===== */
.section-divider {
  text-align: center;
  padding: 1rem 0;
  background: #f8d3d0;
}

.divider-svg {
  width: clamp(200px, 40vw, 400px);
  height: auto;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 2rem;
  text-align: center;
  background: #f8d3d0;
}

.section-white {
  background: #fff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #c75c5c;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: #3d3d3d;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

.slide-prev {
  left: 10px;
}

.slide-next {
  right: 10px;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slide-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ===== Wedding Details ===== */
.section-details {
  padding: 5rem 2rem;
  text-align: center;
  background: #fff;
}

.details-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.detail-item {
  flex: 1;
  min-width: 220px;
  padding: 2.5rem 2rem;
}

.detail-icon {
  font-size: 1.8rem;
  color: #c75c5c;
  margin-bottom: 1rem;
}

.detail-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.8rem;
}

.detail-main {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #c75c5c;
  line-height: 1.4;
}

.venue-link {
  color: #c75c5c;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 92, 92, 0.3);
  transition: border-color 0.3s ease;
}

.venue-link:hover {
  border-bottom-color: #c75c5c;
}

.detail-sub {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3rem;
  letter-spacing: 0.1em;
}

.detail-divider {
  width: 1px;
  height: 80px;
  background: rgba(199, 92, 92, 0.25);
}

/* ===== Hotels ===== */
.hotels-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.hotel-card {
  text-align: left;
  background: #fce8e6;
  border-radius: 10px;
  padding: 2rem 2.2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-2px);
}

.hotel-featured {
  border: 1.5px solid #c75c5c;
  background: #fff;
}

.hotel-badge {
  display: inline-block;
  background: #c75c5c;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.hotel-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #3d3d3d;
  margin-bottom: 0.4rem;
}

.hotel-meta {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.hotel-distance {
  font-size: 0.78rem;
  color: #c75c5c;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.hotel-note {
  font-size: 0.8rem;
  color: #555;
  border-left: 2px solid #c75c5c;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  background: #fce8e6;
  border-radius: 0 4px 4px 0;
}

.hotel-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-view {
  display: inline-block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: #2d2d2d;
  padding: 0.6rem 1.8rem;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.btn-view:hover {
  background: #1a1a1a;
}

.btn-similar {
  display: inline-block;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c75c5c;
  border: 1px solid #c75c5c;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-similar:hover {
  background: #c75c5c;
  color: #fff;
}

/* ===== RSVP ===== */
#rsvp.section {
  padding: 3rem 2rem;
}

.rsvp-container {
  max-width: 520px;
  margin: 0 auto;
}

.rsvp-step {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rsvp-step-active {
  display: block;
  opacity: 1;
}

.rsvp-prompt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.rsvp-search-form {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.rsvp-input {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #ddd;
  border-radius: 3px;
  outline: none;
  width: 260px;
  transition: border-color 0.3s ease;
  color: #3d3d3d;
  background: #fff;
}

.rsvp-input:focus {
  border-color: #c75c5c;
}

.btn-rsvp-action {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: #2d2d2d;
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-rsvp-action:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.btn-rsvp-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.rsvp-error {
  color: #c75c5c;
  font-size: 0.82rem;
  margin-top: 1rem;
  min-height: 1.2em;
}

.rsvp-back {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #999;
  cursor: pointer;
  margin-top: 1.5rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.rsvp-back:hover {
  color: #c75c5c;
}

/* Household selection cards */
.rsvp-households {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rsvp-household-card {
  background: #fce8e6;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsvp-household-card:hover {
  border-color: #c75c5c;
  transform: translateY(-2px);
}

.rsvp-household-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #3d3d3d;
  margin-bottom: 0.2rem;
}

.rsvp-household-card p {
  font-size: 0.78rem;
  color: #999;
}

/* RSVP Form */
.rsvp-family-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #c75c5c;
  margin-bottom: 0.5rem;
}

.rsvp-update-note {
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Event wizard */
.rsvp-progress {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.rsvp-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199, 92, 92, 0.2);
  transition: all 0.3s ease;
}

.rsvp-progress-dot.active {
  background: #c75c5c;
  transform: scale(1.3);
}

.rsvp-progress-dot.done {
  background: #c75c5c;
  opacity: 0.5;
}

.rsvp-event-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #c75c5c;
  margin-bottom: 0.3rem;
}

.rsvp-step-counter {
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.rsvp-event-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
}

.rsvp-event-panel {
  animation: fadeIn 0.3s ease;
}

.rsvp-allergy-note {
  font-size: 0.82rem;
  color: #555;
  background: #fce8e6;
  border-left: 2px solid #c75c5c;
  padding: 0.8rem 1rem;
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}

.rsvp-members {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1rem 0;
}

.confirm-event-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1rem;
  color: #c75c5c;
  margin: 1rem 0 0.4rem;
}

.confirm-event-name:first-child {
  margin-top: 0;
}

.rsvp-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fce8e6;
  border-radius: 8px;
  flex-wrap: wrap;
}

.rsvp-member-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #3d3d3d;
}

.rsvp-toggle-group {
  display: flex;
  gap: 0;
  border-radius: 25px;
  overflow: hidden;
  border: 1.5px solid #ddd;
}

.rsvp-toggle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border: none;
  background: #fff;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsvp-toggle-yes.active {
  background: #c75c5c;
  color: #fff;
}

.rsvp-toggle-no.active {
  background: #2d2d2d;
  color: #fff;
}

.rsvp-message-wrap {
  margin: 1.2rem 0 1rem;
  text-align: left;
}

.rsvp-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 0.5rem;
}

.rsvp-textarea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #ddd;
  border-radius: 3px;
  outline: none;
  resize: vertical;
  color: #3d3d3d;
  transition: border-color 0.3s ease;
}

.rsvp-textarea:focus {
  border-color: #c75c5c;
}

/* Confirmation */
.rsvp-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c75c5c;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.rsvp-confirm-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 2rem;
  color: #c75c5c;
  margin-bottom: 0.5rem;
}

.rsvp-confirm-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.rsvp-confirm-summary {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.rsvp-confirm-summary p {
  font-size: 0.85rem;
  color: #555;
  padding: 0.3rem 0;
}

.rsvp-confirm-summary .attending-yes {
  color: #c75c5c;
}

.rsvp-confirm-summary .attending-no {
  color: #999;
}

.rsvp-confirm-date {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #c75c5c;
  margin-bottom: 1.5rem;
}

.rsvp-edit-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c75c5c;
  background: none;
  border: 1.5px solid #c75c5c;
  padding: 0.6rem 1.8rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsvp-edit-btn:hover {
  background: #c75c5c;
  color: #fff;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 680px;
  margin: 2rem auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(199, 92, 92, 0.2);
  padding: 2rem 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #c75c5c;
  margin-bottom: 0.6rem;
}

.faq-item p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.faq-item p + p {
  margin-top: 0.5rem;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 2rem;
  text-align: center;
  background: #2d2d2d;
  color: rgba(255,255,255,0.7);
}

.footer-names {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.footer-date {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
}

/* ===== Animations ===== */

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawIn {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes gentleSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

.hero-content .hashtag {
  animation: fadeUp 1s ease 0.2s both;
}

.hero-content .hero-names {
  animation: fadeUp 1s ease 0.5s both;
}

.hero-content .hero-divider {
  animation: fadeIn 1.2s ease 0.8s both;
}

.hero-content .hero-date {
  animation: fadeUp 1s ease 0.9s both;
}

.hero-content .hero-location {
  animation: fadeUp 1s ease 1.1s both;
}

.hero-content .countdown {
  animation: fadeUp 1s ease 1.3s both;
}

.hero-content .btn-rsvp {
  animation: fadeUp 1s ease 1.5s both;
}

.hero-content .hero-photo {
  animation: fadeUp 1.2s ease 1.7s both;
}

/* Botanical line art draw-in + sway */
.botanical path {
  stroke-dasharray: 1000;
  animation: drawIn 3s ease forwards;
}

.botanical-tl {
  animation: gentleSway 8s ease-in-out infinite;
  transform-origin: top left;
}

.botanical-tr {
  animation: gentleSway 8s ease-in-out 1s infinite;
  transform-origin: top right;
}

.botanical-bl {
  animation: gentleSway 7s ease-in-out 0.5s infinite;
  transform-origin: bottom left;
}

.botanical-br {
  animation: gentleSway 7s ease-in-out 1.5s infinite;
  transform-origin: bottom right;
}

/* Scroll reveal for sections */
.section,
.section-details,
.section-white {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible,
.section-details.visible,
.section-white.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered FAQ items */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered hotel cards */
.hotel-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hotel-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .nav ul {
    gap: 1rem;
    font-size: 0.6rem;
  }

  .countdown {
    gap: 1.2rem;
  }

  /* Timeline stacks vertically on mobile */
  .mini-timeline {
    flex-direction: column;
    gap: 0.5rem;
  }

  .mini-timeline-line {
    width: 1px;
    height: 20px;
  }

  /* Wedding details stack vertically */
  .details-grid {
    flex-direction: column;
    gap: 1rem;
  }

  .detail-divider {
    width: 40px;
    height: 1px;
  }

  .detail-item {
    padding: 1.5rem 1rem;
  }

  .hotel-card {
    padding: 1.5rem;
  }

  .botanical {
    opacity: 0.5;
  }

  .hero-slideshow {
    width: clamp(280px, 90vw, 500px);
  }

  .rsvp-member-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
