 :root {
   --bg: #0a0000;
   --text: #947f59;
   --muted: #947f59;
   --accent: #e89259;
   --panel: rgba(255, 255, 255, 0.04);
   --border: rgba(255, 255, 255, 0.08);
 }

 * {
   box-sizing: border-box;
 }

 html,
 body {
   margin: 0;
   padding: 0;
   width: 100%;
   min-height: 100%;
   background: var(--bg);
   color: var(--text);
   font-family: "Lato", Arial, sans-serif;
 }

 body {
   background: var(--bg);
 }

 a {
   color: var(--accent);
   text-decoration: none;
 }

 a:hover {
   text-decoration: underline;
 }

 .text-left {
  text-align: left;
 }

 .band-members {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
 }

 .hero {
   width: 100%;
 }


 .section-title {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.section-intro {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.modal-content iframe {
  width: min(90vw, 1280px);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 12px;
  display: block;
  background: #000;
}


 .video-container {
   position: relative;
   width: 100%;
   height: 55vh;
   min-height: 320px;
   overflow: hidden;
   background: #000;
   filter: drop-shadow(0px 2px 6px #573620);
 }

 .hero-video {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .video-container::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom,
       rgba(0, 0, 0, 0.15),
       rgba(0, 0, 0, 0.45));
   pointer-events: none;
 }

 .content {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 3rem 1.5rem;
 }

 .content-inner {
   width: min(100%, 720px);
   text-align: center;
 }

 .band-description {
   max-width: 760px;
   margin: 0 auto 1.5rem;
   color: var(--muted);
   font-size: 1.05rem;
   line-height: 1.7;
 }

 .spotify-link {
   display: inline-block;
   margin-bottom: 1.25rem;
   font-weight: 700;
   font-size: 1rem;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }

 .spotify-card {
   padding: 0.9rem;
   border-radius: 20px;
   background: var(--panel);
   border: 1px solid var(--border);
   backdrop-filter: blur(10px);
 }

 .spotify-player {
   width: 100%;
   height: 352px;
   border: 0;
   border-radius: 14px;
   display: block;
 }

 .gallery {
   max-width: 1100px;
   margin: 0 auto;
   padding: 1rem 1.5rem 3rem;
 }

 .contact {
   width: min(100%, 760px);
   margin: 0 auto 3rem;
   padding: 0 1.5rem;
 }

 .contact-card {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1.5rem;
 }

 .contact-title {
   margin: 0 0 1rem;
   font-size: 1.4rem;
 }

 .contact-form {
   display: grid;
   gap: 0.9rem;
 }

 .contact-form label {
   display: grid;
   gap: 0.4rem;
   text-align: left;
   color: var(--muted);
 }

 .contact-form input,
 .contact-form textarea {
   width: 100%;
   border: 1px solid var(--border);
   border-radius: 10px;
   background: rgba(0, 0, 0, 0.4);
   color: var(--text);
   padding: 0.7rem 0.8rem;
   font: inherit;
 }

 .contact-form textarea {
   min-height: 150px;
   resize: vertical;
 }

 .contact-form button {
   width: fit-content;
   border: 1px solid var(--accent);
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font: inherit;
   font-weight: 700;
   padding: 0.55rem 1.2rem;
   cursor: pointer;
 }

 .contact-form button:hover {
   filter: brightness(1.08);
 }

 .contact-form button:disabled {
   opacity: 0.6;
   cursor: wait;
 }

 .contact-status {
   min-height: 1.3rem;
   margin: 0;
   text-align: left;
   color: var(--muted);
 }

 .contact-status.success {
   color: #7de8b2;
 }

 .contact-status.error {
   color: #ff9e9e;
 }

 .gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
   gap: 0.75rem;
 }

 .thumb {
   position: relative;
   background: #111;
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
   cursor: pointer;
   aspect-ratio: 1 / 1;
 }

 .thumb img,
 .thumb video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   filter: grayscale(100%);
   transition: filter 0.25s ease, transform 0.25s ease;
 }

 .thumb:hover {
   border-color: var(--accent);
 }

 .thumb:hover img,
 .thumb:hover video {
   filter: grayscale(0%);
   transform: scale(1.03);
 }

 .thumb.video-thumb::after {
   content: "▶";
   position: absolute;
   right: 0.5rem;
   bottom: 0.5rem;
   background: rgba(0, 0, 0, 0.7);
   color: white;
   font-size: 0.9rem;
   padding: 0.25rem 0.45rem;
   border-radius: 999px;
 }

 .modal {
   display: none;
   position: fixed;
   inset: 0;
   z-index: 9999;
   background: rgba(0, 0, 0, 0.92);
   align-items: center;
   justify-content: center;
   padding: 2rem;
 }

 .modal.open {
   display: flex;
 }

 .modal-content {
   position: relative;
   max-width: 90vw;
   max-height: 90vh;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .modal-content img,
 .modal-content video {
   max-width: 100%;
   max-height: 90vh;
   border-radius: 12px;
   display: block;
 }

 .modal-close {
   position: absolute;
   top: -2.5rem;
   right: 0;
   background: none;
   border: none;
   color: white;
   font-size: 2rem;
   cursor: pointer;
 }

 .modal-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(0, 0, 0, 0.55);
   border: 1px solid rgba(255, 255, 255, 0.18);
   color: white;
   width: 48px;
   height: 48px;
   border-radius: 999px;
   font-size: 1.5rem;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .modal-prev {
   left: -4.5rem;
 }

 .modal-next {
   right: -4.5rem;
 }

 .modal-nav:hover {
   border-color: var(--accent);
   color: var(--accent);
 }

 @media (max-width: 768px) {
   .video-container {
     height: 42vh;
   }

   .content {
     padding: 2rem 1rem 2.5rem;
   }

   .spotify-player {
     height: 300px;
   }

   .gallery {
     padding-left: 1rem;
     padding-right: 1rem;
   }

   .contact {
     padding-left: 1rem;
     padding-right: 1rem;
   }

   .modal {
     padding: 1rem;
   }

   .modal-close {
     top: -2rem;
     font-size: 1.8rem;
   }

   .modal-nav {
     width: 42px;
     height: 42px;
     font-size: 1.2rem;
   }

   .modal-prev {
     left: 0.5rem;
   }

   .modal-next {
     right: 0.5rem;
   }
  }
  .band-member-name {
    text-align: center;
    color: #947f59;
  }
.site-footer {
  margin-top: 2rem;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-links a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}