* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: rgba(158, 221, 255, 1);
  color: #1a3a5c;
  min-height: 100vh;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  flex-wrap: wrap;
  background-color: rgba(158, 221, 255, 1);
}

.tab {
  padding: 10px 20px;
  text-decoration: none;
  color: #1a3a5c;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.tab:hover,
.tab.active {
  background-color: rgba(117, 198, 255, 1);
  color: #fff;
}

.title-section {
  background-color: rgba(117, 198, 255, 1);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.logo {
  max-width: 100%;
  max-height: 250px;
  display: block;
  margin: 0 auto;
}

.logo-placeholder {
  display: none;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 60px 20px;
  border: 2px dashed #fff;
  border-radius: 8px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background-color: #fff;
  color: #1a3a5c;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-icon {
  font-size: 22px;
}

.picture-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.picture-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  background-color: #fff;
  color: #1a3a5c;
  border: 2px dashed #1a3a5c;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
}

.events-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.shows-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.toggle-btn {
  background: transparent;
  border: none;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a5c;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.toggle-btn.active {
  background: rgba(117, 198, 255, 1);
  color: #fff;
}

.shows-pane { display: none; }
.shows-pane.active { display: block; }

.event-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  gap: 16px;
}

.event-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.event-date {
  font-weight: 700;
  color: rgba(117, 198, 255, 1);
  min-width: 100px;
  font-size: 18px;
}

.event-name {
  font-weight: 600;
  font-size: 18px;
}

.event-location {
  color: #555;
  font-size: 14px;
  margin-top: 2px;
}

.page-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 30px;
  color: #1a3a5c;
}

.bio-content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  line-height: 1.7;
  font-size: 16px;
}

.bio-content h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  color: rgba(117, 198, 255, 1);
}

.bio-content h3:first-child { margin-top: 0; }

.bio-content p {
  margin-bottom: 14px;
  white-space: pre-wrap;
}

.contact-btn {
  display: inline-block;
  background: rgba(117, 198, 255, 1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.contact-btn:hover { transform: translateY(-2px); }

.songs-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.song-item {
  padding: 8px 0;
  border-bottom: 1px solid #eef2f7;
  font-size: 16px;
}

.song-item:last-child { border-bottom: none; }

.song-title { font-weight: 600; }

.song-artist { color: #555; margin-left: 6px; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slides {
  position: relative;
  height: 400px;
  background-color: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-placeholder {
  font-size: 24px;
  color: #1a3a5c;
  font-weight: 600;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.slide-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

.slide-btn.prev {
  left: 12px;
}

.slide-btn.next {
  right: 12px;
}

.dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background-color 0.2s;
}

.dot.active {
  background-color: #fff;
}

/* ---- Members page ---- */

.members-section {
  max-width: 900px;
}

.members-empty {
  text-align: center;
  color: #555;
  font-size: 18px;
  margin-top: 40px;
}

.members-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.member-card {
  display: flex;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  align-items: flex-start;
}

.member-photo-wrap {
  flex-shrink: 0;
  width: 220px;
}

.member-photo {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: block;
}

.member-photo-placeholder {
  width: 220px;
  height: 260px;
  background: #e8f4ff;
  border: 2px dashed rgba(117, 198, 255, 1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ab8d4;
  font-weight: 600;
  font-size: 15px;
}

.member-info {
  flex: 1;
}

.member-name {
  font-size: 26px;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 14px;
}

.member-bio {
  line-height: 1.75;
  font-size: 16px;
  color: #2c4a6e;
}

.member-bio p {
  margin-bottom: 10px;
}

.member-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .member-card {
    flex-direction: column;
    align-items: center;
  }
  .member-photo-wrap {
    width: 100%;
  }
  .member-photo,
  .member-photo-placeholder {
    width: 100%;
    height: 240px;
  }
}
