/* =========================
   RESET & BASE
   ========================= */

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0e0e0e;
  color: #f2f2f2;
  line-height: 1.6;
}

/* =========================
   HEADER / NAV
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  padding: 1.5rem 2rem;

  background: transparent;   /* ALWAYS */
}


.home-button {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;

  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  background: rgba(14,14,14,0.85);
  color: #ffffff;

  border: 2px solid rgba(0,140,255,0.55);
  border-radius: 999px;

  box-shadow:
    0 0 0 rgba(0,140,255,0),
    inset 0 0 0 rgba(0,140,255,0);

  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.home-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.home-button:hover {
  border-color: rgba(0,140,255,0.95);
  box-shadow:
    0 0 22px rgba(0,140,255,0.55),
    inset 0 0 10px rgba(0,140,255,0.25);
}


.site-logo {
  height: 120px;
  width: auto;
}

.header-nav a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  cursor: pointer;
}

.header-nav a:hover {
  text-decoration: underline;
}

/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  background: url("hero.jpg") center / cover no-repeat;

  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-top: 10rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 600px;
}

.hero-cta {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.8rem 2.2rem;

  border: 2px solid #f2f2f2;
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
}

.hero-cta:hover {
  background: #f2f2f2;
  color: #0e0e0e;
}

/* =========================
   INFO GRID
   ========================= */

.info {
  padding: 4rem 2rem;
  background: #141414;
}

.info-grid {
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.info-grid h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

/* =========================
   SECTION DIVIDER (ELECTRIC BLUE)
   ========================= */

.section-divider {
  height: 20px;
}

.electric-blue {
  background: linear-gradient(
    to bottom,
    rgba(0,140,255,0.85),
    rgba(0,140,255,0.45),
    rgba(0,0,0,0)
  );
}

/* =========================
   COMMAND BUTTON (BLUE RING)
   ========================= */

.command-button {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.9rem 2.6rem;

  background: transparent;
  color: #ffffff;

  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  border-radius: 999px;
  border: 2px solid rgba(0,140,255,0.55);

  box-shadow:
    0 0 0 rgba(0,140,255,0),
    inset 0 0 0 rgba(0,140,255,0);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.15s ease;
}

.command-button:hover {
  border-color: rgba(0,140,255,0.95);

  box-shadow:
    0 0 26px rgba(0,140,255,0.55),
    inset 0 0 14px rgba(0,140,255,0.25);

  transform: translateY(-1px);
}

/* =========================
   ABOUT SECTION
   ========================= */

.section.about {
  padding: 6rem 2rem;
  background: linear-gradient(
    180deg,
    #0e0e0e,
    #121212
  );
}

.about-intro {
  max-width: 1100px;
  margin: 0 auto 4rem;

  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.about-photo img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* =========================
   BAND MEMBERS
   ========================= */

.band-members {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.member {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.member-bio h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.member-bio p {
  margin: 0;
  line-height: 1.5;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: #0b0b0b;
  border-top: 1px solid #222;
}

/* =========================
   CONTACT MODAL
   ========================= */

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.contact-modal.open {
  display: flex;
}

/* =========================
   CONTACT MODAL – INNER PANEL
   ========================= */

.contact-modal-inner {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2.75rem 3rem;

  background: #181a1d;
  color: #ffffff;

  border-radius: 12px;
  border: 2px solid rgba(0,140,255,0.55);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,140,255,0.35),
    0 0 28px rgba(0,140,255,0.35);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* strengthen presence when interacting */
.contact-modal-inner:focus-within {
  border-color: rgba(0,140,255,0.95);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,140,255,0.6),
    0 0 42px rgba(0,140,255,0.55);
}

/* heading */
.contact-modal-inner h2 {
  margin-bottom: 1.75rem;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

/* labels */
.contact-modal-inner label {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

/* inputs */
.contact-modal-inner input,
.contact-modal-inner textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.7rem 0.75rem;

  background: #0f1113;
  color: #ffffff;

  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* input focus */
.contact-modal-inner input:focus,
.contact-modal-inner textarea:focus {
  outline: none;
  border-color: rgba(0,140,255,0.85);
  box-shadow: 0 0 0 1px rgba(0,140,255,0.45);
}

.contact-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;

  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.contact-close:hover {
  color: rgba(0,140,255,1);
}
.human-check {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 0.95rem;
  line-height: 1;          /* THIS is critical */
  color: rgba(255,255,255,0.9);
}

.human-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;

  vertical-align: middle;  /* kill baseline weirdness */
  flex-shrink: 0;

  accent-color: rgb(0,140,255);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }

  .member {
    grid-template-columns: 1fr;
  }

  .member-photo img {
    width: 96px;
    height: 96px;
  }
}
.media-frame {
  padding: 0.85rem;
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    #1b1e22,
    #14171a
  );

  border: 2px solid rgba(0,140,255,0.35);

  box-shadow:
    0 24px 55px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,140,255,0.25);

  transition:
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.media-frame:hover {
  border-color: rgba(0,140,255,0.85);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,140,255,0.9),
    0 0 28px rgba(0,140,255,0.6);

  transform: translateY(-4px);
}


.media-aspect {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
}

.media-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.media-wrap {
  max-width: 1100px;      /* wide enough to support 2 videos */
  margin: 0 auto;
  text-align: center;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* explicit two columns */
  gap: 2.5rem;
}


.media-title {
  margin-bottom: 1.75rem;
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.section.media {
  padding-top: 5rem;
  padding-bottom: 5.5rem;
}
.songlist {
  padding: 5rem 2rem;
  background: #0f1113;
}

.songlist-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
}

.songlist-subtitle {
  text-align: center;
  margin: 4rem 0 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

.artist-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem 2rem;
  text-align: center;
}

.artist-grid span {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}

.artist-grid.primary span {
  font-weight: 600;
}

.artist-grid.secondary span {
  color: rgba(255,255,255,0.7);
}

/* subtle hover polish */
.artist-grid span:hover {
  color: #ffffff;
}