/* ═══════════════════════════════════════════
   CUSTOM PROPERTIES (easy theming)
   ═══════════════════════════════════════════ */
:root {
  /* Red Room curtain red */
  --red: #b5121b;
  --red-glow: #e0232e;

  /* Douglas fir forest */
  --green-dark: #14291e;
  --green: #1b3a2d;
  --green-light: #24503c;

  /* Noir / mystery */
  --black: #0b0b0f;
  --dark: #111118;
  --dark-surface: #1a1a24;

  /* Double R Diner cream */
  --cream: #f2e6d0;
  --cream-muted: #c4b8a4;
  --white: #f8f4ee;

  /* Coffee brown */
  --brown: #5c3d2e;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 10vw, 8rem);
  --container-max: 1100px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cream);
  background: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.text-link {
  color: var(--red-glow);
  border-bottom: 1px solid rgba(224, 35, 46, .4);
  transition: border-color .3s;
}

.text-link:hover {
  border-bottom-color: var(--red-glow);
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27, 58, 45, .6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 40%, rgba(181, 18, 27, .15) 0%, transparent 50%),
    var(--black);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30Z' fill='none' stroke='%23ffffff' stroke-opacity='.02' stroke-width='.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red-glow);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--cream-muted);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: .75rem 2rem;
  border: 1px solid var(--red);
  color: var(--cream);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .3s, color .3s;
}

.hero-cta:hover {
  background: var(--red);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ZIGZAG DIVIDER (Black Lodge floor nod)
   ═══════════════════════════════════════════ */
.zigzag {
  position: relative;
  width: 100%;
  height: 24px;
  background:
    linear-gradient(135deg, var(--black) 25%, transparent 25%) -12px 0,
    linear-gradient(225deg, var(--black) 25%, transparent 25%) -12px 0,
    linear-gradient(315deg, var(--black) 25%, transparent 25%),
    linear-gradient(45deg,  var(--black) 25%, transparent 25%);
  background-size: 24px 24px;
  background-color: var(--dark);
  z-index: 2;
}

.zigzag--inverted {
  background-color: var(--green);
}

/* ═══════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--dark);
}

.section--green {
  background: var(--green);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: .5rem;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--cream-muted);
  margin-bottom: 3rem;
  font-size: .95rem;
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.about-card {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color .3s;
}

.about-card:hover {
  border-color: var(--red);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: .75rem;
}

.about-card p {
  color: var(--cream-muted);
  font-size: .92rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CITIES
   ═══════════════════════════════════════════ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  font-weight: 500;
  transition: background .3s, border-color .3s, transform .2s;
}

.city-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--cream-muted);
  transform: translateY(-2px);
}

.city-arrow {
  font-size: 1.25rem;
  transition: transform .2s;
}

.city-card:hover .city-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   PROCLAMATIONS
   ═══════════════════════════════════════════ */
.proclamations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.proclamations-grid a {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s, transform .2s;
}

.proclamations-grid a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.proclamations-grid img {
  display: block;
}

/* ═══════════════════════════════════════════
   EVENT CTA
   ═══════════════════════════════════════════ */
.event-container {
  text-align: center;
}

.event-description {
  max-width: 600px;
  margin: 1.5rem auto 2.5rem;
  color: var(--cream-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: .9rem 2.5rem;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background .3s, transform .2s;
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover {
  background: var(--red-glow);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════════════ */
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 400;
  transition: background .3s, border-color .3s, transform .2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--cream-muted);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-email {
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.contact-email:hover {
  border-bottom-color: var(--green);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-disclaimers {
  max-width: 650px;
  margin: 0 auto 2rem;
}

.footer-disclaimers p {
  font-size: .8rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: .75rem;
  color: rgba(255, 255, 255, .25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .about-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}
