/* ========================================
   Wedding Site — Warm/Blush Theme
   ======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Burgundy */
  --burgundy: #722F37;
  --burgundy-dark: #4A1C23;
  
  /* Champagne */
  --champagne: #F7F3EB;
  --champagne-accent: #E8DFD0;
  
  /* Gold */
  --gold: #C9A227;
  --gold-light: #D4AF37;
  
  /* Text */
  --text-dark: #2D2A26;
  --text-muted: #6B645C;
  
  /* Aliases for easier use */
  --bg-blush: var(--champagne);
  --accent-wine: var(--burgundy);
  --accent-wine-hover: var(--burgundy-dark);
  --border-light: var(--champagne-accent);
}

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  color: var(--text-dark);
  background: var(--bg-blush);
}

/* ========================================
   Navigation
   ======================================== */

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav .logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-wine);
  text-decoration: none;
  border: 2px solid var(--accent-wine);
  padding: 0.25rem 0.5rem;
}

.site-nav .nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav .nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav .nav-links a:hover {
  color: var(--accent-wine);
}

.site-nav .rsvp-btn {
  background: var(--accent-wine);
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.site-nav .rsvp-btn:hover {
  background: var(--accent-wine-hover);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.hero-headline {
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 2.5rem;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-photo {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #87ceeb 50%, #4a7c4e 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.hero-details .date,
.hero-details .venue {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ========================================
   Content Sections
   ======================================== */

.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border-light);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent-wine);
}

a:hover {
  color: var(--accent-wine-hover);
}

ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ========================================
   Placeholder Notice
   ======================================== */

.placeholder {
  background: var(--champagne-accent);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  font-style: italic;
}

/* ========================================
   Schedule
   ======================================== */

.schedule-item {
  margin-bottom: 1.25rem;
}

.schedule-item .time {
  font-weight: bold;
  display: block;
}

/* ========================================
   Address
   ======================================== */

.address {
  margin: 0.5rem 0 1.5rem;
  line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item dt {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.faq-item dd {
  margin-left: 0;
}

/* ========================================
   Footer
   ======================================== */

footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   Gold Accents
   ======================================== */

h2 {
  border-bottom-color: var(--gold);
}

.site-nav .logo {
  border-color: var(--gold);
}

strong {
  color: var(--burgundy);
}

/* ========================================
   Tablet and up
   ======================================== */

@media (min-width: 768px) {
  .site-nav {
    padding: 1rem 3rem;
  }

  .hero-headline {
    font-size: 4rem;
  }

  .hero-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }

  .hero-details {
    flex-direction: row;
    gap: 3rem;
  }

  .hero-details .date,
  .hero-details .venue {
    min-width: 150px;
  }

  .hero-photo {
    max-width: 450px;
  }

  .content {
    padding: 3rem 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 5rem;
  }

  .hero-content {
    gap: 4rem;
  }

  .hero-photo {
    max-width: 500px;
  }
}
