/* ============================================
   ONE NIGHT IN SEOUL — Styles
   ============================================ */

:root {
  --black: #0b0b2e;
  --dark: #0d0d3b;
  --charcoal: #131350;
  --gold: #ff2d55;
  --gold-light: #ff6b8a;
  --gold-dim: rgba(255, 45, 85, 0.3);
  --neon-yellow: #f5e642;
  --neon-yellow-dim: rgba(245, 230, 66, 0.3);
  --cream: #f0e6d3;
  --white: #fafafa;
  --text: #d4d0c8;
  --text-muted: #8a8699;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-korean: 'Noto Serif KR', serif;
  --font-sans: 'Noto Sans KR', -apple-system, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;
  --font-subtitle: 'DM Serif Display', serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 500;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}

/* ============================================
   PASSWORD GATE
   ============================================ */

#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease;
}

.gate-content {
  text-align: center;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
}

.gate-korean {
  font-family: var(--font-korean);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.gate-form input {
  width: 100%;
  max-width: 300px;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: 1px solid var(--gold-dim);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.15em;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gate-form input::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.gate-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.2);
}

.gate-form button {
  padding: 0.7rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gate-form button:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.gate-error {
  color: var(--neon-yellow);
  font-size: 1.1rem;
  margin-top: 1rem;
  min-height: 1.2em;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Gate exit animation */
#password-gate.gate-exit {
  animation: gateDissolve 1.2s var(--ease-out) forwards;
}

@keyframes gateDissolve {
  0% { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(11, 11, 46, 0.75) 0%,
      rgba(11, 11, 46, 0.4) 30%,
      rgba(11, 11, 46, 0.5) 70%,
      rgba(11, 11, 46, 0.92) 100%
    );
}

/* ============================================
   NAVIGATION
   ============================================ */

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(11,11,46,0.95) 0%, rgba(11,11,46,0.6) 60%, transparent 100%);
  transition: all 0.4s ease;
}

#main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

#main-nav a {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

#main-nav a:hover,
#main-nav a.active {
  color: var(--gold);
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

#main-nav a:hover::after,
#main-nav a.active::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  padding: 2rem;
  animation: heroFadeIn 2s var(--ease-out);
}

.hero-korean {
  font-family: var(--font-korean);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow:
    0 0 10px rgba(255, 45, 85, 0.6),
    0 0 30px rgba(255, 45, 85, 0.3);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.hero-date,
.hero-location {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
  letter-spacing: 0.15em;
  margin-bottom: 0.4rem;
}

.hero-location {
  margin-bottom: 1rem;
}

.hero-deadline {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}

.scroll-cta {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(11, 11, 46, 0.5);
}

.scroll-cta:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.4);
}

.rsvp-cta {
  margin-left: 1rem;
  background: var(--gold);
  color: var(--white);
}

.rsvp-cta:hover {
  background: transparent;
  color: var(--gold);
}

@keyframes heroFadeIn {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

section:not(#hero) {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-korean {
  font-family: var(--font-korean);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 0.3rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* ============================================
   SCHEDULE / TIMELINE
   ============================================ */

#schedule {
  background: linear-gradient(to bottom, rgba(11,11,46,0.95), rgba(13,13,59,0.98));
}

#schedule .section-title {
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  padding-left: 40px;
}

/* Vertical connecting line */
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--neon-yellow), var(--gold));
  opacity: 0.4;
}

.timeline-event {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(255, 45, 85, 0.15);
  background: rgba(11, 11, 46, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-event:hover {
  border-color: rgba(255, 45, 85, 0.4);
  box-shadow: 0 0 30px rgba(255, 45, 85, 0.08);
}

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

/* Dot on the timeline */
.timeline-event::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 2.2rem;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

.event-day {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--neon-yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.event-korean {
  font-family: var(--font-korean);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.4);
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.event-time {
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  color: var(--neon-yellow);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.event-dresscode {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 45, 85, 0.1);
}

.event-dresscode strong {
  color: var(--gold);
  font-weight: 700;
}

.event-location {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 45, 85, 0.1);
}

.event-location strong {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   DRESSCODE
   ============================================ */

#dresscode {
  background: linear-gradient(to bottom, rgba(13,13,59,0.98), rgba(11,11,46,0.95));
}

#dresscode .section-title {
  margin-bottom: 3rem;
}

.dresscode-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.dresscode-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 45, 85, 0.15);
  background: rgba(11, 11, 46, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dresscode-card:hover {
  border-color: rgba(255, 45, 85, 0.4);
  box-shadow: 0 0 25px rgba(255, 45, 85, 0.08);
}

.dresscode-card .card-day {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--neon-yellow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.dresscode-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

.card-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(138, 134, 153, 0.3);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.card-link:hover {
  color: var(--text);
  border-color: var(--text);
}

/* ============================================
   RSVP FORM
   ============================================ */

#rsvp {
  background: var(--dark);
}

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

.form-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 45, 85, 0.2);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.15);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff2d55' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 60px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.conditional-fields {
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease;
}

.conditional-fields.visible {
  display: block !important;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.3);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* RSVP success */
#rsvp-success {
  text-align: center;
  padding: 3rem 0;
}

.success-korean {
  font-family: var(--font-korean);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.5);
}

.success-message {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
}

/* RSVP multi-step */
#rsvp-step1,
#rsvp-step2 {
  max-width: 500px;
  margin: 0 auto;
}

.rsvp-found-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rsvp-found-text strong {
  color: var(--white);
}

.guest-card {
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 45, 85, 0.2);
  background: rgba(11, 11, 46, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.guest-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text);
  letter-spacing: 0.03em;
}

.radio-option input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.radio-option span {
  transition: color 0.2s ease;
}

.radio-option:hover span {
  color: var(--white);
}

.radio-option input[type="radio"]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.guest-card .conditional-dietary {
  margin-top: 1rem;
}

.guest-card .conditional-dietary .form-group {
  margin-bottom: 0;
}

.partner-note {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 1rem;
}

.section-divider {
  border-top: 1px solid rgba(255, 45, 85, 0.2);
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.partner-section,
.plus-one-section {
  padding-left: 1rem;
  border-left: 2px solid rgba(255, 45, 85, 0.3);
  margin-top: 0.5rem;
}

.plus-one-section > .section-divider {
  margin-left: -1rem;
  border-left: none;
}

.partner-heading,
.plus-one-heading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 8px rgba(255, 45, 85, 0.2);
}

.guest-name-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 45, 85, 0.2);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.guest-name-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(255, 45, 85, 0.15);
}

.guest-name-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.plus-one-details {
  margin-top: 0.8rem;
}

.plus-one-details.visible {
  display: block !important;
}

.btn-secondary {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.8rem;
}

.btn-secondary:hover {
  border-color: var(--text);
  color: var(--text);
}

.form-error {
  max-width: 500px;
  margin: 1rem auto 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--neon-yellow);
  text-align: center;
  min-height: 1.2em;
}

/* ============================================
   TRAVEL & STAY
   ============================================ */

#travel {
  background: linear-gradient(to bottom, rgba(13,13,59,0.98), rgba(11,11,46,0.95));
}

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.travel-block h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 8px rgba(255, 45, 85, 0.3);
}

.travel-block ul {
  list-style: none;
}

.travel-block li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 45, 85, 0.08);
  line-height: 1.6;
}

.travel-block li:last-child {
  border-bottom: none;
}

.travel-block li a {
  color: var(--gold);
  text-decoration: none;
}

.travel-block li a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

.hotel-email {
  font-size: 0.85rem;
  color: var(--text-muted) !important;
  text-shadow: none !important;
}

.codeword-callout {
  text-align: center;
  padding: 2rem 2rem 1.8rem;
  margin-bottom: 3rem;
  border: 2px solid var(--neon-yellow-dim);
  background: rgba(245, 230, 66, 0.04);
}

.codeword-label {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.codeword-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-yellow);
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(245, 230, 66, 0.4);
  margin-bottom: 0.5rem;
}

.codeword-note {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

.travel-subhead {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.train-note {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.8rem;
}

.travel-block .drive-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.travel-contact {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 45, 85, 0.1);
}

.travel-contact p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.travel-contact a {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.travel-contact a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 10px rgba(255, 45, 85, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--black);
  border-top: 1px solid rgba(255, 45, 85, 0.1);
}

.footer-disclaimer {
  font-family: var(--font-korean);
  font-size: 1rem;
  color: var(--neon-yellow);
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(245, 230, 66, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS (reveal on scroll)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  #main-nav {
    padding: 1rem 1.5rem;
  }

  #main-nav ul {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  #main-nav a {
    font-size: 0.75rem;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .section-inner {
    padding: 5rem 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .dresscode-cards {
    grid-template-columns: 1fr;
  }

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

  .timeline {
    padding-left: 30px;
  }

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

  .timeline-event::before {
    left: -26px;
    width: 8px;
    height: 8px;
  }

  .timeline-event {
    padding: 1.5rem;
  }

}

@media (max-width: 480px) {
  .hero-content .scroll-cta {
    display: block;
    margin-bottom: 1rem;
  }

  .hero-content .rsvp-cta {
    margin-left: 0;
  }

  .hero-korean {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  #main-nav ul {
    gap: 1rem;
  }

  .event-korean {
    font-size: 1rem;
  }

  .event-title {
    font-size: 1.2rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .guest-card {
    padding: 1.2rem;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
