html {
  overflow-y: scroll;
  scroll-padding-top: 64px;
}

body {
  margin: 0;
  background-color: #000000;
  font-family: 'Cinzel', serif;
  font-size: 19px; /* 1pt larger */
  line-height: 1.6;
  text-align: center;
  color: #e5e5e5;
}

.construction-banner {
  background: #8b0000;
  color: #ffffff;
  text-align: center;
  padding: 6px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background: url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  filter: contrast(1.15) saturate(1.08) brightness(1.03);
}

h1, h2, h3 {
  letter-spacing: 1px;
}

.site h2 {
  margin: 0 auto 18px;
  display: inline-block;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1em;
}

.site h3 {
  margin-top: 0;
}

.logo-section {
  padding: 26px 0 10px;
  position: relative;
  isolation: isolate;
}

.logo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("../images/background.jpg") no-repeat center center fixed;
  background-size: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.55;
  z-index: -2;
}

.logo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.mini-nav {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
}

.mini-nav a {
  display: inline-block;
  margin: 0 10px;
  color: #e5e5e5;
  text-decoration: none;
  font-size: 0.95em;
}

.mini-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site {
  width: 100%;
  background:
    linear-gradient(rgba(90, 0, 0, 0.14), rgba(90, 0, 0, 0.14)),
    rgba(0, 0, 0, 0.72);
  padding: 18px 0 40px;
}

.site > section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
}

.site > section.gigs,
.site > section.news {
  padding-top: 18px;
}

.logo {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

.about-members {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.about h1 {
  margin-top: 0;
  text-align: center;
}

.about p {
  margin-bottom: 0;
}

.members {
  text-align: center;
  margin-top: 26px;
}

.members-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Individual member */
.member {
  text-align: center;
  overflow: hidden;
  flex: 0 0 auto;
  width: 132px;
}

/* Member images */
.member img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.member img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member h3 {
  margin: 10px 0 0;
  font-size: 0.95em;
  line-height: 1.15;
}

.member p {
  margin: 4px 0 0;
  font-size: 0.85em;
  opacity: 0.85;
}

.gigs-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
  text-align: center;
}

.gigs-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-post {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.news-post h3 {
  margin: 0 0 10px;
}

.muted {
  opacity: 0.75;
}

.lyrics-tools {
  max-width: 520px;
  margin: 12px auto 18px;
}

.lyrics-search {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #e5e5e5;
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.lyrics-search::placeholder {
  color: rgba(229, 229, 229, 0.7);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile layout */
@media (max-width: 768px) {
  /* All site text remains centered on mobile */
  .mini-nav a {
    margin: 0 8px;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .member {
    width: 112px;
  }

  .member img {
    width: 112px;
    height: 112px;
  }
}

/* Banner */
.banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin: 40px 0;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lyrics {
  margin-top: 50px;
}

footer {
  margin-top: 0;
  padding: 24px 0;
  border-top: 1px solid #ddd;
}

.socials img {
  width: 32px;
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

a {
  color: #ccc;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

/* Albums */
.discography {
  padding: 32px 20px;
}

.album {
  text-align: center;
  margin-bottom: 70px;
}

.discography .album:last-child {
  margin-bottom: 22px;
}

.album-cover img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto 20px auto;
}

.album-content ul {
  list-style: none;
  padding-left: 0;
}

.album-content li {
  margin-bottom: 6px;
  font-size: 0.95em;
}

@media (max-width: 480px) {
  .logo {
    margin: 0 auto;
    max-width: 260px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 19px;
  }

  .logo-section {
    padding: 8px 0 6px;
  }

  .logo {
    max-width: 220px;
  }

  .about h1 {
    font-size: 28px;
    letter-spacing: 0.5px;
  }

  .mini-nav {
    padding: 8px 10px;
  }

  .mini-nav a {
    margin: 0 6px;
    font-size: 0.9em;
  }

  .members-row {
    gap: 8px;
  }

  .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 104px;
  }

  .member img {
    width: 104px;
    height: 104px;
  }

  .album-content li {
    font-size: 0.9em;
  }

  .album {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .album-cover img {
    width: 80%;
    height: auto;
  }
}

/* Lyrics modal */
.lyrics-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999;
  padding: 40px 20px;
  overflow-y: auto;
}

.lyrics-modal {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #444;
  max-width: 900px;
  width: 90%;
  padding: 20px 20px 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
}

.lyrics-modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.lyrics-modal-title {
  display: none;
}

.lyrics-modal-close {
  background: transparent;
  border: 1px solid #666;
  color: #e5e5e5;
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
}

.lyrics-modal-close:hover {
  background: #666;
  color: #000;
}

.lyrics-modal-body {
  flex: 0 0 auto;
}

.lyrics-modal-body #lyricsModalContent {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .lyrics-modal-overlay {
    padding: 16px 10px;
  }

  .lyrics-modal {
    width: 100%;
    max-width: none;
    padding: 16px 14px 8px;
  }

  .lyrics-modal-body #lyricsModalContent {
    max-width: none;
    line-height: 1.6;
    font-size: 0.95em;
  }
}

/* Cover modal */
.cover-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 9998;
  padding: 40px 20px;
  overflow-y: auto;
}

.cover-modal {
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #444;
  max-width: 980px;
  width: 94%;
  padding: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  text-align: center;
}

.cover-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cover-modal-title {
  font-size: 18px;
  opacity: 0.9;
}

.cover-modal-close {
  background: transparent;
  border: 1px solid #666;
  color: #e5e5e5;
  padding: 4px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  text-transform: uppercase;
}

.cover-modal-close:hover {
  background: #666;
  color: #000;
}

.cover-modal-body img {
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 6px;
  display: block;
}

/* Keep overlay visible right up to footer */
.site-footer-gap {
  height: 40px;
}

/* Footer / socials area (no dark overlay) */
.footer {
  background: #ffffff;
  color: #000000;
  text-align: center;
}

.footer a {
  color: #000000;
  text-decoration: underline;
}

.contact {
  margin-bottom: 12px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.copyright {
  margin: 0;
  color: #000000;
}
