:root{
  --ink: #111827;         /* headings + body text */
  --ink-soft: #232323;    /* nav links, icons */
  --muted: rgba(17,24,39,0.6);
  --bg-alt: #f3f4f4;      /* alternating section band */
  --border: rgba(0,0,0,0.08);
  --border-input: rgba(0,0,0,0.12);
  --btn-bg: #4b5563;
  --btn-bg-hover: #374151;
  --label-color: #334155;
  --req: #ef4444;
  --radius-card: 12px;
  --radius-input: 8px;
  --radius-pill: 9999px;
  --max: 1280px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  background: #D5FFFF;
  color: var(--ink);
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.section{ background: #D5FFFF; }
.section--alt{ background: #D5FFFF; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 16px;
}

/* ---------------- nav + hero title ---------------- */
.nav{
  display: flex;
  justify-content: center;
}
.nav__list{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}
.nav__list a{
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: opacity 0.15s ease;
}
.nav__list a:hover,
.nav__list a:focus-visible{ opacity: 0.7; }

.title-wrapper {
  display: flex;
  justify-content: center;
}

.title{
  width: 25%;
  margin: 24px 0 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  align-items: center;
}

/* ---------------- about ---------------- */
#about {
  background-image: url("img/img2_blurred.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about{
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}
@media (min-width: 768px){
  .about{ flex-direction: row; align-items: stretch; }
  .about__image, .about__text{ flex: 1 1 0; min-width: 0; }
}
.about__image{
  overflow: hidden;
  background: #000;
}
.about__image img{
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about__text{
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.about__text h2{
  margin: 0 0 4px;
  color: #eee;
}

.about__text .muted {
  color: #eee;
}
.about__text p{ margin: 0; }
.lead{ font-weight: 700; font-style: italic; }
.bold{ font-weight: 700; }
.muted{ color: var(--muted); }

h2{
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}
h2.big{
  font-size: 40px;
}
h2.center{ text-align: center; }
p.center{ text-align: center; }

/* ---------------- music ---------------- */
#music {
  background-image: url(img/img3_blurred.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#music h2 {
  color: #eee;
}

#music .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotify-card iframe {
  width: 25vw;
}

/* ---------------- band + galleries ---------------- */
.band{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

#band-section {
  background-image: url("./img/img1.webp");
  background-position: center;
  background-repeat: no-repeat;
}

.band__member:nth-child(1) {
  text-align: end;
}
@media (min-width: 768px){
  .band{ grid-template-columns: 1fr 1fr; }
}
.band__member h2{ margin-bottom: 0; }
.role{
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 24px;
}
.gallery{
  column-count: 3;
  column-gap: 16px;
}
@media (max-width: 640px){
  .gallery{ column-count: 2; }
}
.gallery__img{
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  background: #000;
  cursor: pointer;
  filter: grayscale(0%);
  transition: opacity 0.15s ease;
}
.gallery__img:hover{ opacity: 0.85; }

/* ---------------- contact ---------------- */
.contact{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact h2{
  margin-bottom: 8px;
  font-size: 32px;
}
.contact > p.muted{ margin: 0 0 32px; }

.contact-card{
  width: 100%;
  max-width: 672px;
  background: #D5FFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}
.contact-card form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label{
  font-size: 14px;
  font-weight: 600;
  color: var(--label-color);
}
.req{ color: var(--req); margin-left: 2px; }
.field input,
.field textarea{
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #D5FFFF;
  border: 1px solid var(--border-input);
  border-radius: var(--radius-input);
  padding: 8px 12px;
}
.field textarea{ resize: vertical; }
.field input::placeholder,
.field textarea::placeholder{ color: #9ca3af; }
.field input:focus-visible,
.field textarea:focus-visible{
  outline: 2px solid var(--btn-bg);
  outline-offset: 1px;
}

.send-btn{
  width: 100%;
  background: var(--btn-bg);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.send-btn:hover{ background: var(--btn-bg-hover); }
.send-btn:focus-visible{ outline: 2px solid var(--ink); outline-offset: 2px; }

.form-status{
  margin: 0;
  font-size: 14px;
  color: var(--btn-bg);
  min-height: 1.2em;
}

.social-row{
  display: flex;
  gap: 8px;
  margin-top: 32px;
}
.social-row a{
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease;
}
.social-row a:hover{ opacity: 0.75; }

/* ---------------- lightbox (vue-easy-lightbox lookalike) ---------------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden]{ display: none; }

.lightbox__stage{
  max-width: 90vw;
  max-height: 80vh;
}
.lightbox__stage img{
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  box-shadow: 0 5px 20px 2px rgba(0,0,0,0.7);
  transition: transform 0.2s ease;
  cursor: grab;
}

.lightbox__close,
.lightbox__nav,
.lightbox__toolbar button{
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__toolbar button:hover{ background: rgba(0,0,0,0.55); }

.lightbox__close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.lightbox__nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.lightbox__nav--prev{ left: 16px; }
.lightbox__nav--next{ right: 16px; }
.lightbox__nav:disabled{ opacity: 0.3; cursor: default; }

.lightbox__toolbar{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lightbox__toolbar button{
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

@media (max-width: 640px){
  .lightbox__nav{ width: 36px; height: 36px; }
  .lightbox__nav--prev{ left: 6px; }
  .lightbox__nav--next{ right: 6px; }
}
