body {
  background: #f9e7d1;
}

/* fellepok */

.band-card {
  background: #fff;
  border: 2px solid #2d55a7;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(45,85,167,0.08);
  transition: transform 0.15s;
}
.band-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(255,133,179,0.13);
  border-color: #ff85b3;
}
.band-card .card-title {
  color: #2d55a7;
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.band-card .btn-primary {
  background: #2d55a7;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: background 0.2s;
}
.band-card .btn-primary:hover {
  background: #ff85b3;
}

/* navbar */


.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* terkep */

#map {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* modal */

#bandModal .modal-content {
  border-radius: 28px;
  border: 3px solid #2d55a7;
  box-shadow: 0 6px 32px rgba(45,85,167,0.13);
  background: #fffbea;
  position: relative;
  overflow: hidden;
}

#bandModal .modal-header {
  background: linear-gradient(90deg, #2d55a7 60%, #ff85b3 100%);
  color: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(45,85,167,0.06);
}

#bandModal .modal-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

#band-img {
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(45,85,167,0.11);
  border: 3px solid #2d55a7;
  margin-bottom: 18px;
}

#band-name {
  font-family: 'Baloo 2', cursive, Arial, sans-serif;
  color: #2d55a7;
  font-size: 2rem;
  margin-bottom: 10px;
}

#band-bio {
  color: #2d55a7;
  font-size: 1.18rem;
  min-height: 44px;
}

#band-details {
  background: #2d55a7;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(45,85,167,0.06);
  font-family: 'Baloo 2', cursive, Arial, sans-serif;
  padding: 12px 32px;
  transition: background 0.18s;
}
#band-details:hover,
#band-details:focus {
  background: #ff85b3;
  color: #fff;
}

#bandModal .ratio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,85,167,0.09);
}

/* fellepo */

.band-detail-card {
  background: #fffbea;
  border: 2.5px solid #2d55a7;
  border-radius: 32px;
  box-shadow: 0 6px 28px rgba(45,85,167,0.10);
  max-width: 720px;
  margin: 40px auto 32px auto;
  padding: 32px 28px 28px 28px;
  position: relative;
}

.band-detail-card h1 {
  font-family: 'Baloo 2', cursive, Arial, sans-serif;
  color: #2d55a7;
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.band-detail-card img {
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(45,85,167,0.09);
  border: 2px solid #2d55a7;
  margin-bottom: 24px;
  width: 100%;
  max-width: 560px;
}

.band-detail-card p {
  color: #2d55a7;
  font-size: 1.21rem;
  margin-bottom: 22px;
}

.band-detail-card .ratio {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(45,85,167,0.07);
}

@media (max-width: 576px) {
  .band-detail-card { padding: 16px 8px; }
  .band-detail-card h1 { font-size: 2rem; }
}