/* css/index.css */

/* ===========================
   Landing Page Highlights
=========================== */
/* Layout for the home page */
.landing-page {
  text-align: center;
  padding: 2rem 1rem;
}

/* Shared highlight styles */
.highlight-section {
  margin: 3rem auto;
  max-width: 900px;
}

/* Section title styling */
.highlight-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
}

/* ===========================
   Episode Highlight
=========================== */
/* Featured episode card */
.episode-card.small {
  max-width: 320px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.episode-card.small:hover {
  transform: translateY(-4px);
}

/* Keep feature artwork proportional */
.episode-card.small img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Copy container inside episode card */
.episode-info {
  padding: 1rem;
}

/* Episode name styling */
.episode-info h3 {
  margin: 0.5rem 0;
  color: var(--accent);
}

/* Episode blurb text */
.episode-info p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

/* ===========================
   Event Highlight
=========================== */
/* Container to center single event poster */
.small-event-grid {
  display: flex;
  justify-content: center;
}

/* Highlighted event poster */
.event-poster.small {
  position: relative;
  max-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

/* Lift poster slightly on hover */
.event-poster.small:hover {
  transform: translateY(-4px);
}

/* Ensure poster art fills card */
.event-poster.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Gradient overlay with CTA link */
.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
}

/* Keep overlay text spaced nicely */
.event-overlay p {
  margin: 0.3rem 0 0.8rem;
}

/* ===========================
   Acknowledgement of Country
=========================== */
.acknowledgement {
  margin-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  font-size: 0.95rem;
}

/* Title for the acknowledgement panel */
.acknowledgement h2 {
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 1.4rem;
}
