.shows-section {
  padding: 4rem 1rem;
  background-color: #eae4de;
  display: none; /* Hide the shows section */
}

.container {
  max-width: 900px;
  margin: 0 auto;
}



.show-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.show-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 2rem;
  border-right: 1px solid #eee;
  min-width: 80px;
}

.date-block .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #7e805d;
}

.date-block .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #666;
  margin-top: 0.25rem;
}

.venue-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.venue-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.venue-location {
  display: block;
  font-size: 0.9rem;
  color: #666;
}

.ticket-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #7e805d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.ticket-button:hover {
  background-color: #658652;
}

@media (max-width: 640px) {
  .shows-section {
    padding: 2rem 0.75rem;
  }

  .show-card {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
  }

  .date-block {
    padding-right: 1rem;
    min-width: 60px;
  }

  .date-block .day {
    font-size: 1.5rem;
  }

  .date-block .month {
    font-size: 0.8rem;
  }

  .venue-name {
    font-size: 1rem;
  }

  .venue-location {
    font-size: 0.8rem;
  }

  .ticket-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .show-card {
    gap: 0.75rem;
  }

  .date-block {
    min-width: 50px;
  }

  .ticket-button {
    padding: 0.5rem 0.75rem;
  }
}