/*
  Wedding Website Styles
  Theme: Romantic Garden Formal Filipino Wedding
*/

:root {
  --ivory: #FFF9C4; /* Butter Yellow */
  --sage: #B8D233; /* Lime Green */
  --rose: #FF4081; /* Main Pink */
  --gold: #FFD700; /* Bright Yellow */
  --forest: #1B5E20;
  --fiesta-orange: #FF9F1C;
  --fiesta-blue: #4A90E2;
  --fiesta-lavender: #A29BFE;
  --fiesta-magenta: #D63384;
  --fiesta-coral: #F08E98;
  --fiesta-lightblue: #98C1D9;
  --white: #FFFFFF;
  --text: #333333;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bg-pink { background-color: var(--rose); color: var(--white); }
.bg-pink h1, .bg-pink h2, .bg-pink h3, .bg-pink h4, .bg-pink .serif { color: var(--white); }

.bg-orange { background-color: var(--fiesta-orange); color: var(--white); }
.bg-orange h1, .bg-orange h2, .bg-orange h3, .bg-orange h4, .bg-orange .serif { color: var(--white); }
.text-pink { color: var(--rose); }
.text-orange { color: var(--fiesta-orange); }

.btn-pink {
  background-color: var(--rose);
  color: var(--white);
}
.btn-pink:hover {
  background-color: var(--fiesta-orange);
  transform: translateY(-3px);
}

.btn-orange {
  background-color: var(--fiesta-orange);
  color: var(--white);
}
.btn-orange:hover {
  background-color: var(--rose);
  transform: translateY(-3px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  font-weight: 400;
}

.italic {
  font-style: italic;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

/* Couple Photo Carousel */
.couple-section {
  padding: 4rem 0 2rem;
  background: var(--white);
}

.carousel {
  position: relative;
  max-width: 340px;
  margin: 0 auto 1.5rem;
}

.carousel-track {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  outline: 2px solid var(--fiesta-coral);
  outline-offset: 5px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.couple-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--fiesta-coral);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: var(--fiesta-coral);
}

.couple-caption {
  color: var(--fiesta-coral);
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--sage), var(--fiesta-lightblue), var(--fiesta-orange), var(--fiesta-coral), var(--gold), var(--fiesta-lavender), var(--fiesta-magenta), var(--fiesta-blue));
  margin: 1rem auto 0;
}

.bg-ivory { background-color: var(--ivory); }
.bg-sage { background-color: var(--sage); }
.bg-skyblue { background-color: var(--fiesta-lightblue); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.w-full { width: 100%; }
.max-w-md { max-width: 500px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Navigation */
.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--forest);
  font-weight: 700;
  z-index: 1002;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--forest);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hamburger Menu */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
  flex-direction: column;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--forest);
  transition: var(--transition);
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section — Split Layout */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 60px; /* offset for fixed nav */
}

/* Left panel: butter yellow text side */
.hero-text-panel {
  background-color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Right panel: video side */
.hero-video-panel {
  position: relative;
  overflow: hidden;
  background: #111;
  min-height: 400px;
}

.hero-video-panel iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;  /* maintain 16:9 over the panel */
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Remove the old video-background / video-fallback approach */
.video-background {
  display: none;
}

.hero-content {
  width: 100%;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
  margin-bottom: 0.5rem;
  color: var(--forest);
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--forest);
  opacity: 0.85;
  max-width: 380px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.hero-date {
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--forest);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.countdown-item span {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--forest);
}

.countdown-item label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest);
  opacity: 0.75;
}

/* Floral image accents */
.flower-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-flower-tl {
  top: -30px;
  left: -40px;
  width: 220px;
  opacity: 0.7;
}

.hero-flower-br {
  bottom: -30px;
  right: -40px;
  width: 200px;
  opacity: 0.65;
  transform: scaleX(-1) rotate(15deg);
}

/* Section divider floral accent */
.section-flower-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  overflow: hidden;
}

.flower-divider-img {
  position: relative;
  width: 120px;
  opacity: 0.55;
}

/* RSVP section accent flowers */
.rsvp-flower-accent {
  position: absolute;
  pointer-events: none;
  width: 200px;
  opacity: 0.6;
}

.rsvp-flower-left {
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.rsvp-flower-right {
  right: -30px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}

/* Route Map Section */
.route-map-section {
  padding: 5rem 0 4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.route-map-section .section-title {
  margin-bottom: 0.5rem;
}

.route-map-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: var(--forest);
  opacity: 0.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.route-map-wrapper {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.route-map-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}

/* Animated route path */
@keyframes drawRoute {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

@keyframes pinDrop {
  0%   { transform: translateY(-12px) scale(0.5); opacity: 0; }
  60%  { transform: translateY(3px) scale(1.15); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes pulsePing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.8); opacity: 0; }
}

.route-path-animated {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawRoute 2.8s ease-in-out 0.6s forwards;
}

.pin-church {
  animation: pinDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.pin-reception {
  animation: pinDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 3.6s both;
  opacity: 0;
}

.ping-church {
  transform-origin: 530px 355px;
  animation: pulsePing 2s ease-out 0.8s infinite;
}

.ping-reception {
  transform-origin: 175px 115px;
  animation: pulsePing 2s ease-out 4s infinite;
}

.route-map-legend {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot-church  { background: var(--rose); }
.legend-dot-reception { background: var(--forest); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary {
  background-color: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.8rem 1.5rem;
}

.btn-outline:hover {
  background-color: var(--gold);
  color: var(--white);
}

/* Cards & Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.card {
  background: var(--white);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--ivory);
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.location {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.time {
  margin-bottom: 2rem;
  font-style: italic;
}

/* Parents Section */
.parents-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.parents-group p {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.floral-divider {
  width: 1px;
  height: 100px;
  background: var(--gold);
  opacity: 0.3;
}

/* Sponsors Grid */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sponsors-grid span {
  font-size: 0.95rem;
  padding: 0.5rem;
}

/* Entourage */
.entourage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.entourage-group h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--fiesta-coral);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Attire Guide */
.attire-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.attire-card {
  text-align: center;
  flex: 1;
  max-width: 400px;
}

.attire-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.small {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.color-palette {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.swatch-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.swatch {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
}

.swatch-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  opacity: 0.7;
}

/* Gift Note */
.gift-note {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Unplugged */
.unplugged-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* RSVP Form */
.rsvp-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E0E0E0;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168, 187, 163, 0.2);
}

.name-status {
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.name-status-ok {
  color: var(--sage);
}

.name-status-err {
  color: var(--fiesta-coral);
}

.companion-fields {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.companion-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.companion-input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s;
}

.companion-input:focus {
  outline: none;
  border-color: var(--sage);
}

.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-group label {
  text-transform: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.form-note {
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
  opacity: 0.7;
}

/* Gallery QR Card */
.gallery-qr-card {
  display: inline-block;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.gallery-qr-img {
  width: 180px;
  height: 180px;
  margin-bottom: 0.75rem;
}

.gallery-qr-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.gallery-qr-btn {
  display: block;
  width: 100%;
}

/* Footer */
/* Gifts / QR Section */
#gifts .section-title {
  color: var(--gold);
}
.gifts-quote {
  max-width: 500px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.7;
}

.gifts-subtitle {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.qr-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.qr-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 320px;
  flex: 0 1 320px;
}

.qr-image {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.qr-account {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.qr-bank {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.qr-note {
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.5;
}

.footer {
  padding: 4rem 0;
  text-align: center;
  background: var(--ivory);
}

.footer h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.footer p {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.admin-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--sage);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.admin-link:hover {
  opacity: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1001;
    padding: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--forest);
  }

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

  .parents-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .floral-divider {
    width: 50px;
    height: 1px;
  }

  .attire-container {
    flex-direction: column;
    align-items: center;
  }

  /* Hero split layout: stack on mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }

  .hero-text-panel {
    padding: 3rem 1.5rem 2.5rem;
    order: 1;
  }

  .hero-video-panel {
    order: 2;
    min-height: 240px;
    height: 56vw; /* 16:9 for the full width video on mobile */
  }

  .hero-video-panel iframe {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
  }

  .hero-flower-tl {
    width: 130px;
    top: -20px;
    left: -20px;
  }

  .hero-flower-br {
    width: 110px;
    bottom: -15px;
    right: -20px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item span {
    font-size: 1.8rem;
  }

  /* Route map responsive */
  .route-map-section {
    padding: 3rem 0;
  }

  .route-map-legend {
    gap: 1.5rem;
  }

  /* RSVP accent flowers smaller on mobile */
  .rsvp-flower-left,
  .rsvp-flower-right {
    width: 100px;
    opacity: 0.4;
  }

  .section {
    padding: 4rem 0;
  }

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

  .rsvp-form {
    padding: 2rem;
  }

  .color-palette {
    gap: 0.75rem;
  }

  .swatch {
    width: 32px;
    height: 32px;
  }

  .swatch-label {
    font-size: 0.55rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }

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

  .qr-cards {
    gap: 1.5rem;
  }

  .qr-card {
    padding: 1.5rem;
    max-width: 280px;
  }

  .gifts-quote {
    font-size: 1rem;
  }

  .companion-input {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .countdown {
    gap: 0.75rem;
  }

  .countdown-item span {
    font-size: 1.5rem;
  }

  .countdown-item label {
    font-size: 0.6rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
  }

  .rsvp-form {
    padding: 1.5rem;
  }

  .route-map-wrapper {
    padding: 0 1rem;
  }

  .qr-card {
    padding: 1.25rem;
    max-width: 260px;
  }

  .qr-image {
    max-width: 220px;
  }

  .qr-account {
    font-size: 0.95rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .footer h3 {
    font-size: 1.5rem;
  }
}
