@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  
  /* Colors */
  --primary-color: white;
  --secondary-color: #414649;
  --accent-color: #B2C3D3;
  
  /* Spacing */
  --letter-spacing-regular: 3px;
  --letter-spacing-wide: 10px;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}


.animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(178, 195, 211, 0.2);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

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

.nav-logo h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-color);
  margin: 0;
  font-weight: 400;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

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

/* ========================================
   LANDING SECTION
   ======================================== */
.low-opacity-background {
  --bg-image: url('../assets/landing.jpg');
  --bg-opacity: 0.80;

  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.low-opacity-background::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: var(--bg-opacity);
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
}

h1.title {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: white;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.subtitle-container {
  display: inline;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  position: relative;
  z-index: 2;
}

.subtitle {
  color: var(--primary-color);
  font-family: var(--font-primary);
  letter-spacing: var(--letter-spacing-regular);
  margin-left: 3rem;
}

.cta {
  border-radius: 50px !important;
  background: transparent !important;
  color: var(--primary-color) !important;
  font-family: var(--font-primary) !important;
  width: 120px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta:hover {
  background: var(--primary-color)!important;
  color: var(--secondary-color)!important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(178, 195, 211, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   PROPOSAL STORY SECTION
   ======================================== */
.proposal-story {
  background: #fafbfc;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.proposal-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(178, 195, 211, 0.03) 0%, rgba(135, 206, 235, 0.05) 50%, rgba(178, 195, 211, 0.03) 100%);
  pointer-events: none;
}

.proposal-story::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.story-header {
  text-align: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.story-title {
  font-family: var(--font-accent);
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.story-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto;
}

.story-timeline {
  position: relative;
}

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

.timeline-item {
  margin-bottom: 1.2rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  direction: rtl;
}

.timeline-item:nth-child(even) .timeline-content > * {
  direction: ltr;
}

.timeline-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.timeline-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.timeline-image:nth-child(even) {
  animation-delay: -3s;
}

.timeline-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.timeline-image:hover img {
  transform: scale(1.05);
}

.timeline-text {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(178, 195, 211, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.timeline-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 20px 20px 0 0;
}


.timeline-text h3 {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.timeline-text p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   DRESS CODE SECTION
   ======================================== */
.dress-code-section {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(178, 195, 211, 0.2);
  border-bottom: 1px solid rgba(178, 195, 211, 0.2);
}

.dress-code-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 248, 255, 0.6) 100%);
  pointer-events: none;
}

.dress-code-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(178, 195, 211, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dress-code-container {
  max-width: 1000px;
  margin: 0 auto;
}

.dress-code-header {
  text-align: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.dress-code-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.dress-code-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto;
}

.dress-code-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dress-code-info {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(178, 195, 211, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dress-code-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 25px 25px 0 0;
}


.dress-code-info:hover {
  transform: translateY(-5px);
}

.dress-code-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}

.dress-code-info h3 {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.dress-code-info p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.6;
}

.dress-code-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dress-code-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  padding: 1.2rem;
  border: 1px solid rgba(178, 195, 211, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dress-code-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 15px 15px 0 0;
}

.dress-code-item:hover {
  transform: translateX(5px);
}

.dress-code-item h4 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.dress-code-item p {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  line-height: 1.5;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
  background: #ffffff;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(178, 195, 211, 0.2);
  border-bottom: 1px solid rgba(178, 195, 211, 0.2);
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 50%, rgba(240, 248, 255, 0.7) 100%);
  pointer-events: none;
}

.menu-section::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.menu-container {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.menu-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.menu-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto 1rem;
}

.menu-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  font-style: italic;
}

.menu-content {
  position: relative;
  z-index: 1;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 0.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(178, 195, 211, 0.2);
}

.menu-tab {
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
  position: relative;
  flex: 1;
  text-align: center;
}

.menu-tab:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.menu-tab.active {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(178, 195, 211, 0.3);
}

.menu-tab-content {
  position: relative;
}

.menu-course {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 1.2rem;
  border: 1px solid rgba(178, 195, 211, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-course.active {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}


.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  border: 1px solid rgba(178, 195, 211, 0.15);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 195, 211, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.item-name {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.item-description {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  opacity: 0.8;
  line-height: 1.5;
}

/* ========================================
   MUSIC SECTION
   ======================================== */
.music-section {
  background: #f0f2f5;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(178, 195, 211, 0.2);
  border-bottom: 1px solid rgba(178, 195, 211, 0.2);
}

.music-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(240, 248, 255, 0.6) 100%);
  pointer-events: none;
}

.music-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(178, 195, 211, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.music-container {
  max-width: 1000px;
  margin: 0 auto;
}

.music-header {
  text-align: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.music-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.music-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto 1rem;
}

.music-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  font-style: italic;
}

.music-content {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.spotify-embed {
  width: 100%;
  max-width: 1000px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(178, 195, 211, 0.2);
  transition: transform 0.3s ease;
}

.spotify-embed iframe {
  border: none;
  border-radius: 25px;
  display: block;
  margin: 0;
  padding: 0;
}

.spotify-embed:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ========================================
   COUNTDOWN SECTION
   ======================================== */
.countdown-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.countdown-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.countdown-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.countdown-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.countdown-container {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 1.2rem;
}

.countdown-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.countdown-item:hover::before {
  left: 100%;
}

.countdown-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.countdown-date {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ========================================
   RSVP SECTION
   ======================================== */
.rsvp-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.rsvp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(178, 195, 211, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(108, 117, 125, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.rsvp-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rsvp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rsvp-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.rsvp-subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
}

.rsvp-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid rgba(178, 195, 211, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
              0 8px 25px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.rsvp-form:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 
              0 10px 30px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.form-group input {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(178, 195, 211, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--secondary-color);
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(178, 195, 211, 0.2), 
              0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder {
  color: #999;
  font-style: italic;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.rsvp-button {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #8fa3b8 100%);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(178, 195, 211, 0.4),
              0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.rsvp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.rsvp-button:hover::before {
  left: 100%;
}

.rsvp-button:hover {
  background: linear-gradient(135deg, #8fa3b8 0%, var(--accent-color) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(178, 195, 211, 0.5),
              0 6px 20px rgba(0, 0, 0, 0.15);
}

.rsvp-button:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(178, 195, 211, 0.4),
              0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ========================================
   CAROUSEL SECTION
   ======================================== */
.carousel-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 0;
  overflow: hidden;
}

.carousel-container {
  max-width: none;
  margin: 0;
  position: relative;
  width: 100%;
}

.carousel-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 2rem 0;
}

.carousel-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.carousel-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto;
}

.carousel-wrapper {
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  width: fit-content;
  will-change: transform;
}

.carousel-slide {
  border-radius: 20px;
  flex: 0 0 300px;
  height: 400px;
  margin-right: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.carousel-slide:hover {
  transform: scale(1.02);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-controls {
  display: none;
}


/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  text-align: start;
}

.footer-title {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: start;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.footer-item span {
  color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Navigation Responsive */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
  
  .nav-logo h2 {
    font-size: 1.5rem;
  }
  
}

@media (max-width: 480px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .nav-link {
    font-size: 0.75rem;
  }
  
  .nav-logo h2 {
    font-size: 1.3rem;
  }
}

/* Landing Section Responsive */
@media (max-width: 768px) {
  h1.title {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }
  
  .subtitle {
    margin-left: 1.5rem;
    font-size: 0.9rem;
  }
  
  .low-opacity-background {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1.title {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .subtitle {
    margin-left: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
  
  .subtitle-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .subtitle {
    margin-left: 0;
  }
  
  .cta {
    width: 120px;
  }
  
  .low-opacity-background {
    height: 60vh;
  }
}

/* Proposal Story Responsive */
@media (max-width: 768px) {
  .proposal-story {
    padding: 2rem 1rem;
  }
  
  .story-title {
    font-size: 2.2rem;
  }
  
  .story-timeline::before {
    left: 20px;
  }
  
  .timeline-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-left: 2rem;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    direction: ltr;
  }
  
  /* Ensure images come first on mobile */
  .timeline-content {
    display: flex;
    flex-direction: column;
  }
  
  .timeline-image {
    order: 1;
  }
  
  .timeline-text {
    order: 2;
  }
  
  .timeline-image img {
    aspect-ratio: 16/9;
    height: auto;
  }
}

/* Dress Code Responsive */
@media (max-width: 768px) {
  .dress-code-section {
    padding: 2rem 1rem;
  }
  
  .dress-code-title {
    font-size: 2.2rem;
  }
  
  .dress-code-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dress-code-info h3 {
    font-size: 2rem;
  }
  
  .dress-code-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .dress-code-title {
    font-size: 2rem;
  }
  
  .dress-code-info h3 {
    font-size: 1.8rem;
  }
  
  .dress-code-icon {
    font-size: 2rem;
  }
}

/* Menu Responsive */
@media (max-width: 768px) {
  .menu-section {
    padding: 2rem 1rem;
  }
  
  .menu-title {
    font-size: 2.2rem;
  }
  
  .menu-tabs {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .menu-tab {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  
  .menu-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .menu-title {
    font-size: 2.2rem;
  }
  
  .menu-course h3 {
    font-size: 1.8rem;
  }
  
  .item-name {
    font-size: 1rem;
  }
  
  .item-description {
    font-size: 0.9rem;
  }
}

/* Music Responsive */
@media (max-width: 768px) {
  .music-section {
    padding: 2rem 1rem;
  }
  
  .music-title {
    font-size: 2.2rem;
  }
  
  .spotify-embed {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .music-title {
    font-size: 2.2rem;
  }
  
  .spotify-embed iframe {
    height: 300px;
  }
}

/* Countdown Responsive */
@media (max-width: 768px) {
  .countdown-section {
    height: 80vh;
  }
  
  .countdown-container {
    padding: 1.2rem;
    max-height: 100%;
    overflow-y: auto;
  }
  
  .countdown-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
  }
  
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
  }
  
  .countdown-item {
    padding: 1.5rem 0.5rem;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.9rem;
  }
  
  .countdown-date {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .countdown-section {
    height: 85vh;
  }
  
  .countdown-container {
    padding: 1rem;
    max-height: 100%;
    overflow-y: auto;
  }
  
  .countdown-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }
  
  .countdown-timer {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .countdown-item {
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 1.8rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
  
  .countdown-date {
    font-size: 0.9rem;
  }
}

/* RSVP Responsive */
@media (max-width: 768px) {
  .rsvp-section {
    padding: 2rem 1rem;
  }
  
  .rsvp-title {
    font-size: 2.2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-group.full-width {
    margin-bottom: 1.2rem;
  }
  
  .form-actions {
    justify-content: center;
  }
  
  .rsvp-button {
    width: 100%;
    padding: 0.5rem 2rem;
  }
}

@media (max-width: 480px) {
  .rsvp-title {
    font-size: 2.2rem;
  }
  
  .rsvp-subtitle {
    font-size: 1rem;
  }
  
  .form-group input {
    padding: 0.7rem 1.2rem;
    min-width: 150px;
  }
}

/* Carousel Responsive */
@media (max-width: 768px) {
  .carousel-section {
    padding: 0;
  }
  
  .carousel-header {
    padding: 2rem 1rem 0;
  }
  
  .carousel-title {
    font-size: 2.2rem;
  }
  
  .carousel-slide {
    flex: 0 0 250px;
    height: 300px;
    margin-right: 15px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-controls {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .carousel-title {
    font-size: 2.2rem;
  }
  
  .carousel-slide {
    flex: 0 0 200px;
    height: 250px;
    margin-right: 10px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
  }
  
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 2rem 1rem;
  }
  
  .footer-title {
    font-size: 2rem;
  }
  
  .footer-item {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-title {
    font-size: 1.8rem;
  }
  
  .footer-info {
    gap: 1rem;
  }
  
  .footer-item {
    font-size: 0.9rem;
    gap: 0.8rem;
  }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(-1px);
}

/* Responsive Back to Top Button */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}