/* Mobile perfect centering utility */
@media (max-width: 768px) {
  .mobile-centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    width: 100vw !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .mobile-single-column {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}
/* ===== MODERN MOBILE ANIMATIONS ===== */

/* Initial hidden states for elements that will animate in */
.main-title,
.couple-names,
.hero-subtitle,
.content-card {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-title {
  transform: translateY(40px);
}

.couple-names {
  transform: translateY(30px) scale(0.95);
}

.hero-subtitle {
  transform: translateY(20px);
}

.content-card {
  transform: translateY(50px);
}

/* Animated in states */
.content-card.animate-in {
  animation: cardSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern hover animations for mobile-friendly interactions */
.content-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(139, 75, 140, 0.25);
}

/* Smooth scroll reveal animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Interactive button animations */
.directions-btn,
.calendar-btn {
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.directions-btn:active,
.calendar-btn:active {
  transform: scale(0.98);
}

/* Countdown animation pulse */
.countdown-number {
  transition: all 0.3s ease;
}

.countdown-item:hover .countdown-number {
  transform: scale(1.1);
  color: var(--primary);
}

/* Schedule card stagger animation */
.schedule-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.schedule-card:nth-child(1) { animation-delay: 0.1s; }
.schedule-card:nth-child(2) { animation-delay: 0.2s; }
.schedule-card:nth-child(3) { animation-delay: 0.3s; }
.schedule-card:nth-child(4) { animation-delay: 0.4s; }

/* Modern floating animation for hearts */
@keyframes floatGentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.heart-icon {
  animation: floatGentle 3s ease-in-out infinite;
}

/* Enhanced scroll-triggered animations */
@keyframes slideInStagger {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

.slide-in-stagger {
  animation: slideInStagger 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes countdownReveal {
  0% { opacity: 0; transform: translateY(40px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.countdown-reveal {
  animation: countdownReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes numberPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); color: var(--primary); }
  100% { transform: scale(1); }
}

.number-pop {
  animation: numberPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hero-section {
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.1s linear;
}

.info-item {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.info-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
}

/* Micro-interactions for touch */
@media (hover: none) and (pointer: coarse) {
  .content-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .schedule-card:active {
    transform: scale(0.98);
    background: rgba(255,255,255,0.2);
  }
}
:root {
  /* Colors */
  --primary: #8B4B8C;
  --secondary: #D4A5A5;
  --accent: #E8B4C0;
  --background: #F0E5F0;
  --surface: rgba(240, 229, 240, 0.85);
  --surface-elevated: rgba(240, 229, 240, 0.9);
  --text-primary: #4A2B2D;
  --text-secondary: #8B6B6B;
  --text-muted: #B5999A;
  --border: #E6D4D4;
  --border-light: #F0E6E6;
  
  /* Unified Background System - Little Darker Pink */
  --romantic-base-gradient: #F0E5F0;
  --romantic-section-bg: #F0E5F0;
  --romantic-card-bg: #F0E5F0;
  --romantic-overlay: #F0E5F0;
  
  /* Advanced Shadows */
  --shadow: 0 4px 6px -1px rgba(139, 75, 140, 0.1), 0 2px 4px -1px rgba(139, 75, 140, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(139, 75, 140, 0.15), 0 10px 10px -5px rgba(139, 75, 140, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(139, 75, 140, 0.2);
  --shadow-glow: 0 0 20px rgba(139, 75, 140, 0.3);
  --shadow-glow-pink: 0 0 20px rgba(212, 165, 165, 0.4);
  --shadow-glow-gold: 0 0 20px rgba(232, 180, 192, 0.4);
  
  /* Ultra Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #8B4B8C 0%, #D4A5A5 100%);
  --gradient-secondary: linear-gradient(135deg, #E8B4C0 0%, #D4A5A5 100%);
  --gradient-accent: linear-gradient(135deg, #F7E7EB 0%, #E8B4C0 100%);
  --gradient-cosmic: linear-gradient(135deg, #8B4B8C 0%, #D4A5A5 50%, #E8B4C0 100%);
  --gradient-aurora: linear-gradient(45deg, #D4A5A5 0%, #E8B4C0 50%, #F7E7EB 100%);
  --gradient-sunset: linear-gradient(135deg, #8B4B8C 0%, #D4A5A5 100%);
  --gradient-ocean: linear-gradient(135deg, #D4A5A5 0%, #E8B4C0 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-accent: 'Crimson Text', serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  
  /* Advanced Transitions */
  --transition-ultra-fast: 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-elastic: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Animation Durations */
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 1s;
  --duration-ultra-slow: 2s;
}

/* Ultra Modern Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: #F0E5F0;
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-weight: 400;
  /* Prevent scrolling during loading screens */
  overflow-y: hidden;
}

/* Enable scrolling after loading screens are hidden */
body.loading-complete {
  overflow-y: auto;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="unified-texture" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="rgba(139,75,140,0.03)"/><circle cx="12" cy="12" r="0.8" fill="rgba(212,165,165,0.025)"/><circle cx="37" cy="37" r="1" fill="rgba(139,75,140,0.02)"/><circle cx="8" cy="42" r="0.6" fill="rgba(212,165,165,0.02)"/><circle cx="42" cy="8" r="0.7" fill="rgba(139,75,140,0.025)"/></pattern></defs><rect width="100" height="100" fill="url(%23unified-texture)"/></svg>');
  z-index: -1;
  pointer-events: none;
  animation: gentleBackgroundMove 60s linear infinite;
  opacity: 0.7;
}

/* Romantic Background Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 75, 140, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 165, 165, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(232, 180, 192, 0.08) 0%, transparent 50%);
  z-index: -1;
  animation: romanticPulse 25s ease-in-out infinite;
}

/* Romantic Loading Screen */
.romantic-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--romantic-base-gradient);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  overflow: hidden;
  /* Ensure it covers everything */
  margin: 0;
  padding: 0;
}

.romantic-loader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="loader-sparkles" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(139,75,140,0.06)"/><circle cx="6" cy="8" r="0.4" fill="rgba(212,165,165,0.08)"/><circle cx="19" cy="6" r="0.6" fill="rgba(139,75,140,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23loader-sparkles)"/></svg>');
  animation: gentleMove 25s linear infinite;
  opacity: 0.6;
}

.loader-content {
  text-align: center;
  position: relative;
  z-index: 3;
  max-width: 500px;
  padding: var(--space-2xl);
}

.floating-petals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  font-size: clamp(1.2rem, 3vw, 2rem);
  opacity: 0;
  animation: petalDanceSmooth 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(139, 75, 140, 0.25));
  transform-origin: center center;
}

.petal:nth-child(1) {
  top: 10%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 5.5s;
}

.petal:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1.2s;
  animation-duration: 6.2s;
}

.petal:nth-child(3) {
  top: 60%;
  left: 10%;
  animation-delay: 2.1s;
  animation-duration: 5.8s;
}

.petal:nth-child(4) {
  top: 70%;
  right: 15%;
  animation-delay: 0.8s;
  animation-duration: 6.5s;
}

.petal:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 1.8s;
  animation-duration: 5.2s;
}

.petal:nth-child(6) {
  top: 85%;
  left: 65%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.loader-hearts {
  margin-bottom: var(--space-xl);
  animation: heartPulse 2s ease-in-out infinite;
  position: relative;
}

.heart-pulse {
  font-size: clamp(4rem, 10vw, 6rem); /* Mobile-first: larger loading heart */
  animation: heartBeatSmooth 2.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 24px rgba(139, 75, 140, 0.35));
  display: inline-block;
  position: relative;
}

.heart-pulse::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(139, 75, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: heartGlowRomantic 2.5s ease-in-out infinite;
  z-index: -1;
}

.loader-text {
  margin-top: var(--space-xl);
  position: relative;
  z-index: 3;
}

.loader-title {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 12vw, 6rem); /* Mobile-first: much larger sizes */
  color: var(--primary);
  margin-bottom: var(--space-xl);
  position: relative;
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmerSmooth 4s ease-in-out infinite;
  text-shadow: 0 4px 20px rgba(139, 75, 140, 0.2);
}

.loader-bar {
  width: 280px;
  height: 8px;
  background: rgba(139, 75, 140, 0.12);
  border-radius: 12px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  box-shadow: 
    inset 0 2px 4px rgba(139, 75, 140, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.8);
}

.loader-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.4) 45%, 
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 55%, 
    transparent 100%);
  animation: barShimmerSmooth 2.5s ease-in-out infinite;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-aurora);
  border-radius: 12px;
  transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  box-shadow: 
    0 0 15px rgba(139, 75, 140, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.loader-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: -2px;
  width: 24px;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.7) 50%, 
    transparent);
  border-radius: 0 12px 12px 0;
  animation: fillGlowSmooth 1.2s ease-in-out infinite;
}

/* Ultra Modern Loading Screen */
.opening-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--romantic-base-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow: hidden;
  /* Removed default opacity and animation that was hiding content */
  margin: 0;
  padding: 0;
}

.opening-screen::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(139, 75, 140, 0.02) 1deg,
    transparent 2deg,
    transparent 10deg
  );
  animation: rotateGentle 20s linear infinite;
}

.opening-content {
  text-align: center;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  /* Removed animation that might hide content */
}

.opening-hearts {
  margin-bottom: var(--space-lg);
  position: relative;
}

.opening-hearts .heart {
  font-size: 4rem; /* Mobile-first: larger opening hearts */
  margin: 0 var(--space-md);
  display: inline-block;
  animation: heartMagic 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(139, 75, 140, 0.5));
}

.opening-hearts .heart:nth-child(1) {
  animation-delay: 0s;
}

.opening-hearts .heart:nth-child(2) {
  animation-delay: 0.3s;
}

.opening-hearts .heart:nth-child(3) {
  animation-delay: 0.6s;
}

.opening-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem); /* Mobile-first: much larger sizes */
  font-weight: 600;
  margin-bottom: var(--space-3xl); /* Increased spacing to push names down */
  text-shadow: 0 4px 20px rgba(139, 75, 140, 0.3);
  color: var(--primary);
  /* Removed transparent text fill that was making text invisible */
}

.opening-couple {
  font-family: var(--font-script);
  font-size: clamp(5rem, 18vw, 10rem); /* MASSIVE mobile-first couple names */
  font-weight: 600;
  margin-top: var(--space-xl); /* Added top margin for better separation */
  margin-bottom: var(--space-md);
  position: relative;
  color: var(--primary);
}

.opening-couple .name {
  display: inline-block;
  margin: 0 var(--space-md);
  animation: nameFloat 3s ease-in-out infinite alternate;
}

.opening-couple .name:nth-child(1) {
  animation-delay: 0s;
}

.opening-couple .name:nth-child(3) {
  animation-delay: 0.5s;
}

.opening-couple .ampersand {
  font-size: 2.5rem;
  opacity: 0.9;
  animation: ampersandSpin 4s ease-in-out infinite;
  color: var(--secondary);
}

.opening-subtitle {
  font-size: 2.5rem; /* Mobile-first: much larger subtitle */
  opacity: 0.95;
  font-weight: 400;
  margin-bottom: var(--space-md);
  animation: subtitleGlow 2s ease-in-out infinite alternate;
  font-family: var(--font-accent);
  color: var(--text-secondary);
}

.opening-date {
  font-size: 2rem; /* Mobile-first: much larger date */
  opacity: 0.85;
  font-weight: 400;
  font-style: italic;
  animation: dateFloat 3s ease-in-out infinite;
  color: var(--text-secondary);
}

/* Ultra Modern Main Container */
.main-container {
  opacity: 0;
  position: static;
  z-index: 2;
  transition: opacity 0.8s ease-out;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main Content Layout - Uniform Design */
.main-content {
  flex: 1;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.details-section,
.venue-section,
.schedule-section {
  padding: var(--space-lg) var(--space-lg);
  margin: 0;
  position: relative;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

/* Remove alternating backgrounds - use uniform instead */
.details-section::before,
.venue-section::before,
.schedule-section::before {
  display: none;
}

/* Uniform Content Cards */
.content-card {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0;
  padding: var(--space-lg);
  box-shadow: none;
  border: none;
  backdrop-filter: none;
  position: relative;
  overflow: visible;
  transition: none;
}

.content-card::before {
  display: none;
}

.content-card:hover {
  transform: none;
  box-shadow: 
    0 20px 60px rgba(139, 75, 140, 0.12),
    0 8px 24px rgba(139, 75, 140, 0.08);
  background: #F0E5F0;
}

.content-card:hover::before {
  opacity: 1;
}

/* Uniform Section Titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem); /* Improved larger typography */
  font-weight: 600; /* More sophisticated weight */
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  position: relative;
  letter-spacing: 1px; /* Refined letter spacing */
  text-transform: none; /* Remove uppercase for modern look */
  opacity: 1; /* Full opacity for better readability */
}

/* Removed ::after pseudo-element with emoji */

/* Event Info Grid - Uniform Spacing */
.event-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: transparent;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  transition: none;
  box-shadow: none;
}

.info-item:hover {
  background: transparent;
  transform: none;
  box-shadow: 0 12px 40px rgba(139, 75, 140, 0.15);
}

.info-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-aurora);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(139, 75, 140, 0.2);
  flex-shrink: 0;
}

.info-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.info-content p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Uniform Countdown Container */
.countdown-container {
  text-align: center;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, 
    rgba(139, 75, 140, 0.03) 0%, 
    rgba(212, 165, 165, 0.03) 50%, 
    rgba(139, 75, 140, 0.03) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 75, 140, 0.08);
  margin-top: var(--space-2xl);
}

.countdown-title {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Uniform Venue Styling */
.venue-info {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.venue-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem); /* Enhanced larger typography */
  font-weight: 600; /* More refined weight */
  color: var(--primary);
  margin-bottom: var(--space-lg);
  line-height: 1.2; /* Improved line height */
  letter-spacing: 0.5px; /* Add sophisticated spacing */
}

.venue-address {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: clamp(1rem, 3vw, 1.2rem); /* Enhanced readability */
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  font-weight: 400; /* Clean regular weight */
}

.venue-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--primary);
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Map Container - Uniform Styling */
.map-container {
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(139, 75, 140, 0.1);
  border: 2px solid rgba(139, 75, 140, 0.08);
  transition: all var(--transition-normal);
}

.map-container:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(139, 75, 140, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Directions Button - Uniform Styling */
.directions {
  text-align: center;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary)); /* Same as calendar button */
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(139, 75, 140, 0.3);
  border: 2px solid var(--primary); /* Same border as calendar button */
}

.directions-btn:hover {
  transform: translateY(-3px) scale(1.02); /* Same hover effect as calendar */
  box-shadow: 0 12px 32px rgba(139, 75, 140, 0.3); /* Same shadow as calendar */
  border-color: var(--secondary); /* Same border color change */
}

.directions-btn .btn-icon {
  font-size: 1.4rem; /* Enhanced emoji size */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ultra Modern Hero Section */
.hero-section {
  background: transparent;
  color: var(--text-primary);
  padding: var(--space-3xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--romantic-overlay);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-sparkles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(139,75,140,0.06)"/><circle cx="7" cy="7" r="0.5" fill="rgba(212,165,165,0.04)"/><circle cx="23" cy="23" r="0.7" fill="rgba(139,75,140,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-sparkles)"/></svg>');
  animation: heroTextureMove 40s linear infinite;
  opacity: 0.4;
  z-index: 2;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-hearts span {
  position: absolute;
  font-size: clamp(1rem, 3vw, 2rem);
  opacity: 0.03; /* Much lighter static hearts */
  animation: heartDance 12s ease-in-out infinite;
  filter: blur(0.5px);
}

.floating-hearts span:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-hearts span:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.floating-hearts span:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.floating-hearts span:nth-child(4) {
  top: 70%;
  right: 10%;
  animation-delay: 6s;
}

.floating-hearts span:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 8s;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  animation: heroContentRise 1.5s ease-out;
  background: var(--romantic-card-bg);
  padding: var(--space-3xl);
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(139, 75, 140, 0.1);
  box-shadow: 0 20px 60px rgba(139, 75, 140, 0.15);
}

.main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(139, 75, 140, 0.1);
  position: relative;
  animation: gentleTitleRise 2s ease-out;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-aurora);
  border-radius: 2px;
  animation: underlineGrow 2s ease-out 1s both;
}

.couple-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl); /* Increased gap for better spacing */
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  animation: namesAppear 1.5s ease-out 0.5s both;
}

.couple-names .groom,
.couple-names .bride {
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 6rem); /* MASSIVE mobile-first main page names */
  font-weight: 600;
  position: relative;
  transition: all var(--transition-normal);
  color: var(--primary);
}

.couple-names .groom:hover,
.couple-names .bride:hover {
  transform: scale(1.05) rotate(-1deg);
  text-shadow: 0 8px 30px rgba(139, 75, 140, 0.4);
}

.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartDividerPulse 2s ease-in-out infinite;
}

.heart-icon {
  font-size: clamp(2.5rem, 8vw, 5rem); /* MASSIVE mobile-first heart icon */
  animation: heartBeat 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(139, 75, 140, 0.3));
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  animation: subtitleFadeIn 1.5s ease-out 1s both;
  line-height: 1.8;
  font-family: var(--font-accent);
  color: var(--text-secondary);
}

/* Modern Schedule Section */
.modern-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 2rem auto 0;
  max-width: 900px;
  justify-items: center;
}

.schedule-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.schedule-card:hover::before {
  opacity: 1;
}

.schedule-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.schedule-time {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.schedule-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.8rem); /* Enhanced typography */
  font-weight: 600; /* Better visual hierarchy */
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.2; /* Improved line height */
  letter-spacing: 0.3px; /* Add sophisticated spacing */
}

.schedule-description {
  font-family: var(--font-body);
  font-size: clamp(1rem, 3vw, 1.1rem); /* Enhanced readability */
  color: var(--color-text-light);
  line-height: 1.6; /* Better reading experience */
  opacity: 0.95; /* Improved readability */
  font-weight: 400; /* Clean regular weight */
}

/* Timeline/Schedule Section */
.timeline-section {
  padding: var(--space-3xl) var(--space-lg);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--romantic-section-bg);
  backdrop-filter: blur(20px);
}

.timeline-title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
  animation: titleFloat 4s ease-in-out infinite;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-aurora);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-2xl);
  position: relative;
  animation: timelineItemSlide 1s ease-out;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: calc(50% + var(--space-xl));
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + var(--space-xl));
  text-align: left;
}

.timeline-content {
  background: var(--romantic-card-bg);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(139, 75, 140, 0.1);
  border: 1px solid rgba(139, 75, 140, 0.1);
  max-width: 300px;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(139, 75, 140, 0.15);
  background: #F0E5F0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(139, 75, 140, 0.3);
  animation: dotPulse 2s ease-in-out infinite;
}

.event-time {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.event-description {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Venue Section */
.venue-section {
  padding: var(--space-3xl) var(--space-lg);
  background: var(--surface);
  position: relative;
}

.venue-title {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-3xl);
  animation: titleFloat 4s ease-in-out infinite;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

.venue-card {
  background: var(--romantic-card-bg);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 12px 32px rgba(139, 75, 140, 0.1);
  border: 1px solid rgba(139, 75, 140, 0.1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-aurora);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(139, 75, 140, 0.15);
}

.venue-card:hover::before {
  opacity: 1;
}

.venue-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.venue-address {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.venue-map {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(139, 75, 140, 0.1);
  transition: all var(--transition-normal);
}

.venue-map:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(139, 75, 140, 0.2);
}

@media (max-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }
  
  .timeline-dot {
    left: 20px;
  }
}

/* Ultra Modern Navigation */
.nav-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.nav-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  background: var(--romantic-section-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}

.nav-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-aurora);
  transition: left var(--transition-elastic);
  z-index: -1;
}

.nav-tab::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--romantic-section-bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--transition-fast);
  z-index: -1;
}

.nav-tab:hover::before {
  left: 0;
}

.nav-tab:hover::after {
  width: 120%;
  height: 120%;
}

.nav-tab:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

.nav-tab.active {
  background: var(--gradient-cosmic);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.nav-tab.active::before {
  left: 0;
  background: var(--gradient-aurora);
}

.tab-icon {
  font-size: 1.5rem;
  transition: all var(--transition-fast);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-tab:hover .tab-icon {
  transform: scale(1.2) rotate(10deg);
}

.nav-tab.active .tab-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

.tab-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Ultra Modern Tab Content */
.tab-content {
  min-height: 70vh;
  padding: var(--space-3xl) var(--space-lg);
  background: transparent;
  position: relative;
}

.tab-panel {
  display: none;
  animation: panelSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tab-panel.active {
  display: block;
}

.content-card {
  background: var(--surface);
  border-radius: var(--radius-3xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  z-index: -1;
}

.content-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-aurora);
  z-index: -2;
  border-radius: var(--radius-3xl);
  opacity: 0.1;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem); /* Improved larger typography */
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2xl);
  text-align: center;
  position: relative;
}

/* Removed ::after pseudo-element with underline */

/* Ultra Modern Event Details */
.event-info {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.info-item {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: var(--surface-elevated);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.info-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-light);
}

.info-item:hover::before {
  opacity: 1;
}

.info-icon {
  font-size: 2.5rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cosmic);
  border-radius: var(--radius-2xl);
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.info-content {
  position: relative;
  z-index: 2;
}

.info-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
}

.info-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  font-weight: 500;
}

/* Ultra Modern Countdown Timer */
.countdown-container {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-xl);
  background: transparent;
  color: var(--color-primary);
  border-radius: 0;
  margin-top: var(--space-lg);
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.countdown-container::before {
  display: none;
}

.countdown-title {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--space-2xl);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: titleFloat 4s ease-in-out infinite;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-xl);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  transition: none;
  position: relative;
  overflow: visible;
}

.countdown-item::before {
  display: none;
}

.countdown-item:hover {
  transform: none;
  background: transparent;
  box-shadow: none;
}

.countdown-item:hover::before {
  opacity: 0.3;
}

.countdown-number {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(139, 75, 140, 0.2);
  position: relative;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.countdown-number.flip {
  animation: digitFlip 0.6s ease-in-out;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.blessing {
  text-align: center;
  padding: var(--space-3xl);
  margin: var(--space-3xl) var(--space-lg);
  background: var(--romantic-card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(139, 75, 140, 0.12);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-family: var(--font-accent);
  color: var(--primary);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(139, 75, 140, 0.08);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.blessing::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: clamp(3rem, 8vw, 5rem);
  opacity: 0.15;
  font-family: var(--font-display);
  color: var(--primary);
}

.blessing::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: clamp(3rem, 8vw, 5rem);
  opacity: 0.15;
  font-family: var(--font-display);
  color: var(--primary);
}

.blessing p {
  position: relative;
  z-index: 2;
  line-height: 1.8;
  margin: 0;
  padding: var(--space-lg) var(--space-xl);
}

/* Calendar Links */
.calendar-links {
  margin-top: var(--space-xl);
  text-align: center;
}

.calendar-title {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.calendar-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.calendar-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.calendar-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #F0E5F0, transparent);
  transition: left var(--transition-slow);
}

.calendar-btn:hover::before {
  left: 100%;
}

.google-cal {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: 2px solid var(--primary);
}

.google-cal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(139, 75, 140, 0.3);
  border-color: var(--secondary);
}

/* Ensure calendar button emoji is properly sized and visible */
.calendar-btn .btn-icon {
  font-size: 1.4rem; /* Same as directions button */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem;
}

.btn-icon {
  font-size: 1.4rem; /* Enhanced for mobile visibility */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4rem; /* Ensure consistent emoji space */
}

.btn-text {
  font-size: 1rem;
}


/* Location Tab */
.venue-info {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.venue-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: 0.5px;
}

.venue-address {
  color: var(--text-secondary);
  line-height: 1.8;
}

.map-container {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.directions {
  text-align: center;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-xl);
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* RSVP Tab */
.rsvp-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}

.rsvp-form {
  display: grid;
  gap: var(--space-lg);
}

.form-group {
  display: grid;
  gap: var(--space-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group label {
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: var(--surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  background: var(--gradient-secondary);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow);
  margin-top: var(--space-lg);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.rsvp-success {
  text-align: center;
  padding: var(--space-xl);
  background: var(--romantic-card-bg);
  border-radius: var(--radius-lg);
  border: 2px solid #27ae60;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.rsvp-success h3 {
  font-size: 1.5rem;
  color: #27ae60;
  margin-bottom: var(--space-sm);
}

.rsvp-success p {
  color: var(--text-secondary);
}

/* Uniform Modern Footer */
.footer {
  background: var(--romantic-card-bg);
  backdrop-filter: blur(30px);
  padding: var(--space-3xl) var(--space-lg);
  margin-top: var(--space-4xl);
  border-top: 1px solid rgba(139, 75, 140, 0.1);
  position: relative;
  text-align: center;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--romantic-section-bg);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.footer-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
  background: var(--romantic-card-bg);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(139, 75, 140, 0.08);
  border: 1px solid rgba(139, 75, 140, 0.08);
  backdrop-filter: blur(20px);
}

.footer-text {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
  font-weight: 500;
}

.footer-hearts {
  margin: var(--space-lg) 0;
  animation: heartDance 4s ease-in-out infinite;
}

.footer-hearts span {
  font-size: 1.8rem;
  margin: 0 var(--space-sm);
  display: inline-block;
  animation: heartFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(139, 75, 140, 0.2));
}

.footer-hearts span:nth-child(1) {
  animation-delay: 0s;
}

.footer-hearts span:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-hearts span:nth-child(3) {
  animation-delay: 1s;
}

.footer-names {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nameShimmer 4s ease-in-out infinite;
}

.copyright {
  border-top: 1px solid rgba(139, 75, 140, 0.15);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}

.copyright-text {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-size: 0.95rem;
  opacity: 0.8;
}

.copyright-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  opacity: 0.8;
  font-style: italic;
  margin: 0;
}

/* Modern Section Layout */
.details-section,
.venue-section,
.schedule-section {
  padding: var(--space-4xl) var(--space-lg);
  background: transparent;
  position: relative;
}

.details-section .content-card,
.venue-section .content-card,
.schedule-section .content-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-3xl);
  background: var(--romantic-card-bg);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(139, 75, 140, 0.15);
  border-radius: var(--radius-3xl);
  box-shadow: 0 20px 60px rgba(139, 75, 140, 0.1);
  transition: all var(--transition-normal);
}

.details-section .content-card:hover,
.venue-section .content-card:hover,
.schedule-section .content-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(139, 75, 140, 0.2);
}
.content-card {
  background: var(--romantic-card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 75, 140, 0.1);
  border-radius: var(--radius-2xl);
  box-shadow: 0 8px 32px rgba(139, 75, 140, 0.1);
  transition: all var(--transition-normal);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(139, 75, 140, 0.15);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  text-align: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-title::after {
  content: '💕';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: heartBeat 2s ease-in-out infinite;
}

/* Improved Button Styling */
.calendar-btn,
.directions-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(139, 75, 140, 0.2);
}

.calendar-btn:hover,
.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 75, 140, 0.3);
  background: var(--gradient-cosmic);
}

/* Modern Scroll Animations - Disabled for immediate visibility */
.scroll-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: none;
  filter: blur(0px);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.scroll-animate.fade-in {
  transform: translateY(0);
  opacity: 1;
}

.scroll-animate.fade-in.in-view {
  transform: translateY(0);
  opacity: 1;
}

.scroll-animate.scale-up {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.scroll-animate.scale-up.in-view {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.scroll-animate.slide-left {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

.scroll-animate.slide-left.in-view {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

.scroll-animate.slide-up {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition: none;
}

.scroll-animate.slide-up.in-view {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.scroll-animate.slide-right {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

.scroll-animate.slide-right.in-view {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}

/* Staggered Animation Delays - Disabled */
.scroll-animate.stagger-1 { transition-delay: 0s; }
.scroll-animate.stagger-2 { transition-delay: 0s; }
.scroll-animate.stagger-3 { transition-delay: 0s; }
.scroll-animate.stagger-4 { transition-delay: 0s; }
.scroll-animate.stagger-5 { transition-delay: 0s; }

.scroll-animate.scale-up {
  transform: scale(0.8);
}

.scroll-animate.scale-up.in-view {
  transform: scale(1);
}

.scroll-animate.fade-in {
  opacity: 0;
}

.scroll-animate.fade-in.in-view {
  opacity: 1;
}

/* Staggered Animation for Lists */
.scroll-animate.stagger-1 { transition-delay: 0.1s; }
.scroll-animate.stagger-2 { transition-delay: 0.2s; }
.scroll-animate.stagger-3 { transition-delay: 0.3s; }
.scroll-animate.stagger-4 { transition-delay: 0.4s; }
.scroll-animate.stagger-5 { transition-delay: 0.5s; }

/* Floating Hearts and Rings Animation */
/* Scroll-triggered background animations */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 180, 192, 0.1) 0%, transparent 70%);
  animation: gentlePulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
}

.content-card {
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.1), 
    transparent);
  transition: left 1.2s ease-out;
}

.content-card.in-view::before {
  left: 100%;
}

/* Floating Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-heart,
.floating-ring {
  position: absolute;
  opacity: 0;
  animation: floatUp 15s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.floating-heart {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #E8B4C0;
  text-shadow: 0 2px 12px rgba(232, 180, 192, 0.2); /* Reduced shadow opacity */
  opacity: 0.05; /* Much lighter base opacity */
}

.floating-ring {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #8B4B8C;
  text-shadow: 0 2px 12px rgba(139, 75, 140, 0.2); /* Reduced shadow opacity */
  opacity: 0.05; /* Much lighter base opacity */
}

.floating-slow {
  animation-duration: 20s;
  opacity: 0.4;
}

.floating-extra-slow {
  animation-duration: 25s;
  opacity: 0.3;
}

@keyframes floatUp {
  0% {
    bottom: -80px;
    opacity: 0;
    transform: translateX(0) rotate(0deg) scale(0.5);
  }
  5% {
    opacity: 0.05; /* Much lighter during animation */
    transform: translateX(10px) rotate(15deg) scale(0.7);
  }
  25% {
    transform: translateX(-15px) rotate(-10deg) scale(0.9);
  }
  50% {
    transform: translateX(20px) rotate(20deg) scale(1);
  }
  75% {
    transform: translateX(-10px) rotate(-15deg) scale(1.1);
  }
  95% {
    opacity: 0.05; /* Much lighter during animation */
    transform: translateX(15px) rotate(25deg) scale(1.2);
  }
  100% {
    bottom: 110vh;
    opacity: 0;
    transform: translateX(30px) rotate(30deg) scale(0.8);
  }
}

.floating-heart:nth-child(odd) {
  animation-delay: -2s;
  animation-duration: 10s;
}

.floating-heart:nth-child(even) {
  animation-delay: -6s;
  animation-duration: 14s;
}

.floating-ring:nth-child(odd) {
  animation-delay: -4s;
  animation-duration: 16s;
}

.floating-ring:nth-child(even) {
  animation-delay: -8s;
  animation-duration: 12s;
}

/* Ultra Modern Animations */
@keyframes cosmicPulse {
  0%, 100% { 
    opacity: 0.8; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.05); 
  }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes screenDissolve {
  0% { 
    opacity: 0; 
    transform: scale(0.9); 
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  80% { 
    opacity: 1; 
    transform: scale(1); 
  }
  100% { 
    opacity: 0; 
    transform: scale(1.1); 
    visibility: hidden; 
  }
}

@keyframes contentMaterialize {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heartMagic {
  0%, 100% { 
    transform: scale(1) rotate(0deg); 
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  }
  25% { 
    transform: scale(1.2) rotate(-5deg); 
    filter: drop-shadow(0 0 20px rgba(255, 100, 150, 0.8));
  }
  75% { 
    transform: scale(1.1) rotate(5deg); 
    filter: drop-shadow(0 0 15px rgba(150, 100, 255, 0.6));
  }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes nameFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes ampersandSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(5deg) scale(1.1); }
  75% { transform: rotate(-5deg) scale(1.1); }
}

@keyframes subtitleGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(100, 150, 255, 0.6); }
}

@keyframes dateFloat {
  0%, 100% { transform: translateY(0); opacity: 0.85; }
  50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes containerReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes textureMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

@keyframes heartDance {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
    opacity: 0.2; 
  }
  25% { 
    transform: translateY(-20px) rotate(5deg) scale(1.1); 
    opacity: 0.4; 
  }
  50% { 
    transform: translateY(-30px) rotate(-3deg) scale(1.2); 
    opacity: 0.3; 
  }
  75% { 
    transform: translateY(-10px) rotate(2deg) scale(1.05); 
    opacity: 0.35; 
  }
}

@keyframes heroContentRise {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleTitleRise {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleShimmer {
  0% { background-position: 300% 0; }
  100% { background-position: -300% 0; }
}

@keyframes underlineGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 80px; opacity: 1; }
}

@keyframes namesAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heartDividerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes heartBeat {
  0%, 100% { 
    transform: scale(1); 
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
  }
  50% { 
    transform: scale(1.2); 
    filter: drop-shadow(0 8px 16px rgba(255, 100, 150, 0.6));
  }
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes panelSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes titleGlow {
  0%, 100% { 
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  }
  50% { 
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.8), 0 0 40px rgba(236, 72, 153, 0.6);
  }
}

@keyframes titleUnderline {
  0% { width: 0; opacity: 0; }
  100% { width: 60px; opacity: 1; }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(10deg); }
}

@keyframes backgroundShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(20px) translateY(-20px); }
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes numberShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes digitFlip {
  0% { transform: rotateX(0); }
  50% { transform: rotateX(90deg); }
  100% { transform: rotateX(0); }
}

@keyframes labelGlow {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes nameShimmer {
  0% { 
    color: var(--text-primary); 
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  }
  50% { 
    color: #6366f1; 
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
  }
  100% { 
    color: var(--text-primary); 
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  }
}

/* Legacy Animations for Compatibility */
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatAround {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-30px) rotate(-5deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
}

@keyframes countdownPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Additional Romantic Animations */
@keyframes dateCardFloat {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shimmerDance {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes dateHeaderGlow {
  from {
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 0 rgba(139, 75, 140, 0.3);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 4px 20px rgba(139, 75, 140, 0.3);
  }
}

@keyframes dateValueSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes timelineItemSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dotPulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 4px 12px rgba(139, 75, 140, 0.3);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 6px 20px rgba(139, 75, 140, 0.5);
  }
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

/* Smooth Romantic Loader Animations */
@keyframes petalDanceSmooth {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(0deg) scale(0.8);
  }
  15% {
    opacity: 0.8;
    transform: translateY(-10px) rotate(10deg) scale(1);
  }
  30% {
    opacity: 0.9;
    transform: translateY(-5px) rotate(-5deg) scale(1.1);
  }
  50% {
    opacity: 1;
    transform: translateY(-15px) rotate(15deg) scale(1);
  }
  70% {
    opacity: 0.8;
    transform: translateY(-8px) rotate(-8deg) scale(0.95);
  }
  85% {
    opacity: 0.6;
    transform: translateY(-12px) rotate(12deg) scale(1.05);
  }
  100% {
    opacity: 0;
    transform: translateY(-25px) rotate(-15deg) scale(0.8);
  }
}

@keyframes heartBeatSmooth {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 6px 24px rgba(139, 75, 140, 0.35));
  }
  25% {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 32px rgba(139, 75, 140, 0.45));
  }
  50% {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 40px rgba(139, 75, 140, 0.55));
  }
  75% {
    transform: scale(1.08);
    filter: drop-shadow(0 8px 32px rgba(139, 75, 140, 0.45));
  }
}

@keyframes heartGlowRomantic {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes titleShimmerSmooth {
  0%, 100% {
    background-position: 0% 50%;
    text-shadow: 0 4px 20px rgba(139, 75, 140, 0.2);
  }
  25% {
    background-position: 50% 25%;
    text-shadow: 0 6px 30px rgba(139, 75, 140, 0.3);
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 8px 40px rgba(139, 75, 140, 0.4);
  }
  75% {
    background-position: 50% 75%;
    text-shadow: 0 6px 30px rgba(139, 75, 140, 0.3);
  }
}

@keyframes barShimmerSmooth {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fillGlowSmooth {
  0%, 100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

@keyframes gentleMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -5px) rotate(0.5deg);
  }
  50% {
    transform: translate(5px, 10px) rotate(-0.3deg);
  }
  75% {
    transform: translate(-8px, 5px) rotate(0.7deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes gentleBackgroundMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, -10px);
  }
  50% {
    transform: translate(8px, 15px);
  }
  75% {
    transform: translate(-12px, 8px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes heroTextureMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

@keyframes rotateGentle {
  from { 
    transform: rotate(0deg); 
  }
  to { 
    transform: rotate(360deg); 
  }
}

@keyframes heartFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
}

@keyframes nameShimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* DISABLED - Conflicting mobile styles */
/* 
/*
@media (max-width: 768px) {
  .content-card {
    padding: var(--space-md);
    margin: var(--space-sm);
    border-radius: 12px;
  }
  
  .event-info {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .info-item {
    padding: var(--space-md);
    border-radius: 8px;
  }
}
*/
  }
  
  .modern-schedule {
    gap: var(--space-sm); /* Less gap between cards */
  }
  
  .schedule-card {
    padding: var(--space-md); /* Smaller padding */
    margin-bottom: var(--space-sm); /* Less margin */
  }
  
  .schedule-icon {
    width: 40px; /* Smaller icons */
    height: 40px;
    font-size: 1.2rem;
  }
  
  .schedule-time {
    font-size: 0.9rem; /* Smaller time */
    margin-bottom: var(--space-xs);
  }
  
  .schedule-title {
    font-size: 1rem; /* Smaller title */
    line-height: 1.3;
    margin-bottom: var(--space-xs);
  }
  
  .schedule-description {
    font-size: 0.85rem; /* Smaller description */
    line-height: 1.4;
  }
  
  .timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  
  .timeline-time {
    min-width: auto;
    margin-bottom: var(--space-sm);
  }
  
  .timeline-time::before {
    left: -30px;
  }
  
  .timeline-content {
    margin-left: 40px;
    margin-right: 0;
    padding: var(--space-lg);
  }
  
  .blessing {
    padding: var(--space-xl);
    margin: var(--space-xl) var(--space-md);
  }
  
  .blessing::before,
  .blessing::after {
    font-size: 3rem;
  }
  
  .footer-content {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .content-card {
    padding: var(--space-lg);
  }
  
  .countdown-timer {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .floating-petals .petal {
    font-size: 1.2rem;
  }
  
  .loader-title {
    font-size: 2rem;
  }
  
  .loader-bar {
    width: 240px;
  }
}

/* Ultra Modern Responsive Design */
@media (max-width: 768px) {
  .nav-tabs {
    gap: var(--space-md);
    padding: var(--space-lg);
    flex-direction: row;
    justify-content: center;
  }
  
  .nav-tab {
    padding: var(--space-md) var(--space-lg);
    flex: 1;
    max-width: 200px;
  }
  
  .tab-icon {
    font-size: 1.25rem;
  }
  
  .tab-text {
    font-size: 0.875rem;
  }
  
  .content-card {
    padding: var(--space-xl);
    margin: var(--space-md);
  }
  
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  
  .event-info {
    grid-template-columns: 1fr;
  }
  
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .couple-names {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center; /* Center align names */
    margin: 30px 0; /* Add top and bottom spacing */
  }
  
  .calendar-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Mobile Typography Optimizations */
  .main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem); /* Smaller hero title */
    margin-bottom: var(--space-md);
  }
  
  .couple-names .groom,
  .couple-names .bride {
    font-size: clamp(1.3rem, 5vw, 2rem); /* Smaller names */
  }
  
  .hero-subtitle {
    font-size: 0.9rem; /* Smaller subtitle */
    line-height: 1.4;
    margin-top: var(--space-sm);
  }
  
  .section-title {
    font-size: 1.4rem; /* Smaller section titles */
    margin-bottom: var(--space-md);
  }
  
  .hero-section {
    padding: var(--space-xl) var(--space-md); /* Less padding */
    min-height: 70vh; /* Shorter hero section */
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--space-2xl) var(--space-md);
    min-height: 80vh;
  }
  
  .content-card {
    padding: var(--space-lg);
    margin: var(--space-sm);
  }
  
  .countdown-timer {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .countdown-item {
    padding: var(--space-lg) var(--space-md);
  }
  
  .nav-tabs {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .nav-tab {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .tab-text {
    display: inline;
  }
  
  .opening-title {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }
  
  .opening-couple {
    font-size: clamp(1.5rem, 8vw, 3rem);
  }
  
  .tab-content {
    padding: var(--space-lg) var(--space-md);
  }
  
  .calendar-btn {
    padding: var(--space-md) var(--space-lg);
    width: 100%;
    max-width: 280px;
  }
}

/* Performance Optimizations */
* {
  will-change: auto;
}

.opening-screen,
.hero-section,
.countdown-number,
.nav-tab,
.info-item,
.calendar-btn,
.directions-btn {
  will-change: transform, opacity;
}

/* Accessibility & Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .opening-screen {
    animation: none;
    display: none;
  }
  
  .main-container {
    opacity: 1;
    animation: none;
  }
}

/* High Performance Mode */
@media (prefers-reduced-data: reduce) {
  .hero-section::before,
  .opening-screen::before,
  .particle-container {
    display: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: light) {
  :root {
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-elevated: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --border-light: #cbd5e1;
  }
}

/* Additional Timeline Animations */
@keyframes dotPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 
      0 4px 12px rgba(139, 75, 140, 0.3),
      0 0 0 2px rgba(139, 75, 140, 0.1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 
      0 6px 16px rgba(139, 75, 140, 0.4),
      0 0 0 4px rgba(139, 75, 140, 0.2);
  }
}

@keyframes timelineItemSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Performance Optimizations - Mobile First Design */
@media (max-width: 768px) {
  /* COMPLETELY HIDE ALL FLOATING ELEMENTS ON MOBILE */
  .floating-elements,
  .floating-hearts,
  .floating-heart,
  .floating-ring {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  /* Hide hero decoration floating hearts */
  .hero-decoration .floating-hearts {
    display: none !important;
  }
  
  /* Performance optimizations */
  * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
  }
  
  /* MOBILE-FIRST COMPACT DESIGN */
  body {
    font-size: 14px;
    line-height: 1.4;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Hero section - much more compact */
  .hero-section {
    padding: 20px 15px 15px 15px;
    min-height: 50vh; /* Much shorter */
    background: var(--gradient-romantic);
  }
  
  .main-title {
    font-size: 1.8rem !important;
    margin-bottom: 10px;
    line-height: 1.2;
  }
  
  .couple-names .groom,
  .couple-names .bride {
    font-size: 3.5rem !important; /* MASSIVE mobile main page names */
    margin: 0 15px;
    line-height: 1.1;
    display: block;
    text-align: center;
  }
  
  .hero-subtitle {
    font-size: 0.85rem !important;
    margin-top: 8px;
    line-height: 1.3;
    padding: 0 10px;
  }
  
  /* Content cards - super compact */
  .content-card {
    padding: 15px !important;
    margin: 8px !important;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  /* Section titles */
  .section-title {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
    text-align: center;
  }
  
  /* Event info - super compact */
  .event-info {
    grid-template-columns: 1fr;
    gap: 10px !important;
  }
  
  .info-item {
    padding: 12px !important;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .info-icon {
    width: 35px !important;
    height: 35px !important;
    font-size: 1.1rem !important;
    line-height: 35px;
  }
  
  .info-content h3 {
    font-size: 0.9rem !important;
    margin-bottom: 2px !important;
    font-weight: 600;
  }
  
  .info-content p {
    font-size: 0.85rem !important;
    margin: 0;
  }
  
  /* Countdown - very compact */
  .countdown-container {
    padding: 12px !important;
    margin-top: 10px !important;
  }
  
  .countdown-title {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    text-align: center;
  }
  
  .countdown-timer {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
  }
  
  .countdown-item {
    padding: 8px 4px !important;
    text-align: center;
  }
  
  .countdown-number {
    font-size: 1.2rem !important;
    line-height: 1.1;
    display: block;
  }
  
  .countdown-label {
    font-size: 0.7rem !important;
    margin-top: 2px;
    display: block;
  }
  
  /* Venue section - compact */
  .venue-info {
    margin-bottom: 12px !important;
    text-align: center;
  }
  
  .venue-name {
    font-size: 1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
    font-weight: 600;
  }
  
  .venue-address {
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }
  
  .venue-subtitle {
    font-size: 0.8rem !important;
    font-style: italic;
  }
  
  .map-container {
    height: 180px !important;
    margin: 10px 0 !important;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .directions-btn {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 8px auto;
  }
  
  /* Schedule section - mobile centered */
  .modern-schedule {
    gap: 16px !important;
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  
  .schedule-card {
    padding: 20px 16px !important;
    margin-bottom: 0 !important;
    border-radius: 12px;
    display: block !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  .schedule-icon {
    width: auto !important;
    height: auto !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    flex-shrink: 0;
    margin-bottom: 12px !important;
    display: block !important;
  }
  
  .schedule-content {
    flex: none;
  }
  
  .schedule-time {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    font-weight: 600;
    color: var(--color-accent);
  }
  
  .schedule-title {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    font-weight: 600;
    color: var(--color-primary);
  }
  
  .schedule-description {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    opacity: 0.9;
    color: var(--color-text-light);
  }
  
  /* Loading screen optimizations */
  .romantic-loader {
    background: var(--gradient-romantic);
  }
  
  .loader-title {
    font-size: 1.1rem !important;
    line-height: 1.3;
    padding: 0 20px;
  }
  
  .loader-bar {
    width: 200px !important;
    height: 6px !important;
    margin: 15px auto;
  }
  
  /* Opening screen optimizations */
  .opening-title {
    font-size: 1.6rem !important;
    margin-bottom: 10px;
  }
  
  .opening-couple .name {
    font-size: 1.3rem !important;
  }
  
  .opening-couple .ampersand {
    font-size: 1rem !important;
    margin: 0 8px;
  }
  
  .opening-subtitle {
    font-size: 0.9rem !important;
    margin: 8px 0;
  }
  
  .opening-date {
    font-size: 1rem !important;
    margin-top: 10px;
  }
  
  /* Calendar button */
  .calendar-btn {
    padding: 10px 16px !important;
    font-size: 0.85rem !important;
    margin: 8px auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  /* Footer */
  footer {
    padding: 15px !important;
    font-size: 0.75rem !important;
  }
  
  /* Disable problematic animations on mobile */
  .scroll-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  
  /* Mobile browser compatibility fixes */
  .main-container {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }
  
  /* Prevent zoom on input focus */
  input, select, textarea {
    font-size: 16px !important;
  }
  
  /* Fix viewport issues */
  .hero-section,
  .content-card,
  .romantic-loader,
  .opening-screen {
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  /* Ensure proper spacing */
  .main-content {
    padding: 0 5px;
  }
  
  /* Fix any overflow issues */
  * {
    box-sizing: border-box;
  }
}
  
  /* Hardware acceleration for better performance */
  .content-card,
  .countdown-item,
  .schedule-card {
    will-change: transform;
    transform: translateZ(0);
  }
  
  /* Smooth scrolling optimization */
  body {
    -webkit-overflow-scrolling: touch;
  }

/* === CLEAN MOBILE DESIGN (NO CONFLICTS) === */
@media screen and (max-width: 768px) {
  /* Hide all floating elements completely */
  .floating-elements,
  .floating-hearts,
  .floating-heart,
  .floating-ring,
  .hero-decoration .floating-hearts,
  .hero-decoration {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  /* Mobile base styles - MOBILE-FIRST DESIGN */
  body {
    font-size: 18px; /* Larger base font for mobile */
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
  }
  
  /* Hero section */
  .hero-section {
    padding: 40px 20px;
    min-height: 70vh;
  }
  
  .main-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .couple-names .groom,
  .couple-names .bride {
    font-size: 3.5rem !important; /* MASSIVE mobile main page names */
    margin: 0 15px; /* Add proper spacing between names */
    line-height: 1.2; /* Better line height to prevent overlap */
    display: block; /* Stack names vertically to prevent overlap */
  }
  
  .heart-divider {
    margin: 0 20px; /* Add space around the heart divider */
  }
  
  .heart-icon {
    font-size: 3rem !important; /* MASSIVE mobile heart icon */
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  /* Content sections */
  .main-content {
    padding: 0 10px;
  }
  
  .content-card {
    margin: 20px 15px;
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
  }
  
  .section-title::after {
    content: '💕';
    position: absolute;
    bottom: -25px !important; /* Fix underline position */
    left: 50% !important;
    transform: translateX(-50%) !important;
    font-size: 1.2rem;
    opacity: 0.7;
    animation: heartBeat 2s ease-in-out infinite;
  }
  
  /* Event info */
  .event-info {
    display: block;
  }
  
  .info-item {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
  }
  
  .info-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .info-content p {
    font-size: 0.95rem;
    margin: 0;
  }
  
  /* Countdown */
  .countdown-container {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
  }
  
  .countdown-title {
    font-size: 3rem !important; /* MASSIVE mobile countdown title */
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
  }
  
  .countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 100%;
  }
  
  .countdown-item {
    text-align: center;
    padding: 15px 8px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .countdown-number {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
    color: var(--color-primary);
  }
  
  .countdown-label {
    font-size: 0.75rem;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
  }
  
  /* Venue - MODERN MOBILE REFINED */
  .venue-section .section-title {
    font-size: 2.2rem !important; /* Refined size */
    margin-bottom: 1.75rem;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .venue-name {
    font-size: 1.7rem !important;
    margin-bottom: 0.85rem;
    text-align: center;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.25;
  }
  .venue-address {
    font-size: 1.15rem !important;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .venue-address p { margin: 4px 0; }
  .venue-subtitle {
    font-size: 1.05rem !important;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin: 0.9rem 0 1.25rem;
    letter-spacing: 0.3px;
  }
  
  .map-container {
    height: 300px; /* Taller map for better visibility */
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
  }
  
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .directions-btn {
    font-size: 1rem !important;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary), #A867A7);
    color: #fff;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 6px 16px -4px rgba(139,75,140,0.35);
    margin: 16px auto 6px;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
  }
  .directions-btn:after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity .35s ease;
  }
  .directions-btn:hover:after { opacity: 1; }
  .directions-btn .btn-icon { display: flex; align-items: center; }
  .directions-btn svg { display: block; width: 20px; height: 20px; }
  .directions-btn .btn-text { line-height: 1; }
  
  /* Schedule */
  .modern-schedule {
    display: block;
  }
  
  .schedule-card {
    margin-bottom: 12px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    gap: 12px;
  }
  
  .schedule-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,255,255,0.15));
    backdrop-filter: blur(6px);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px -4px rgba(139,75,140,0.35);
    grid-row: 1 / span 3;
  }
  .schedule-icon svg { width: 26px; height: 26px; }
  
  /* Schedule - MOBILE OPTIMIZED */
  .schedule-section .section-title {
    font-size: 2.2rem !important;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  .schedule-card {
    margin-bottom: 14px;
    padding: 16px 18px 18px;
    background: rgba(255,255,255,0.10);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px 16px;
    border: 1px solid rgba(255,255,255,0.25);
    position: relative;
  }
  
  .schedule-time {
    font-size: 1.05rem !important;
    font-weight: 600;
    color: var(--primary);
    grid-column: 2;
    opacity: 0.85;
    letter-spacing: 0.5px;
  }
  
  .schedule-title {
    font-size: 1.25rem !important;
    font-weight: 600;
    margin: 2px 0 4px;
    text-align: left;
    color: var(--text-primary);
    line-height: 1.25;
    grid-column: 2;
  }
  
  .schedule-description {
    font-size: 0.95rem !important;
    line-height: 1.35;
    text-align: left;
    color: var(--text-secondary);
    grid-column: 2;
  }
  
  /* Loading screens - MOBILE OPTIMIZED */
  .loader-title {
    font-size: 2.2rem !important;
    padding: 0 14px;
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.4px;
  }
  
  /* Hide emoji icons on mobile for clean look */
  .schedule-icon,
  .directions span:first-child,
  .info span:first-child {
    display: none !important;
  }
  
  .opening-title {
    font-size: 2.4rem !important;
    line-height: 1.15;
    text-align: center;
    font-weight: 700;
    color: var(--primary) !important;
  }
  
  .opening-couple .name {
    font-size: 2.6rem !important;
    display: block;
    margin: 10px 0;
    line-height: 1.15;
    font-weight: 600;
  }
  
  .opening-subtitle {
    font-size: 1.05rem !important;
    line-height: 1.4;
    text-align: center;
    margin: 0.75rem 0 1rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
  
  .opening-date {
    font-size: 1.1rem !important;
    line-height: 1.3;
    text-align: center;
    margin-top: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .opening-couple .ampersand {
    font-size: 1.9rem !important;
    margin: 0 12px;
    display: inline-block;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
  }
  
  /* Disable animations */
  .scroll-animate {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ===== ENHANCED VENUE & SCHEDULE STYLING ===== */

/* Venue header improvements */
.venue-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  justify-content: center;
  text-align: center;
}

.venue-emoji {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.venue-address p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
  color: var(--text-secondary);
}

/* Schedule card improvements */
.schedule-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 20px rgba(139, 75, 140, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 75, 140, 0.1);
}

.schedule-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 75, 140, 0.15);
}

.schedule-icon {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, rgba(139, 75, 140, 0.1), rgba(212, 165, 165, 0.1));
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
}

/* Better mobile responsiveness */
@media (max-width: 768px) {
  .venue-header {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .venue-emoji {
    font-size: 3rem;
  }
  
  .schedule-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
  }
}
