/* ==========================================================================
   Luxury Wedding Landing Page - Main Stylesheet
   Theme: Royal Ivory, Champagne Gold, Subtle Rose & Obsidian Elegance
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-dark: #1E1B18;
  --bg-dark-glass: rgba(30, 27, 24, 0.82);

  --text-main: #2C2623;
  --text-muted: #6E6761;
  --text-light: #FAF8F5;

  --gold-primary: #C5A059;
  --gold-light: #E4CCA1;
  --gold-dark: #967434;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA771C 100%);
  --gold-gradient-soft: linear-gradient(135deg, #C5A059 0%, #DFCA9B 100%);

  --rose-accent: #9A6B74;
  --rose-soft: #F4ECEE;
  --border-gold: rgba(197, 160, 89, 0.35);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(44, 38, 35, 0.05);
  --shadow-md: 0 12px 30px rgba(44, 38, 35, 0.08);
  --shadow-lg: 0 20px 50px rgba(44, 38, 35, 0.12);
  --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Floral Petals Canvas */
#petals-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 820px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.script-text {
  font-family: var(--font-script);
  color: var(--gold-primary);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-header .sub-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.8rem auto 0;
  max-width: 220px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-divider svg {
  width: 20px;
  height: 20px;
  fill: var(--gold-primary);
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo span {
  font-family: var(--font-script);
  color: var(--gold-primary);
  font-size: 1.8rem;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-rsvp-btn {
  background: var(--gold-gradient-soft);
  color: #FFFFFF !important;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
}

.nav-rsvp-btn::after {
  display: none !important;
}

.nav-rsvp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(197, 160, 89, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  background: radial-gradient(circle at center, #FFFFFF 0%, #FAF6EE 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.18;
  filter: blur(2px);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.7) 0%, rgba(250, 248, 245, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.4rem 1.5rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  margin-bottom: 1.5rem;
}

.hero-couple-names {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.hero-couple-names .ampersand {
  font-family: var(--font-script);
  color: var(--gold-primary);
  font-size: clamp(3.5rem, 8vw, 6rem);
  display: inline-block;
  margin: 0 0.2rem;
  vertical-align: middle;
}

.hero-date-venue {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-date-venue span {
  display: inline-block;
  margin: 0 0.8rem;
  color: var(--gold-primary);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-gradient-soft);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(197, 160, 89, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

/* ==========================================================================
   Countdown Timer Section
   ========================================================================== */
.countdown-section {
  position: relative;
  margin-top: -3rem;
  z-index: 10;
  padding-bottom: 4rem;
}

.countdown-box {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.countdown-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.countdown-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.2rem 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.countdown-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ==========================================================================
   The Couple Section
   ========================================================================== */
.couple-section {
  padding: 6rem 0;
  background: #FAF8F5;
  position: relative;
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.couple-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 160, 89, 0.25);
  position: relative;
  transition: var(--transition);
}

.couple-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.couple-img-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  position: relative;
  padding: 6px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.couple-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background-color: #EFEFEF;
}

.couple-role {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.couple-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.couple-parents {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.2rem;
}

.couple-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.couple-social {
  margin-top: 1.2rem;
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.couple-social:hover {
  color: var(--rose-accent);
}

.couple-center-badge {
  text-align: center;
  padding: 1rem;
}

.couple-center-badge .monogram-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
}

.couple-center-badge .hashtag {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   Our Love Story / Timeline
   ========================================================================== */
.story-section {
  padding: 6rem 0;
  background: #FFFFFF;
  position: relative;
}

.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--gold-primary) 15%, var(--gold-primary) 85%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  padding: 0 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAF8F5;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -22px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -22px;
}

.timeline-content {
  background: #FAF8F5;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.timeline-subtitle {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Wedding Events Section
   ========================================================================== */
.events-section {
  padding: 6rem 0;
  background: #FAF8F5;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.event-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.event-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.event-detail-item {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.event-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.event-detail-value {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.event-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 1rem 0 2rem;
  line-height: 1.6;
}

.event-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

/* ==========================================================================
   RSVP & Digital Guestbook Section
   ========================================================================== */
.rsvp-section {
  padding: 6rem 0;
  background: #FFFFFF;
}

.rsvp-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.rsvp-form-card {
  background: #FAF8F5;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.attendance-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.attendance-option {
  position: relative;
}

.attendance-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.attendance-card {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.attendance-option input[type="radio"]:checked + .attendance-card {
  background: var(--gold-gradient-soft);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* Attending Details & Event Selection */
.rsvp-attending-section {
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
  overflow: hidden;
}

.rsvp-attending-section.hidden {
  max-height: 0 !important;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none;
}

.rsvp-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.rsvp-event-card {
  position: relative;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  user-select: none;
}

.rsvp-event-card:hover {
  border-color: var(--gold-main);
  background: rgba(197, 160, 89, 0.05);
}

.rsvp-event-card.selected {
  border-color: var(--gold-main);
  background: rgba(197, 160, 89, 0.12);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.15);
}

.rsvp-event-card input[type="checkbox"] {
  accent-color: var(--gold-main);
  margin-top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  cursor: pointer;
}

.rsvp-event-info {
  display: flex;
  flex-direction: column;
}

.rsvp-event-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-main);
  line-height: 1.3;
}

.rsvp-event-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hidden Google reCAPTCHA v3 badge with legal notice */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.recaptcha-legal-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.4;
}

.recaptcha-legal-notice a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.recaptcha-legal-notice a:hover {
  color: var(--gold-main);
}

/* Guestbook Board */
.guestbook-card {
  background: #FAF8F5;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow-md);
  max-height: 600px;
  display: flex;
  flex-direction: column;
}

.guestbook-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  padding-bottom: 1rem;
}

.guestbook-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
}

.wishes-list {
  overflow-y: auto;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.wishes-list::-webkit-scrollbar {
  width: 5px;
}

.wishes-list::-webkit-scrollbar-thumb {
  background: var(--gold-light);
  border-radius: var(--radius-full);
}

.wish-item {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  border-left: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.5s ease-out;
}

.wish-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.wish-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.wish-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.wish-relation {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.wish-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Floating Music Button & Controls
   ========================================================================== */
.music-toggle-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
}

.music-toggle-btn:hover {
  transform: scale(1.1);
}

.music-icon {
  width: 24px;
  height: 24px;
  fill: var(--gold-primary);
  transition: var(--transition);
}

.music-toggle-btn.playing {
  animation: musicSpin 6s linear infinite;
  background: var(--gold-gradient-soft);
}

.music-toggle-btn.playing .music-icon {
  fill: #FFFFFF;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-monogram {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.footer-names {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-quote {
  font-style: italic;
  color: #B3ADA8;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #8C847E;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .couple-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .couple-center-badge {
    order: -1;
  }

  .events-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .rsvp-wrapper {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    padding-right: 0;
    text-align: left !important;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
    right: auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .music-toggle-btn {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 15px rgba(44, 38, 35, 0.18);
    z-index: 100;
  }

  .music-toggle-btn .music-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==========================================================================
   Video Gallery & Fullscreen Video Modal Styles
   ========================================================================== */
.videos-section {
  padding: 6rem 0;
  background: #FFFFFF;
  position: relative;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

.video-card {
  background: #FAF8F5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.video-thumb-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #1E1B18;
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.08);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 24, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-play-overlay {
  background: rgba(30, 27, 24, 0.15);
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient-soft);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-left: 3px;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
}

.video-duration-badge {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.video-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-category-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  margin-bottom: 0.4rem;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.video-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 11, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal-title {
  color: #FAF8F5;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.video-player-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.video-iframe,
.video-html5 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.8rem;
  transition: var(--transition);
}

.video-modal-close:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: scale(1.1);
}

/* (Custom invite banner omitted per requirements - visitors view only their assigned events seamlessly) */

