/* ========== FIND US / EVENT SCHEDULE ========== */

#find-us-teaser,
#events-page {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    var(--woodGrain);
  background-size: 25% auto;
  background-repeat: repeat;
  background-blend-mode: darken;
}

.section-intro {
  max-width: 40rem;
  margin: -1rem auto 2rem;
  text-align: center;
  color: #f0f0f0;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.section-intro .inline-link {
  color: var(--accent, #c59d5f);
  font-weight: 600;
  text-decoration: underline;
}

.schedule-month {
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  padding-inline: 1.5rem;
}

.schedule-month-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1.25rem;
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
  border-bottom: 2px solid var(--accent, #c59d5f);
  padding-bottom: 0.4rem;
}

.event-list {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
}

.schedule-month .event-list {
  padding-inline: 0;
  margin: 0;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) 1fr;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 4px ridge var(--metal, #6c6c6c);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #111;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 72, 0, 0.25);
}

.event-card--compact {
  grid-template-columns: minmax(8rem, 11rem) 1fr;
}

.event-date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: #6b3e26;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.35;
}

.event-date time {
  font-size: 0.95rem;
}

.event-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}

.event-body h3 {
  font-size: 1.35rem;
  color: #111;
  line-height: 1.25;
}

.event-location,
.event-hours {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.event-location i,
.event-hours i {
  color: var(--accent, #c59d5f);
  margin-right: 0.35rem;
  width: 1rem;
}

.event-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-top: 0.25rem;
}

.event-map-link {
  align-self: flex-start;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: #6b3e26;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease;
}

.event-map-link:hover {
  background: #8d4a2a;
}

.schedule-note {
  max-width: 56rem;
  margin: 2rem auto 0;
  padding-inline: 1.5rem;
  text-align: center;
  color: #ddd;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.schedule-empty {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  color: #eee;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  border: 2px ridge var(--metal, #6c6c6c);
  line-height: 1.6;
}

.schedule-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.schedule-view-all {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #6b3e26;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.schedule-view-all:hover {
  background: #8d4a2a;
  transform: translateY(-2px);
}

.events-contact-blurb {
  max-width: 36rem;
  margin: 3rem auto 0;
  padding: 1.5rem;
  text-align: center;
  color: #eee;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  line-height: 1.6;
}

.events-contact-blurb a {
  color: var(--accent, #c59d5f);
  font-weight: 600;
}

@media (max-width: 768px) {
  .event-card,
  .event-card--compact {
    grid-template-columns: 1fr;
  }

  .event-date {
    padding: 0.85rem 1rem;
  }

  .event-body {
    padding: 1rem 1.15rem;
  }
}
