/* Kontener główny sekcji */
.music-band-locations {
  padding: 40px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

/* Kontener wewnętrzny */
.locations-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Tytuł sekcji */
.locations-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Kontener nawigacji */
.locations-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Styl przycisków */
.locations-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #007bff;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Efekt hover dla przycisków */
.locations-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Fokus dla dostępności */
.locations-btn:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

/* Responsywność */
@media (max-width: 768px) {
  .locations-title {
    font-size: 1.5rem;
  }

  .locations-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .locations-nav {
    flex-direction: column;
    align-items: center;
  }

  .locations-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}