/* =====================
   VENUES SECTION
===================== */

.venues-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
  font-family: 'Century Gothic', sans-serif;
}

/* Section title */
.venues-section .section-title {
  font-size: 2rem;
  color: #b2975a;
  margin-bottom: 2rem;
}

/* Grid layout */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}

/* Individual venue card */
.venue-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Venue image */
.venue-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Venue info text */
.venue-info {
  padding: 1rem;
  color: #fff;
}

.venue-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: #b2975a;
}

.venue-info p {
  margin: 0.2rem 0;
  font-size: 1rem;
  color: #ccc;
}

/* Responsive: 1 per row on mobile */
@media (max-width: 600px) {
  .venues-grid {
    grid-template-columns: 1fr;
  }

  .venue-card img {
    height: 180px;
  }
}

