.gigs-section {
  background-color: #111;
  color: #ccc;
  padding: 80px 20px;
  font-family: 'Georgia', serif;
}

.gigs-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.gigs-section h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.gig-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.gig-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.gig-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay for text contrast */
  z-index: 1;
}

.gig-card:hover {
  transform: translateY(-5px);
}

.gig-overlay {
  position: relative;
  z-index: 2;
  color: #eee;
  width: 100%;
  padding: 20px;
}

.gig-overlay h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #fff;
}

.gig-overlay p {
  margin: 6px 0;
  font-size: 0.95rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .gig-list {
    flex-direction: column;
    gap: 20px;
  }

  .gig-card {
    height: 260px;
  }

  .gigs-section h2 {
    font-size: 1.8rem;
  }

  .gig-overlay h3 {
    font-size: 1.1rem;
  }

  .gig-overlay p {
    font-size: 0.9rem;
  }
}
