/* ============================================
   LEXI'S BACHELORETTE – NASHVILLE 2025
   Color palette: cream/neutral + honky tonk gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --cream:        #FDFAF5;
  --white:        #FFFFFF;
  --gold:         #C9A96E;
  --dark-gold:    #A8844E;
  --deep-brown:   #5C3D1E;
  --light-beige:  #F2E8D9;
  --mid-beige:    #D9C8B4;
  --rust:         #C4714A;
  --text-dark:    #3D2B1F;
  --text-mid:     #6B5340;
  --text-light:   #9C8070;
  --shadow:       rgba(90, 55, 20, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.script { font-family: 'Dancing Script', cursive; }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--mid-beige);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--deep-brown);
}

.nav-brand span {
  color: var(--rust);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-brown);
}

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

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,113,74,0.10) 0%, transparent 60%),
    var(--cream);
}

/* Decorative stars */
.hero::before {
  content: '✦  ✦  ✦';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 1.5rem;
  font-size: 0.75rem;
}

.hero::after {
  content: '✦  ✦  ✦';
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.4;
  letter-spacing: 1.5rem;
  font-size: 0.75rem;
}

.hero-inner {
  max-width: 760px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.25rem;
}

.hero-welcome {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: var(--deep-brown);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-welcome em {
  color: var(--rust);
  font-style: normal;
}

.hero-title {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.hero-divider-icon {
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.hero-meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--deep-brown);
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--deep-brown);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── SECTION BASE ───────────────────────────── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
}

/* ── DETAILS BAND ───────────────────────────── */
.details-band {
  background: var(--deep-brown);
  color: var(--white);
  padding: 2.5rem 2rem;
}

.details-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.detail-item {
  text-align: center;
  flex: 1 1 160px;
}

.detail-icon {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.detail-value {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

/* ── CREW ROLES ─────────────────────────────── */
.crew-section {
  background: var(--light-beige);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.crew-card {
  background: var(--white);
  border: 1px solid var(--mid-beige);
  border-radius: 6px;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.crew-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow);
}

.crew-card--bride {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
}

.crew-card--bride .crew-name,
.crew-card--bride .crew-role {
  color: var(--white);
}

.crew-card--bride .crew-role {
  color: var(--gold);
}

.crew-card--mob {
  background: var(--cream);
  border-color: var(--gold);
}

.crew-card--host {
  border-color: var(--gold);
  border-width: 1.5px;
}

.crew-emoji {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.crew-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 0.2rem;
}

.crew-role {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.crew-card--host .crew-role {
  color: var(--dark-gold);
}

/* ── TIMELINE ───────────────────────────────── */
.timeline-section {
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
}

/* Center dot */
.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-card {
  background: var(--white);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 20px var(--shadow);
  border: 1px solid var(--light-beige);
  max-width: 400px;
  width: 100%;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px var(--shadow);
}

/* Card pointer arrow */
.timeline-item:nth-child(odd) .timeline-card::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 9px solid var(--white);
}

.timeline-item:nth-child(even) .timeline-card::after {
  content: '';
  position: absolute;
  left: -9px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 9px solid var(--white);
}

.timeline-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--light-beige);
  border-radius: 2px;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.timeline-card h3 {
  font-size: 1.3rem;
  color: var(--deep-brown);
  margin-bottom: 0.25rem;
}

.timeline-card .timeline-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.timeline-activities {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeline-activity {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.timeline-activity-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.05rem;
}

.timeline-activity strong {
  color: var(--text-dark);
  font-weight: 600;
}

.timeline-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--dark-gold));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ── OUTFIT PAGE HERO ───────────────────────── */
.outfit-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.20) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(196,113,74,0.12) 0%, transparent 55%),
    var(--cream);
}

/* ── OUTFIT NIGHT SECTIONS ──────────────────── */
.outfit-section {
  padding: 4rem 2rem;
}

.outfit-section:nth-child(even) {
  background: var(--light-beige);
}

.outfit-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.outfit-night-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.outfit-night-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.outfit-night-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--deep-brown);
  margin-bottom: 0.5rem;
}

.outfit-night-subtitle {
  font-size: 0.875rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
}

.outfit-night-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
  border: none;
}

/* Outfit idea grid */
.outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

/* Card */
.outfit-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 20px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.outfit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px var(--shadow);
}

/* Photo with title overlaid */
.outfit-card-visual {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.outfit-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}

.outfit-card:hover .outfit-card-visual img {
  transform: scale(1.04);
}

.outfit-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(45, 25, 8, 0.72) 0%, transparent 100%);
}

.outfit-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}

/* Chip tags below photo */
.outfit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.9rem 1rem 1rem;
}

.outfit-chip {
  display: inline-block;
  padding: 0.22rem 0.65rem;
  background: var(--light-beige);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Accessories strip */
.accessories-strip {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--mid-beige);
}

.accessories-strip-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.accessories-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.accessories-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--mid-beige);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--deep-brown);
  color: var(--mid-beige);
  text-align: center;
  padding: 2.5rem 2rem;
}

.footer-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 1rem;
  font-size: 0.6rem;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  /* Collapse timeline to single column */
  .timeline::before {
    left: 1.25rem;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 3.5rem;
    padding-right: 0;
  }

  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 1.25rem;
    transform: translateX(-50%);
  }

  .timeline-item:nth-child(odd) .timeline-card::after,
  .timeline-item:nth-child(even) .timeline-card::after {
    left: -9px;
    right: auto;
    border-left: none;
    border-right: 9px solid var(--white);
  }

  .timeline-card {
    max-width: 100%;
  }

  .outfit-night-header {
    gap: 1rem;
  }

  .outfit-night-badge {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-brand { font-size: 1.2rem; }
  .nav-links a { font-size: 0.75rem; }
  .nav-links { gap: 1rem; }

  .section { padding: 3rem 1.25rem; }
  .details-band { padding: 2rem 1.25rem; }
  .outfit-section { padding: 3rem 1.25rem; }

  .hero-meta { gap: 1rem; }
}
