/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Pink Love Beach Palette */
  --sand-light: #fff5f7;
  --sand: #ffe4e9;
  --ocean-light: #ffc9d9;
  --ocean: #ff85a8;
  --ocean-dark: #ff4d7d;
  --ocean-deeper: #d63865;
  --coral: #ff6b9d;
  --seafoam: #ffb3c6;
  --white: #ffffff;
  --text-dark: #4a2c3d;
  --text-light: #8b5a73;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--ocean-light) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ========================================
   PASSWORD PROTECTION OVERLAY
   ======================================== */

.password-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 133, 168, 0.95) 0%, rgba(255, 77, 125, 0.98) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(10px);
}

.password-overlay.hidden {
  display: none;
}

.password-modal {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.password-header h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ocean-deeper);
  margin-bottom: var(--spacing-sm);
}

.password-header p {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.password-form input {
  padding: 1rem;
  border: 2px solid var(--sand);
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  font-family: var(--font-sans);
  transition: border-color 0.3s ease;
}

.password-form input:focus {
  outline: none;
  border-color: var(--ocean);
}

.password-submit {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.password-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 125, 0.4);
}

.password-error {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: var(--spacing-xs);
}

.password-hint {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: var(--spacing-md);
  font-style: italic;
}

/* Main Content Hidden State */
.main-content.hidden {
  display: none;
}

/* ========================================
   ANIMATED WAVE BACKGROUND
   ======================================== */

.wave-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: -1;
  pointer-events: none;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* ========================================
   HERO SECTION - VIDEO BACKGROUND
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay for Readability - Subtle tint */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 200, 210, 0.25) 0%,
      rgba(180, 100, 130, 0.3) 50%,
      rgba(50, 30, 40, 0.55) 100%);
  z-index: -1;
}

/* Fallback Background if Video Doesn't Load */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffc9d9 0%, #ff85a8 50%, #ff4d7d 100%);
  z-index: -3;
}

/* Hero Card - White Floating Container (Compact) */
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 35px 45px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 8px 25px rgba(255, 77, 125, 0.15);
  max-width: 480px;
  width: 90%;
  z-index: 2;
  animation: cardSlideIn 1s ease-out;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Couple Names with Heart */
.couple-names-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.couple-names-card .name {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  color: var(--ocean-deeper);
  margin: 0;
  letter-spacing: 2px;
}

/* Animated Heart Symbol */
.heart-symbol {
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-symbol svg {
  width: 100%;
  height: 100%;
  fill: #ff4d7d;
  filter: drop-shadow(0 4px 8px rgba(255, 77, 125, 0.4));
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  15% {
    transform: scale(1.15);
  }

  30% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.1);
  }

  60% {
    transform: scale(1);
  }
}

/* Tagline */
.tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--coral);
  font-style: italic;
  margin: 15px 0 25px 0;
  letter-spacing: 1px;
}

/* Wedding Info Section */
.wedding-info-card {
  margin: 20px 0;
}

.info-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral), transparent);
  margin: 15px auto;
}

.date-display {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--ocean-deeper);
  margin: 10px 0;
  letter-spacing: 1px;
}

.venue-name {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-dark);
  margin: 8px 0;
  font-weight: 400;
}

.venue-location {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: var(--text-light);
  margin: 5px 0;
  font-weight: 300;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  padding: 15px 20px;
  border-radius: 15px;
  min-width: 70px;
  box-shadow: 0 8px 20px rgba(255, 77, 125, 0.3);
}

.countdown-number {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.countdown-separator {
  font-size: 2rem;
  color: var(--ocean-dark);
  font-weight: 300;
}

/* CTA Buttons Container */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

/* CTA Button on Card */
.cta-button-card {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 77, 125, 0.4);
  border: 2px solid transparent;
}

.cta-button-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 77, 125, 0.5);
}

/* Registry Button Variant */
.registry-btn {
  background: white;
  color: var(--coral);
  border: 2px solid var(--coral);
}

.registry-btn:hover {
  background: var(--coral);
  color: white;
  box-shadow: 0 12px 35px rgba(255, 77, 125, 0.3);
}

/* Calendar Button Variant */
.calendar-btn {
  background: white;
  color: var(--ocean-deeper);
  border: 2px solid var(--ocean-deeper);
  font-family: var(--font-sans);
  cursor: pointer;
}

.calendar-btn:hover {
  background: var(--ocean-deeper);
  color: white;
  box-shadow: 0 12px 35px rgba(214, 56, 101, 0.35);
}

/* Calendar Modal */
.calendar-modal {
  position: fixed;
  inset: 0;
  background: rgba(74, 44, 61, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}

.calendar-modal.hidden {
  display: none;
}

.calendar-modal-content {
  background: white;
  border-radius: 24px;
  padding: 32px 28px 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

.calendar-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.calendar-modal-close:hover {
  background: var(--sand);
  color: var(--ocean-deeper);
}

.calendar-modal-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ocean-deeper);
  margin-bottom: 4px;
}

.calendar-modal-sub {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.calendar-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--sand-light);
  border: 1px solid rgba(255, 133, 168, 0.2);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.calendar-option:hover {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 125, 0.3);
  border-color: transparent;
}

.cal-icon {
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  flex-shrink: 0;
}

.calendar-option:hover .cal-icon {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 480px) {
  .calendar-modal-content {
    padding: 28px 20px 22px;
    border-radius: 20px;
  }

  .calendar-option {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-indicator span {
  opacity: 0.8;
  text-transform: uppercase;
  font-weight: 300;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .hero-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .couple-names-card {
    flex-direction: column;
    gap: 10px;
  }

  .heart-symbol {
    width: 50px;
    height: 50px;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-item {
    padding: 12px 15px;
    min-width: 60px;
  }

  .countdown-separator {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .cta-button-card {
    padding: 13px 28px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    letter-spacing: 1.5px;
  }
}

.mouse::before {
  content: '';
  width: 6px;
  height: 10px;
  background: var(--ocean-dark);
  border-radius: 3px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 25px;
  }
}

/* ========================================
   FADE-IN ANIMATIONS
   ======================================== */

.fade-in {
  animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NOTICE SECTION
   ======================================== */

.notice-section {
  padding: var(--spacing-xl) 0;
  background: rgba(255, 255, 255, 0.9);
}

.notice-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe3e3 100%);
  border-left: 5px solid var(--coral);
  border-radius: 10px;
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notice-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
}

.notice-box h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: var(--spacing-md);
}

.notice-box p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin: var(--spacing-sm) 0;
  line-height: 1.8;
}

.notice-box .emphasis {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ocean-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.notice-box .sub-notice {
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

.notice-box .deadline-warning {
  background: linear-gradient(135deg, var(--ocean-dark) 0%, var(--ocean-deeper) 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-block;
  margin: var(--spacing-sm) 0;
}

.notice-box .warning-text {
  color: var(--ocean-deeper);
  font-weight: 500;
  font-style: normal;
}

.notice-box .contact-note {
  margin-top: var(--spacing-md);
  font-style: normal;
}

.notice-box .contact-note a {
  color: var(--ocean-dark);
  font-weight: 600;
}


/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  color: var(--ocean-deeper);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean), var(--coral));
  border-radius: 2px;
}

/* ========================================
   PHOTO GALLERY
   ======================================== */

.gallery-section {
  padding: var(--spacing-xl) 0;
  background: rgba(255, 255, 255, 0.95);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 77, 125, 0.3);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--white);
  padding: var(--spacing-md);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin: 0;
}

/* ========================================
   VENUE SECTION
   ======================================== */

.venue-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(255, 201, 217, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.venue-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: calc(var(--spacing-lg) * -1 + var(--spacing-sm));
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.venue-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 77, 125, 0.2);
}

.venue-image-wrapper {
  height: 250px;
  overflow: hidden;
}

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover .venue-img {
  transform: scale(1.1);
}

.venue-card-content {
  padding: var(--spacing-md);
}

.venue-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ocean-deeper);
  margin-bottom: var(--spacing-sm);
}

.venue-card-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.venue-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xs);
}

.venue-features li {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: var(--spacing-xs) 0;
}

/* Map Container */
.map-container {
  margin-top: var(--spacing-lg);
}

.map-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  text-align: center;
  color: var(--ocean-deeper);
  margin-bottom: var(--spacing-md);
}

.map-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 125, 0.4);
}

/* ========================================
   TRAVEL SECTION
   ======================================== */

.travel-section {
  padding: var(--spacing-xl) 0;
  background: rgba(255, 255, 255, 0.95);
}

.travel-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: calc(var(--spacing-lg) * -1 + var(--spacing-sm));
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.travel-card {
  background: var(--white);
  border-radius: 15px;
  padding: var(--spacing-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 77, 125, 0.15);
}

.travel-card.full-width {
  grid-column: 1 / -1;
}

.travel-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.travel-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ocean-deeper);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.airport-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.airport {
  padding: var(--spacing-sm);
  background: var(--sand-light);
  border-radius: 10px;
  border-left: 3px solid var(--ocean);
}

.airport h4 {
  color: var(--ocean-dark);
  margin-bottom: var(--spacing-xs);
}

.airport .distance {
  font-weight: 600;
  color: var(--coral);
  margin-bottom: var(--spacing-xs);
}

.airport p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.transport-list {
  list-style: none;
}

.transport-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--sand);
  color: var(--text-dark);
}

.transport-list li:last-child {
  border-bottom: none;
}

.transport-list strong {
  color: var(--ocean-dark);
}

.accommodation-info {
  text-align: center;
}

.accommodation-highlight {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.booking-box {
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 100%);
  padding: var(--spacing-md);
  border-radius: 15px;
  border: 2px dashed var(--ocean);
}

.booking-box p {
  margin: var(--spacing-xs) 0;
  color: var(--text-dark);
}

.booking-box a {
  color: var(--ocean-dark);
  font-weight: 600;
}

.booking-note {
  margin-top: var(--spacing-sm) !important;
  font-style: italic;
  color: var(--text-light) !important;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(255, 201, 217, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.faq-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: calc(var(--spacing-lg) * -1 + var(--spacing-sm));
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-category {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-xs);
}

.faq-category:first-child {
  margin-top: 0;
}

.faq-category-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ocean-deeper);
  padding: var(--spacing-xs) 0;
  border-bottom: 2px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-light);
  margin-top: var(--spacing-sm);
}


.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ocean-deeper);
  transition: background 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: var(--sand-light);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--ocean);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--spacing-md);
  background: var(--sand-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: var(--spacing-md);
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

.faq-answer ul {
  list-style: none;
  padding-left: var(--spacing-sm);
}

.faq-answer ul li {
  padding: var(--spacing-xs) 0;
  color: var(--text-dark);
}

.faq-answer a {
  color: var(--ocean-dark);
  font-weight: 500;
}

.color-avoid {
  background: linear-gradient(135deg, #87ceeb, #add8e6);
  padding: 2px 8px;
  border-radius: 4px;
  color: #333;
}

.color-avoid-white {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
  color: #333;
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: var(--coral);
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-align: center;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ========================================
   RSVP SECTION
   ======================================== */

.rsvp-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, rgba(255, 201, 217, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.rsvp-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-top: calc(var(--spacing-lg) * -1 + var(--spacing-sm));
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.rsvp-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--ocean-dark);
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--sand);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(70, 130, 180, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  margin-top: var(--spacing-xs);
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

.form-note a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
}

.form-note a:hover {
  text-decoration: underline;
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(70, 130, 180, 0.4);
  margin-top: var(--spacing-sm);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(70, 130, 180, 0.6);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: var(--spacing-md);
  padding: var(--spacing-sm);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--ocean-deeper);
  color: var(--white);
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.footer-content {
  margin-bottom: var(--spacing-md);
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: var(--spacing-xs);
}

.footer-date {
  font-size: 1.2rem;
  color: var(--seafoam);
  margin-bottom: var(--spacing-xs);
}

.footer-venue {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: var(--spacing-xs);
}

.footer-domain {
  font-size: 0.9rem;
  opacity: 0.7;
  font-style: italic;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
  }

  .notice-box {
    padding: var(--spacing-md);
  }

  .rsvp-form {
    padding: var(--spacing-md);
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 20px;
    padding: 10px 15px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
  }

  .travel-grid {
    grid-template-columns: 1fr;
  }

  .venue-features {
    grid-template-columns: 1fr;
  }

  .map-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }

  .couple-names h1 {
    font-size: 2rem;
  }

  .ampersand {
    font-size: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .password-modal {
    padding: var(--spacing-md);
  }

  .faq-question {
    font-size: 1rem;
    padding: var(--spacing-sm);
  }
}

/* ========================================
   LOADING SPINNER
   ======================================== */

.button-loader::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spinner 0.6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   SUCCESS ANIMATION OVERLAY
   ======================================== */

.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99998;
  animation: fadeInSuccess 0.5s ease;
}

.success-overlay.hidden {
  display: none;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-checkmark {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scaleIn 0.5s ease, pulse 2s infinite;
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.4);
  }

  50% {
    box-shadow: 0 10px 60px rgba(76, 175, 80, 0.6);
  }
}

.success-checkmark::after {
  content: "✓";
  font-size: 60px;
  color: white;
  animation: checkDraw 0.5s ease 0.3s forwards;
  opacity: 0;
}

@keyframes checkDraw {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-message {
  text-align: center;
  margin-top: 30px;
  animation: slideUpSuccess 0.5s ease 0.4s forwards;
  opacity: 0;
}

@keyframes slideUpSuccess {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--ocean-deeper);
  margin-bottom: 10px;
}

.success-message p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.success-message .email-note {
  font-size: 1rem;
  color: var(--ocean-dark);
  margin-top: 15px;
}

.success-close-btn {
  margin-top: 30px;
  padding: 12px 40px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideUpSuccess 0.5s ease 0.6s forwards;
  opacity: 0;
}

.success-close-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 77, 125, 0.4);
}

/* Confetti Animation */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall 3s ease-in-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ========================================
   COUNTDOWN CORNER (Top Right)
   ======================================== */

.countdown-corner {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  border: 1px solid rgba(255, 133, 168, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-corner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 77, 125, 0.25);
}

.countdown-corner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.countdown-corner-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-deeper);
  line-height: 1;
}

.countdown-corner-label {
  font-size: 0.6rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.countdown-corner-sep {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ocean);
  margin-top: -8px;
}

@media (max-width: 600px) {
  .countdown-corner {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    gap: 5px;
  }

  .countdown-corner-item {
    min-width: 32px;
  }

  .countdown-corner-number {
    font-size: 1rem;
  }

  .countdown-corner-label {
    font-size: 0.5rem;
  }

  .countdown-corner-sep {
    font-size: 1rem;
  }
}

/* ========================================
   VENUE SPOTLIGHT
   ======================================== */

.venue-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.spotlight-content {
  background: linear-gradient(135deg, var(--white) 0%, var(--sand-light) 100%);
  border-radius: 20px;
  padding: var(--spacing-md);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 133, 168, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(255, 77, 125, 0.15);
}

.spotlight-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ocean-deeper);
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotlight-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: var(--spacing-xs);
  font-style: italic;
}

.spotlight-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

.spotlight-text strong {
  color: var(--ocean-dark);
  font-weight: 600;
}

@media (max-width: 768px) {
  .venue-spotlight {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PLUS ONE FIELD
   ======================================== */

.plus-one-field {
  background: var(--sand-light);
  border-radius: 12px;
  padding: var(--spacing-md);
  border: 2px dashed var(--ocean);
}

.plus-one-field label {
  color: var(--ocean-deeper);
  font-weight: 600;
}

/* ========================================
   SPECIAL REQUEST TOGGLE
   ======================================== */

.special-request-group {
  margin-top: var(--spacing-sm);
}

.special-request-toggle {
  padding: var(--spacing-sm);
  background: linear-gradient(135deg, #fff5f7 0%, #ffe3e3 100%);
  border-radius: 12px;
  border: 1px solid var(--sand);
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-dark);
}

.toggle-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--ocean-dark);
  cursor: pointer;
}

.toggle-text {
  flex: 1;
}

.special-request-details {
  background: linear-gradient(135deg, #fff0e6 0%, #ffe6e6 100%);
  border-radius: 12px;
  padding: var(--spacing-md);
  border: 2px solid var(--coral);
}

.special-request-details label {
  color: var(--ocean-deeper);
  font-weight: 600;
}

/* ========================================
   SPECIAL REQUEST NOTIFICATION
   ======================================== */

.special-request-notification {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.special-request-notification.show {
  opacity: 1;
  visibility: visible;
}

.special-notification-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.special-request-notification.show .special-notification-content {
  transform: scale(1);
}

.special-notification-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: bounce 0.6s ease infinite;
}

.special-notification-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--ocean-deeper);
  margin-bottom: 15px;
}

.special-notification-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.special-notification-close {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.special-notification-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 125, 0.4);
}

/* ========================================
   SLIDE DOWN ANIMATION
   ======================================== */

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   STICKY NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 133, 168, 0.15);
  transition: transform 0.3s ease;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coral);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--coral);
  background: rgba(255, 77, 125, 0.08);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%);
  color: white;
  font-weight: 600;
}

.nav-link.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(70, 130, 180, 0.4);
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2.5px;
  background: var(--ocean-deeper);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Move countdown corner below navbar */
.countdown-corner {
  top: 72px !important;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .countdown-corner {
    top: 68px !important;
    right: 10px !important;
    padding: 8px 12px !important;
  }
}

/* ========================================
   OUR STORY — CONDENSED PHOTO GRID
   ======================================== */

.story-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.story-subtitle {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: -20px;
  margin-bottom: var(--spacing-lg);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 133, 168, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(255, 77, 125, 0.18);
}

.story-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-light);
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-card:hover .story-img-wrapper img {
  transform: scale(1.06);
}

.story-card figcaption {
  padding: 16px 18px 20px;
  text-align: center;
}

.story-date {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--ocean) 100%);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ocean-deeper);
  margin-bottom: 4px;
  line-height: 1.3;
}

.story-card p {
  color: var(--text-light);
  line-height: 1.55;
  font-size: 0.9rem;
  margin: 0;
}

/* Final highlighted card — replaces the photo with a heart */
.story-card-final {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe3e3 100%);
  border: 2px solid rgba(255, 77, 125, 0.25);
  position: relative;
}

.story-card-final::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 133, 168, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.story-final-inner {
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 100%;
  position: relative;
}

.story-final-heart {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

.story-final-heart svg {
  width: 100%;
  height: 100%;
  fill: var(--ocean-dark);
  filter: drop-shadow(0 4px 8px rgba(255, 77, 125, 0.4));
}

.story-card-final h3 {
  font-size: 1.5rem;
  color: var(--coral);
  margin-bottom: 6px;
}

.story-card-final p {
  color: var(--text-dark);
}

/* Tablet */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 540px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .story-card figcaption {
    padding: 12px 12px 16px;
  }

  .story-card h3 {
    font-size: 1.05rem;
  }

  .story-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .story-date {
    font-size: 0.62rem;
    padding: 2px 9px;
  }

  .story-card-final h3 {
    font-size: 1.2rem;
  }

  .story-final-inner {
    padding: 20px 14px;
  }

  .story-final-heart {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }
}

/* ========================================
   FAQ CATEGORY BLOCKS
   ======================================== */

.faq-categories {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-category-block {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 133, 168, 0.12);
  transition: box-shadow 0.3s ease;
}

.faq-category-block:hover {
  box-shadow: 0 8px 30px rgba(255, 77, 125, 0.12);
}

.faq-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--sand-light) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ocean-deeper);
  transition: background 0.3s ease;
}

.faq-cat-header:hover {
  background: linear-gradient(135deg, rgba(255, 201, 217, 0.3) 0%, rgba(255, 245, 247, 0.9) 100%);
}

.faq-cat-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: var(--coral);
}

.faq-category-block.open .faq-cat-arrow {
  transform: rotate(90deg);
}

.faq-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-category-block.open .faq-cat-body {
  max-height: 2000px;
}

.faq-cat-body .faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-cat-body .faq-question {
  padding: 14px 24px;
  font-size: 1rem;
}

.faq-cat-body .faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-cat-body .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 16px;
}

.faq-cat-body .faq-answer p,
.faq-cat-body .faq-answer ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.faq-cat-body .faq-answer ul {
  padding-left: 0;
  list-style: none;
}

.faq-cat-body .faq-answer ul li {
  padding: 4px 0;
}

.faq-cat-body .faq-answer a {
  color: var(--ocean-dark);
  font-weight: 600;
}

/* Body padding for fixed navbar */
body {
  padding-top: 60px;
}

/* Ensure hero fills viewport properly */
.hero {
  margin-top: -60px;
  padding-top: 60px;
}

/* Mobile image improvements */
img {
  max-width: 100%;
  height: auto;
}

.venue-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .venue-img {
    height: 180px;
  }

  .timeline-image {
    height: 150px;
  }

  .faq-cat-header {
    font-size: 1.05rem;
    padding: 14px 18px;
  }

  .nav-container {
    height: 54px;
  }

  body {
    padding-top: 54px;
  }

  .hero {
    margin-top: -54px;
    padding-top: 54px;
  }

  .countdown-corner {
    top: 60px !important;
  }
}