/* ============================================================
   events.css — Events page styles
   ============================================================ */

/* ── Nav logo ─────────────────────────────────────────────────── */

.nav-logo {
  height: 60px;
  width: auto;
  margin-right: auto;
}

body {
  background-color: var(--cream);
}

/* ── Banner ───────────────────────────────────────────────────── */

.banner {
  width: 80%;
  margin: 0 auto;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Intro section ────────────────────────────────────────────── */

.events-intro {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.events-intro h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green);
  margin-bottom: 0.75rem;
}

.events-intro p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}

/* ── Event types grid ─────────────────────────────────────────── */

.event-types {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 0 1.5rem;
}

.event-types h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--green);
  text-align: center;
  margin-bottom: 1.5rem;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.event-card .event-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.92rem;
  color: #555;
  margin: 0;
}

/* ── Gallery section ──────────────────────────────────────────── */

.gallery-section {
  background-color: #f1ede3;
  padding: 3rem 1.5rem;
  text-align: center;
}

.gallery-section h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ── CTA section ──────────────────────────────────────────────── */

.events-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--cream);
}

.events-cta h2 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.events-cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 800px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
