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

body {
  font-family: "americane", "Rubik", -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
  background-color: #fef6e9;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.container {
  text-align: center;
  max-width: 48rem;
  width: 100%;
}

.header {
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #23110f;
  margin-top: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #c33927;
}

h3 {
  margin-top: 3rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #24381b;
}

p {
  text-align: left;
}

a:link, a:visited, a:active {
  color: #c33927;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  font-weight: 600;
}

/* ===== Hero intro (sits above the logo) ===== */
.hero-intro {
  margin-top: 2.5rem;
}

/* #2b5084 is sampled from the star in the logo artwork; it overrides the red
   that the base h2 rule would otherwise apply. */
.hero-intro h2 {
  margin-top: 0;
  line-height: 1.15;
  color: #2b5084;
}

.logo-placeholder {
  margin: 2rem 0;
}

.logo-placeholder picture {
  display: block;
}

/* Intrinsic width/height on the <img> plus height:auto reserves the right box
   before the file lands, so the logo never shifts the page as it loads. */
.logo-placeholder img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== Schedule (transcribed from the 2026 poster) ===== */
.schedule {
  color: #220f0e;
  margin-top: 2rem;
}

/* ===== Schedule accordion ===== */
.schedule-accordion {
  border: 1px solid rgba(35, 17, 15, 0.12);
  border-radius: 12px;
  background: #fffaf1;
  overflow: hidden;
  text-align: left;
}

.schedule-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3c542f;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.15s ease;
}

.schedule-accordion > summary::-webkit-details-marker {
  display: none;
}

/* Chevron: points down when closed, up when open */
.schedule-accordion > summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2.5px solid #c33927;
  border-bottom: 2.5px solid #c33927;
  transform: translateY(-0.15rem) rotate(45deg);
  transition: transform 0.2s ease;
}

.schedule-accordion[open] > summary::after {
  transform: translateY(0.15rem) rotate(-135deg);
}

.schedule-accordion > summary:hover {
  background-color: rgba(195, 57, 39, 0.06);
}

.schedule-accordion > summary:focus-visible {
  outline: 3px solid rgba(195, 57, 39, 0.45);
  outline-offset: -3px;
}

/* Matches the page background so the logo PNG's opaque backdrop blends in */
.schedule-accordion-body {
  padding: 2rem 1.25rem 0.75rem;
  border-top: 1px solid rgba(35, 17, 15, 0.1);
  background: #fef6e9;
  text-align: center;
}

/* Archived 2026 logo, kept inside the accordion when the hero logo rolls over */
.schedule-accordion-body > .accordion-logo {
  margin: 0 0 2.5rem;
}

.schedule-accordion-body > .accordion-logo img {
  max-width: 480px;
}

.schedule-accordion-body > .three-column-section {
  margin-bottom: 1rem;
}

.schedule .event {
  margin-bottom: 2.75rem;
}

.schedule h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3c542f;
  margin-bottom: 0.6rem;
}

.schedule p {
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 34rem;
  margin: 0 auto 0.9rem;
  color: #220f0e;
}

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

.schedule strong {
  font-weight: 700;
}

.schedule .text-red {
  color: #c53927;
}

.schedule-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
}

/* Live Music / Minivan Carpool block */
.event-live h2 {
  font-size: 1.85rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.event-live p {
  margin-top: 0.75rem;
  font-size: 1.125rem;
}

.event-live h2 a,
.event-live h2 a:hover {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

/* Hope Corner / address / hours block */
.event-location .location-name {
  font-size: 2.75rem;
  color: #3c542f;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.event-location .location-address {
  font-weight: 700;
  font-size: 1.5rem;
  color: #220f0e;
  margin-bottom: 1rem;
}

.event-location .location-hours {
  font-weight: 700;
  font-size: 2.4rem;
  color: #255186;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .schedule-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
    align-items: start;
  }

  .schedule h2 {
    font-size: 1.625rem;
  }

  .event-live h2 {
    font-size: 2rem;
  }

  .event-location .location-name {
    font-size: 3rem;
  }

  .event-location .location-hours {
    font-size: 2.75rem;
  }
}

.content {
  color: #23110f;
  line-height: 1.6;
}

.content p:first-child {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.content p:last-child {
  font-size: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .content p:first-child {
    font-size: 1.25rem;
  }

  .content p:last-child {
    font-size: 1.125rem;
  }
}

.three-column-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
  padding: 0 1rem;
}

.column {
  text-align: center;
}

.column h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.thumbnail {
  margin: 1rem 0;
}

.thumbnail img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.column p {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .three-column-section {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 0;
  }
}

.two-column-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.two-column-section .column {
  text-align: left;
}

.two-column-section h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.two-column-section p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #23110f;
}

@media (min-width: 768px) {
  .two-column-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #c33927;
}

.lightbox-trigger {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-trigger:hover {
  transform: scale(1.05);
}

.single-image-section {
  max-width: 800px;
  text-align: center;
  padding: 0 1rem;
}

.single-image-section h3 {
  margin-bottom: 1.5rem;
}

.single-image-section .thumbnail {
  margin: 2rem 0;
}

.single-image-section .thumbnail img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.single-image-section p {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #23110f;
}

@media (min-width: 768px) {
  .single-image-section {
    padding: 0;
  }
}

/* Footer Styles */
.footer {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #fef6e9;
    color: #23110f;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(35, 17, 15, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5;
}
