/* get-the-flock-out-of-central-louisiana.org */

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }

/* --------------------------------------------------------------------------
   Hero text section
   -------------------------------------------------------------------------- */
.hero-text {
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.hero-text h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
}

.eye {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0.75rem auto 0;
}

/* --------------------------------------------------------------------------
   Intro paragraph (yellow)
   -------------------------------------------------------------------------- */
.intro {
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
  max-width: 560px;
  color: #f5c800;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Photo grid
   -------------------------------------------------------------------------- */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   Body text section
   -------------------------------------------------------------------------- */
.body-text {
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.prose {
  max-width: 580px;
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1.25rem;
  line-height: 1.6;
}

.prose p:last-child { margin-bottom: 0; }

/* Yellow italic → editors use italic formatting for the warning paragraph */
.prose em {
  color: #f5c800;
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
}

/* White bold → editors use bold for the impact statement */
.prose strong {
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: block;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Tablet — 640px+
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .hero-text h1 { font-size: 3.5rem; }
  .intro { font-size: 1.2rem; }
  .prose em { font-size: 1.1rem; }
  .prose strong { font-size: 1.35rem; }
}

@media (min-width: 1024px) {
  .body-text { padding: 4rem 2rem 5rem; }
}
