/* Import elegant script fonts to match save-the-date */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes:wght@400&family=Dancing+Script:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

body {
  font-family: 'Cormorant Garamond', serif;
  background: linear-gradient(135deg, #f8f6f4 0%, #e8e2db 100%);
  color: #2c3e50;
  margin: 0;
  padding: 0;
  padding-top: 80px; /* Account for fixed navigation */
  line-height: 1.7;
  position: relative;
}

/* Enhanced watercolor background overlay with romantic elegance */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Elegant watercolor washes with stronger romantic tones */
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(221, 238, 247, 0.45) 0%, rgba(173, 216, 230, 0.28) 40%, rgba(173, 216, 230, 0.12) 75%, transparent 90%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(230, 240, 250, 0.35) 0%, rgba(176, 196, 222, 0.22) 45%, rgba(176, 196, 222, 0.08) 80%, transparent 95%),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(240, 248, 255, 0.30) 0%, rgba(221, 238, 247, 0.18) 50%, rgba(221, 238, 247, 0.06) 85%, transparent 95%),
    radial-gradient(ellipse 50% 35% at 75% 75%, rgba(248, 250, 252, 0.25) 0%, rgba(216, 235, 244, 0.15) 55%, rgba(216, 235, 244, 0.04) 90%, transparent 95%),
    radial-gradient(ellipse 90% 45% at 50% 40%, rgba(252, 254, 255, 0.20) 0%, rgba(230, 240, 250, 0.12) 60%, rgba(230, 240, 250, 0.03) 95%, transparent 100%),
    /* More visible texture patterns */
    radial-gradient(circle at 25% 25%, rgba(173, 216, 230, 0.08) 1px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(176, 196, 222, 0.06) 1px, transparent 2px),
    radial-gradient(circle at 85% 15%, rgba(221, 238, 247, 0.05) 1px, transparent 2px),
    radial-gradient(circle at 15% 85%, rgba(216, 235, 244, 0.04) 1px, transparent 2px),
    /* Enhanced romantic shimmer */
    linear-gradient(135deg, 
      rgba(255, 255, 255, 0.15) 0%, 
      rgba(248, 250, 252, 0.12) 25%, 
      rgba(240, 248, 255, 0.08) 50%, 
      rgba(248, 250, 252, 0.12) 75%, 
      rgba(255, 255, 255, 0.15) 100%);
  background-size: 
    800px 600px, 700px 500px, 900px 700px, 600px 400px, 1100px 800px,
    80px 80px, 120px 120px, 160px 160px, 100px 100px,
    100% 100%;
  background-position: 
    0% 0%, 100% 0%, 0% 100%, 100% 100%, 50% 50%,
    0 0, 40px 40px, 80px 80px, 60px 60px,
    0 0;
  pointer-events: none;
  z-index: -1;
  animation: subtleShift 30s ease-in-out infinite;
}

@keyframes subtleShift {
  0%, 100% { opacity: 1; transform: translateX(0) translateY(0); }
  50% { opacity: 0.8; transform: translateX(10px) translateY(-5px); }
}

header {
  background: 
    /* Flowing watercolor wash layers that blend better */
    radial-gradient(ellipse 90% 60% at 20% 20%, rgba(173, 216, 230, 0.40) 0%, rgba(173, 216, 230, 0.25) 35%, rgba(173, 216, 230, 0.12) 65%, rgba(173, 216, 230, 0.04) 85%, transparent 100%),
    radial-gradient(ellipse 85% 55% at 80% 15%, rgba(176, 196, 222, 0.35) 0%, rgba(176, 196, 222, 0.22) 40%, rgba(176, 196, 222, 0.10) 70%, rgba(176, 196, 222, 0.03) 90%, transparent 100%),
    radial-gradient(ellipse 95% 70% at 30% 85%, rgba(221, 238, 247, 0.30) 0%, rgba(221, 238, 247, 0.18) 45%, rgba(221, 238, 247, 0.08) 75%, rgba(221, 238, 247, 0.02) 95%, transparent 100%),
    radial-gradient(ellipse 80% 50% at 70% 75%, rgba(216, 235, 244, 0.25) 0%, rgba(216, 235, 244, 0.15) 50%, rgba(216, 235, 244, 0.06) 80%, transparent 95%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(230, 240, 250, 0.20) 0%, rgba(230, 240, 250, 0.12) 55%, rgba(230, 240, 250, 0.04) 85%, transparent 100%),
    /* Enhanced flowing patterns */
    radial-gradient(circle at 25% 25%, rgba(173, 216, 230, 0.12) 2px, transparent 4px),
    radial-gradient(circle at 75% 75%, rgba(176, 196, 222, 0.10) 1.5px, transparent 3px),
    radial-gradient(circle at 85% 15%, rgba(221, 238, 247, 0.08) 2px, transparent 3.5px),
    radial-gradient(circle at 15% 85%, rgba(216, 235, 244, 0.06) 1px, transparent 2.5px),
    /* Seamless base gradient */
    linear-gradient(135deg, 
      rgba(248, 246, 244, 0.98) 0%, 
      rgba(245, 241, 235, 0.95) 20%, 
      rgba(240, 236, 230, 0.92) 40%, 
      rgba(235, 231, 225, 0.88) 60%, 
      rgba(240, 236, 230, 0.92) 80%, 

/* Mobile line breaks - hidden by default */
.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}


      rgba(248, 246, 244, 0.98) 100%);
  background-size: 
    100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
    45px 45px, 65px 65px, 85px 85px, 55px 55px,
    100% 100%;
  background-position: 
    0 0, 0 0, 0 0, 0 0, 0 0,
    0 0, 22px 22px, 42px 42px, 27px 27px,
    0 0;
  text-align: center;
  padding: 4rem 2rem;
  color: #34495e;
  position: relative;
  border-bottom: 1px solid rgba(173, 216, 230, 0.35);
  overflow: hidden;
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-card {
  max-width: 600px;
  width: calc(100% - 4rem);
  margin: 2rem auto 3rem auto;
  padding: 2rem;
  box-sizing: border-box;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 10;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Responsive watercolor washes */
    radial-gradient(ellipse 80vw 40vh at 20% 30%, rgba(173, 216, 230, 0.18) 0%, rgba(173, 216, 230, 0.10) 40%, rgba(173, 216, 230, 0.04) 70%, transparent 90%),
    radial-gradient(ellipse 70vw 35vh at 80% 25%, rgba(176, 196, 222, 0.15) 0%, rgba(176, 196, 222, 0.08) 45%, rgba(176, 196, 222, 0.03) 70%, transparent 95%),
    radial-gradient(ellipse 60vw 30vh at 30% 80%, rgba(221, 238, 247, 0.12) 0%, rgba(221, 238, 247, 0.06) 50%, rgba(221, 238, 247, 0.02) 75%, transparent 95%),
    radial-gradient(ellipse 75vw 45vh at 70% 70%, rgba(216, 235, 244, 0.10) 0%, rgba(216, 235, 244, 0.05) 55%, transparent 85%),
    radial-gradient(ellipse 50vw 25vh at 50% 45%, rgba(230, 240, 250, 0.08) 0%, rgba(230, 240, 250, 0.04) 60%, transparent 90%),
    /* Elegant shimmer effect */
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 47%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.08) 53%, transparent 70%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 120px 120px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, -60px -60px;
  pointer-events: none;
  animation: headerShimmer 20s ease-in-out infinite;
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Romantic border effect */
    linear-gradient(0deg, rgba(173, 216, 230, 0.1) 0px, transparent 3px),
    linear-gradient(90deg, rgba(176, 196, 222, 0.08) 0px, transparent 3px),
    linear-gradient(180deg, rgba(221, 238, 247, 0.06) 0px, transparent 3px),
    linear-gradient(270deg, rgba(216, 235, 244, 0.04) 0px, transparent 3px);
  pointer-events: none;
}

/* Navigation Menu Styles */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(173, 216, 230, 0.2);
  z-index: 1000;
  padding: 0 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 1rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.nav-menu li {
  margin: 0;
  text-align: center;
}

.nav-menu a {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a4a6b;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none;
  border-bottom: none;
}

.nav-menu a:hover {
  background: rgba(173, 216, 230, 0.15);
  color: #2c3e50;
  transform: translateY(-2px);
  border-bottom: none;
}

.nav-menu a.active {
  background: rgba(173, 216, 230, 0.35);
  color: #2c3e50;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(173, 216, 230, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.6rem;
  position: fixed;
  right: 1rem;
  top: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(248, 246, 244, 0.35) 100%);
  border-radius: 12px;
  border: 1px solid rgba(173, 216, 230, 0.2);
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.05),
    0 1px 6px rgba(173, 216, 230, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  z-index: 1002;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.15) 0%, rgba(176, 196, 222, 0.12) 100%);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mobile-menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

.mobile-menu-toggle span {
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
  margin: 1.5px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-4px, -5px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  body {
    padding-top: 75px; /* Adjust for optimized mobile nav */
  }

  .navigation {
    padding: 0 5rem 0 1rem;
    position: fixed;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(173, 216, 230, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-menu.active {
    max-height: 80vh;
    padding: 1rem 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(173, 216, 230, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 0;
    width: 100%;
    text-align: left;
  }

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

@keyframes headerShimmer {
  0%, 100% { 
    opacity: 1; 
    background-position: 0 0, 0 0, 0 0, 0 0, -100px -100px;
  }
  50% { 
    opacity: 0.9; 
    background-position: 0 0, 0 0, 0 0, 0 0, 100px 100px;
  }
}

header h1 {
  font-size: 6.5rem;
  margin: 0 0 1.5rem 0;
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: #2c3e50;
  text-shadow: 
    0 2px 6px rgba(255, 255, 255, 0.9),
    0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

header .date {
  font-size: 4.2rem;
  margin: 1rem 0;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

header .location {
  font-size: 3.2rem;
  margin: 0.5rem 0 2rem 0;
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
  color: #34495e;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

#countdown {
  margin: 2rem 0 1rem 0;
  font-size: 3rem;
  color: #2c3e50;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-align: center;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

main {
  padding: 3rem 2rem;
  max-width: 1200px;
  width: calc(100% - 4rem);
  margin: 2rem auto;
  background: transparent;
  border-radius: 15px;
  box-shadow: none;
  backdrop-filter: none;
  box-sizing: border-box;
}

section {
  margin-bottom: 3.5rem;
  padding: 0;
  width: 100%;
}

section h2 {
  color: #2c3e50;
  font-size: 2.6rem;
  margin: 0;
  padding: 0;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  text-align: center;
  position: relative;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #34495e 50%, transparent 100%);
}

section p {
  font-size: 1.1rem;
  text-align: center;
  color: #4a4a6b;
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  max-width: 100%;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
}

ul li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #4a4a6b;
  font-family: 'Cormorant Garamond', serif;
}

ul li strong {
  color: #599ac3;
  font-weight: 500;
}

a {
  color: #000000;
  text-decoration: underline;
  font-style: italic;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #333333;
  text-decoration: underline;
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 4px;
  border-radius: 4px;
}

footer {
  background: linear-gradient(
    135deg,
    rgba(240, 236, 230, 0.95) 0%,
    rgba(232, 226, 219, 0.95) 100%
  );
  text-align: center;
  padding: 2rem;
  color: #2c3e50;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  font-weight: 500;
  border-top: 1px solid rgba(52, 73, 94, 0.1);
}

iframe {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 75px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header {
    padding: 2rem 1rem;
    min-height: 70vh;
    margin: 0 -1rem;
    background-size: 
      100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
      30px 30px, 45px 45px, 60px 60px, 35px 35px,
      100% 100%;
    background-position: 
      0 0, 0 0, 0 0, 0 0, 0 0,
      0 0, 15px 15px, 30px 30px, 18px 18px,
      0 0;
  }

  header::before {
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 80px 80px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, -40px -40px;
  }

  main {
    margin: 1rem 0;
    padding: 2rem 1.5rem;
    width: 100%;
    border-radius: 10px;
  }

  section {
    margin-bottom: 2rem;
    padding: 0;
    width: 100%;
  }

  .countdown-card {
    width: calc(100% - 2rem);
    margin: 1.5rem auto 2rem auto;
    padding: 1.5rem;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }

  .direction-item {
    width: 100%;
    box-sizing: border-box;
  }
}

  header h1 {
    font-size: 3.8rem;
    margin: 0 0 1rem 0;
    text-align: center;
    line-height: 1.2;
  }

  header .date {
    font-size: 2.5rem;
    margin: 1rem 0;
    text-align: center;
  }

  header .location {
    font-size: 1.9rem;
    margin: 0.5rem 0 1.5rem 0;
    text-align: center;
  }

  #countdown {
    font-size: 1.7rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0 1rem;
    text-align: center;
    line-height: 1.4;
  }

  section h2 {
    font-size: 2.2rem;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.3;
  }

  section p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
  }

  ul {
    padding: 0 0.5rem;
    text-align: center;
  }

  ul li {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.8rem;
  }

  .photo-gallery-inner {
    padding: 1.5rem 1rem;
    margin: 1rem 0;
  }

  .carousel-container {
    max-width: 100%;
    margin: 1.5rem auto;
  }

  .carousel-wrapper {
    height: 320px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    gap: 8px;
    margin-top: 1.5rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .rsvp-placeholder {
    padding: 2rem 1rem;
    margin-top: 2rem;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  header {
    padding: 2rem 0.5rem;
    margin: 0 -0.5rem;
  }

  header h1 {
    font-size: 3.2rem;
    margin: 0 0 1rem 0;
    text-align: center;
    line-height: 1.2;
  }

  header .date {
    font-size: 2rem;
    margin: 1rem 0;
    text-align: center;
  }

  header .location {
    font-size: 1.6rem;
    margin: 0.5rem 0 1.5rem 0;
    text-align: center;
  }

  main {
    margin: 0.5rem 0;
    padding: 1.5rem 1rem;
    width: 100%;
  }

  section {
    width: 100%;
  }

  section h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  section p {
    text-align: center;
    padding: 0;
  }

  .carousel-wrapper {
    height: 260px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .collapsible-content {
    padding: 0 1rem 1rem 1rem;
  }

  .collapsible-content.collapsed {
    padding: 0 1rem;
  }
}

/* Photo Carousel Styles */
.photo-gallery-inner {
  background: transparent;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: none;
  backdrop-filter: none;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 2rem auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: none;
  box-sizing: border-box;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

/* Responsive carousel heights */
@media (max-width: 1200px) {
  .carousel-wrapper {
    height: 400px;
  }
}

@media (max-width: 900px) {
  .carousel-wrapper {
    height: 350px;
  }
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  touch-action: pan-y;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(248, 246, 244, 0.3);
}

.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(173, 216, 230, 0.1) 0%,
    rgba(176, 196, 222, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #34495e;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 15px;
}

.carousel-next {
  right: 15px;
}

.carousel-dots {
  display: none;
}

.carousel-dot {
  display: none;
}

.carousel-dot.active {
  display: none;
}

.carousel-dot:hover {
  display: none;
}

/* RSVP Placeholder Styles */
.rsvp-placeholder {
  background: rgba(248, 246, 244, 0.9);
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 3rem;
  text-align: center;
  border: 2px dashed rgba(173, 216, 230, 0.3);
  position: relative;
}

.rsvp-placeholder::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    rgba(173, 216, 230, 0.1),
    rgba(176, 196, 222, 0.1),
    rgba(221, 238, 247, 0.1)
  );
  border-radius: 25px;
  z-index: -1;
}

/* Hotel section styles */
.hotel-section {
  background: transparent;
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  backdrop-filter: none;
}

.hotel-section h3 {
  color: #4a4a6b;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  text-align: center;
}

.hotel-amenities {
  text-align: center;
}

.hotel-carousel {
  margin: 2rem 0;
}

.hotel-carousel .carousel-container {
  max-width: 500px;
  margin: 1.5rem auto;
}

.hotel-carousel .carousel-wrapper {
  height: 350px;
}

@media (max-width: 768px) {
  .hotel-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .hotel-section h3 {
    font-size: 1.8rem;
  }

  .hotel-carousel .carousel-wrapper {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hotel-carousel .carousel-wrapper {
    height: 220px;
  }
}

/* Travel directions styles */
.travel-directions {
  background: rgba(248, 246, 244, 0.6);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.travel-directions h3 {
  color: #4a4a6b;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  text-align: center;
}

.airport-card {
  margin: 1.5rem 0 2rem 0;
}

.buffalo-airport {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.2), rgba(176, 196, 222, 0.15));
  border: 2px solid rgba(173, 216, 230, 0.3);
  text-align: center;
}

.buffalo-airport h4 {
  font-size: 1.5rem;
  color: #2c3e50;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  justify-content: center;
}

.direction-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.direction-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.direction-item h4 {
  color: #599ac3;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
}

.direction-item p {
  margin-bottom: 0.5rem;
  text-align: left;
  font-size: 1rem;
  color: #4a4a6b;
}

.direction-item p strong {
  color: #2c3e50;
}

@media (max-width: 768px) {
  .travel-directions {
    padding: 1.5rem;
  }

  .travel-directions h3 {
    font-size: 1.8rem;
  }

  .directions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .direction-item {
    padding: 1.2rem;
  }

  .direction-item h4 {
    font-size: 1.2rem;
  }
}

/* Collapsible Section Styles */
.collapsible-section {
  border: none;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  border: none;
}

.collapsible-section:hover {
  transform: none;
  box-shadow: none;
}

.collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  margin: 0;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  position: relative;
}

.collapsible-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(173, 216, 230, 0.05) 0%, 
    rgba(176, 196, 222, 0.03) 50%, 
    rgba(221, 238, 247, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.collapsible-header:hover::before {
  opacity: 1;
}

.collapsible-header::after {
  display: none;
}

.collapse-icon {
  font-size: 0.9rem;
  color: #599ac3;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 1.5rem;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(173, 216, 230, 0.1);
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(173, 216, 230, 0.15);
}

.collapsible-header:hover .collapse-icon {
  opacity: 0.8;
  background: rgba(173, 216, 230, 0.15);
  transform: scale(1.05);
}

.collapsible-header.active .collapse-icon {
  transform: rotate(180deg) scale(1.02);
  background: rgba(173, 216, 230, 0.2);
  opacity: 1;
}

.collapsible-content {
  padding: 0 2.5rem 2rem 2.5rem;
  max-height: none;
  overflow: visible;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  width: 100%;
  box-sizing: border-box;
}

.collapsible-content.collapsed {
  max-height: 0;
  padding: 0 2rem;
  opacity: 0;
  overflow: hidden;
}

/* Content background containers - only for content that doesn't have its own containers */
.collapsible-content > p,
.collapsible-content > h3:not(.hotel-section h3):not(.travel-directions h3),
.collapsible-content > ul:not(.hotel-amenities ul):not(.nav-menu) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Special handling for main content containers */
.photo-gallery-inner,
.hotel-section,
.travel-directions {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Ensure nested elements maintain their original styling */
.photo-gallery-inner *,
.hotel-section *,
.travel-directions * {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
}

/* Restore specific styling for direction items */
.directions-grid .direction-item {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 10px !important;
  padding: 1.5rem !important;
  margin: 0 !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Restore carousel styling */
.carousel-nav {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 1) !important;
}

/* Restore buffalo airport card styling */
.buffalo-airport {
  background: linear-gradient(135deg, rgba(173, 216, 230, 0.2), rgba(176, 196, 222, 0.15)) !important;
  border: 2px solid rgba(173, 216, 230, 0.3) !important;
}

/* Recommended hotel section styling */
.recommended-hotel-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Additional hotels section styling */
.additional-hotels-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Attractions section styling */
.attractions-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Registry section styling */
.registry-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* FAQs section styling */
.faqs-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* RSVP section styling */
.rsvp-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Ensure map wrapper is transparent */
.map-wrapper,
.map-wrapper iframe {
  background: transparent !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
  border-radius: 15px !important;
}

/* Mobile responsive adjustments for collapsible sections */
@media (max-width: 768px) {
  .collapsible-section {
    margin-bottom: 1.2rem;
    border-radius: 16px;
  }

  .collapsible-header {
    padding: 1.5rem 1.8rem;
    font-size: 1.8rem;
  }

  .collapse-icon {
    font-size: 0.8rem;
    margin-left: 0.8rem;
    opacity: 0.4;
    min-width: 28px;
    min-height: 28px;
    padding: 0.4rem;
  }

  .collapsible-content {
    padding: 0 1.8rem 1.8rem 1.8rem;
    max-height: none;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .collapsible-content.collapsed {
    padding: 0 1.8rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  /* Mobile content backgrounds */
  .collapsible-content > * {
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .photo-gallery-inner,
  .hotel-section,
  .travel-directions {
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 480px) {
  .collapsible-header {
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
  }

  .collapsible-content {
    padding: 0 1.2rem 1.2rem 1.2rem;
    max-height: none;
    overflow: visible;
  }

  .collapsible-content.collapsed {
    padding: 0 1.2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  /* Smallest mobile content backgrounds */
  .collapsible-content > * {
    padding: 1rem !important;
    margin-bottom: 0.8rem !important;
  }

  .photo-gallery-inner,
  .hotel-section,
  .travel-directions {
    padding: 1rem !important;
    margin-bottom: 0.8rem !important;
  }
}

/* Add subtle animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}</keyframes>

section {
  animation: fadeIn 0.8s ease-out;
}

section:nth-child(2) { animation-delay: 0.1s; }
section:nth-child(3) { animation-delay: 0.2s; }
section:nth-child(4) { animation-delay: 0.3s; }
section:nth-child(5) { animation-delay: 0.4s; }
section:nth-child(6) { animation-delay: 0.5s; }
section:nth-child(7) { animation-delay: 0.6s; }

/* Schedule section styling */
.schedule-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 246, 244, 0.35) 100%) !important;
  border-radius: 15px !important;
  padding: 2rem !important;
  margin-bottom: 1.5rem !important;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(173, 216, 230, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.schedule-section h3 {
  color: #4a4a6b;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  text-align: center;
}

/* Add missing schedule section styling */
.schedule-section {