/* Wake Up Dead Man - Mystery Evening Invitation */
/* Color palette inspired by stained glass: deep purples, blues, golds, and warm candlelight */

:root {
  /* Primary Colors - Stained Glass */
  --deep-purple: #2a1b3d;
  --royal-purple: #44318d;
  --midnight-blue: #1a1a4e;
  --stained-blue: #3d5a80;
  
  /* Accent Colors */
  --gold: #d4af37;
  --gold-light: #f0d77c;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --crimson: #8b2942;
  --flame-orange: #e07b39;
  
  /* Background Colors */
  --bg-dark: #0a0612;
  --bg-card: rgba(26, 17, 36, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Text Colors */
  --text-cream: #f5f0e8;
  --text-muted: #a89fb0;
  --text-gold: #f0d77c;
  
  /* Shadows & Effects */
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.2);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'EB Garamond', 'Crimson Text', Georgia, serif;
  background: var(--bg-dark);
  color: var(--text-cream);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.stained-glass-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(68, 49, 141, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(61, 90, 128, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 70%, rgba(139, 41, 66, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(42, 27, 61, 0.4) 0%, transparent 45%),
    linear-gradient(180deg, var(--bg-dark) 0%, #150d1f 50%, var(--bg-dark) 100%);
  pointer-events: none;
}

.candle-glow {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(224, 123, 57, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatUp 8s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

/* Main Content */
main {
  position: relative;
  z-index: 2;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out;
}

.invitation-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  animation: shimmer 3s ease-in-out infinite;
}

.badge-text {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

@keyframes shimmer {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 40px var(--gold-glow), 0 0 60px rgba(212, 175, 55, 0.1); }
}

.main-title {
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-prelude {
  font-family: 'Crimson Text', serif;
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.title-mystery {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--flame-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.1;
}

.date-reveal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
  flex-wrap: wrap;
}

.date-ornament {
  color: var(--gold);
  font-size: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.date-ornament.left { animation-delay: 0s; }
.date-ornament.right { animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.date-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 4vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-cream);
}

.hero-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.8s both;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 1s both;
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover, .cta-button:active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow), 0 10px 30px rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
}

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

.button-icon {
  font-size: 1.1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SECTION STYLES ===== */
section {
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

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

.section-ornament {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  color: var(--text-muted);
  font-style: italic;
}

/* ===== MOVIE SECTION ===== */
.movie-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.poster-container {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.poster-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-deep), 0 0 60px rgba(68, 49, 141, 0.3);
  transition: transform 0.5s ease;
}

.movie-poster {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.poster-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-15deg);
  animation: posterShine 4s ease-in-out infinite;
}

@keyframes posterShine {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

.premiere-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, var(--crimson), #a03050);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(139, 41, 66, 0.5);
  transform: rotate(12deg);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.05); }
}

.premiere-text {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.movie-details {
  text-align: center;
  width: 100%;
}

.movie-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 0.2rem;
}

.movie-tagline {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.movie-info {
  margin-bottom: 1.5rem;
}

.info-text {
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.info-text.highlight {
  color: var(--text-cream);
  font-weight: 500;
}

.info-text strong {
  color: var(--gold-light);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-glass);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
}

.meta-icon {
  font-size: 1rem;
}

.meta-text {
  font-size: 0.85rem;
  color: var(--text-cream);
}

/* ===== DINNER SECTION ===== */
.dinner-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.menu-icon {
  font-size: 2rem;
}

.menu-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
}

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

.menu-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.menu-item.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
}

.item-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 0.3rem;
}

.item-description {
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
}

.divider-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.divider-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Ambiance Card */
.ambiance-card {
  background: linear-gradient(135deg, var(--deep-purple), var(--midnight-blue));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ambiance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.wine-glass {
  width: 50px;
  height: 85px;
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.wine-glass::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 4px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
}

.wine-glass::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.3));
}

.wine-liquid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 48px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-bottom: none;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
}

.wine-liquid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, #e8dca8, #f5efc7);
  animation: wineSwirl 3s ease-in-out infinite;
}

@keyframes wineSwirl {
  0%, 100% { transform: translateX(-2px) rotate(-2deg); }
  50% { transform: translateX(2px) rotate(2deg); }
}

.ambiance-text {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.7;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.ambiance-author {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ===== PLAN SECTION ===== */
.timeline {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--royal-purple), var(--gold));
}

.timeline-item {
  position: relative;
  padding: 1.2rem 0 1.2rem 2rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInTimeline 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInTimeline {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-marker {
  position: absolute;
  left: -2.1rem;
  top: 1.2rem;
  width: 34px;
  height: 34px;
  background: var(--bg-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.marker-number {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.timeline-item.featured .timeline-marker {
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-item.featured .marker-number {
  color: var(--bg-dark);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: all 0.3s ease;
}

.timeline-item.featured .timeline-content {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
  border-color: var(--gold);
}

.timeline-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  font-weight: 600;
  color: var(--text-cream);
  margin-bottom: 0.2rem;
}

.timeline-text {
  font-size: clamp(0.85rem, 3vw, 0.95rem);
  color: var(--text-muted);
}

/* ===== RSVP SECTION ===== */
.rsvp-section {
  padding: 5rem 1.5rem;
}

.rsvp-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-deep), var(--shadow-glow);
}

.rsvp-seal {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.seal-text {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-dark);
  letter-spacing: 1px;
}

.rsvp-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.rsvp-letter {
  margin-bottom: 2rem;
}

.letter-text {
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  color: var(--text-cream);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.letter-text.highlight {
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 1.5rem;
}

.signature-area {
  margin-top: 2rem;
  text-align: right;
}

.signature {
  display: block;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
}

.signature-name {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.rsvp-buttons {
  display: flex;
  justify-content: center;
}

.rsvp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.rsvp-button.accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.rsvp-button.accept:hover, .rsvp-button.accept:active {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.rsvp-button .button-icon {
  font-size: 1.2rem;
}

/* ===== SUCCESS SECTION ===== */
.success-section {
  display: none;
  padding: 5rem 1.5rem;
  text-align: center;
}

.success-section.active {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

.success-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--flame-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.success-text {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: var(--text-cream);
  max-width: 450px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
}

.detail-card:hover, .detail-card:active {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.detail-icon {
  font-size: 1.6rem;
}

.detail-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-value {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.success-footer {
  font-size: clamp(1.1rem, 4vw, 1.2rem);
  color: var(--text-cream);
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(0, 0, 0, 0.3);
}

.footer-quote {
  margin-bottom: 0.8rem;
}

.quote-text {
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 768px) {
  section {
    padding: 6rem 2rem;
  }
  
  .movie-showcase {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
  
  .poster-container {
    flex-shrink: 0;
    max-width: 380px;
  }
  
  .movie-details {
    text-align: left;
  }
  
  .movie-meta {
    justify-content: flex-start;
  }
  
  .dinner-showcase {
    flex-direction: row;
    gap: 2rem;
  }
  
  .menu-card {
    flex: 1.3;
    padding: 2.5rem;
  }
  
  .ambiance-card {
    flex: 1;
    padding: 2.5rem 2rem;
  }
  
  .rsvp-container {
    padding: 4rem 3rem;
  }
  
  .timeline {
    max-width: 550px;
    padding-left: 3rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-marker {
    left: -2.5rem;
    width: 40px;
    height: 40px;
  }
  
  .timeline-content {
    padding: 1.3rem 1.5rem;
  }
  
  .poster-frame:hover {
    transform: rotateY(-5deg) rotateX(5deg) scale(1.02);
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 380px) {
  .hero {
    padding: 1rem;
  }
  
  .invitation-badge {
    padding: 0.5rem 1rem;
  }
  
  .badge-text {
    font-size: 0.6rem;
    letter-spacing: 2px;
  }
  
  .title-mystery {
    font-size: 1.9rem;
  }
  
  .cta-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }
  
  section {
    padding: 3rem 1rem;
  }
  
  .menu-card,
  .ambiance-card {
    padding: 1.5rem 1rem;
  }
  
  .rsvp-container {
    padding: 2.5rem 1rem;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline::before {
    left: 12px;
  }
  
  .timeline-marker {
    width: 28px;
    height: 28px;
    left: -1.7rem;
  }
  
  .marker-number {
    font-size: 0.75rem;
  }
  
  .timeline-content {
    padding: 0.8rem 1rem;
  }
}

/* Touch device optimization */
@media (hover: none) {
  .cta-button:active,
  .rsvp-button:active {
    transform: scale(0.98);
  }
  
  .poster-frame {
    transform: none !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
