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

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

:root {
  --near-black:     #232323;
  --steel-blue:     #295a7c;
  --cream:          #F8F0DB;
  --golden-yellow:  #FEC72C;
  --magenta:        #A30D54;
  --dark-footer:    #1a1a1a;
  --nav-height:     110px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'M PLUS 1p', 'Helvetica Neue', Arial, sans-serif;
  background: var(--near-black);
  color: var(--near-black);
  overflow-x: clip;
  padding-top: var(--nav-height);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  padding: 0 60px;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
  height: 4px;
  background: linear-gradient(to right, var(--near-black), var(--steel-blue), var(--near-black));
}

/* ============================================================
   FADE-UP ANIMATION
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background: var(--golden-yellow);
  color: var(--near-black);
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 150ms ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-large {
  font-size: 14px;
  padding: 16px 44px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(41,90,124,0.93);
  overflow: visible;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.nav.scrolled {
  background: var(--steel-blue);
  box-shadow: 0 3px 24px rgba(0,0,0,0.5);
}

.nav-bar {
  position: relative;
  height: var(--nav-height);
  padding: 0 32px;
  display: flex;
  align-items: center;
}

/* Left side — links spread evenly across left half */
.nav-links-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-right: 120px; /* 90px logo radius + 30px buffer */
}

/* Right side — slice button */
.nav-links-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 120px; /* 90px logo radius + 30px buffer */
  padding-right: 125px;
  overflow: visible;
}

.nav-links-left a,
.nav-links-right a:not(.btn-slice) {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  transition: color 150ms ease;
}

.nav-links-left a:hover,
.nav-links-right a:not(.btn-slice):hover {
  color: rgba(248,240,219,0.9);
  text-shadow: 0 0 10px rgba(248,240,219,0.55), 0 0 24px rgba(248,240,219,0.25);
  transition: color 200ms ease, text-shadow 200ms ease;
}

.nav-links-right a:not(.btn-slice) {
  padding-right: 80px;
}

/* --- Logo — bleeds below nav into hero --- */
.nav-logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
  z-index: 10;
  width: 225px;
  height: auto;
  display: block;
}

.nav-logo-center img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}

/* --- CONTACT slice button --- */
.btn-slice {
  padding: 0.85rem 1.75rem;
  border: 2px solid #FEC72C;
  border-radius: 4px;
  color: #F8F0DB;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  position: relative;
  transition: all 1000ms cubic-bezier(0.890, -0.170, 0.140, 1.225);
  text-decoration: none;
  display: inline-block;
  background: transparent;
  text-transform: uppercase;
  line-height: 1;
}
.btn-slice .top { position: relative; height: 6px; overflow: hidden; top: 0; transition: all 300ms cubic-bezier(1.000, -0.055, 0.025, 1.040); transition-delay: 0.35s; }
.btn-slice .bottom { position: relative; height: 6px; overflow: hidden; bottom: 0; transition: all 300ms cubic-bezier(1.000, -0.055, 0.025, 1.040); transition-delay: 0.35s; }
.btn-slice .bottom span { top: -6px; position: absolute; left: 0; }
.btn-slice:hover .top { top: -5px; }
.btn-slice:hover .bottom { bottom: -5px; }
.btn-slice:hover, .btn-slice:focus, .btn-slice:active { margin-left: 10px; border-color: white; box-shadow: 0 0 10px rgba(255,255,255,0.45), 0 0 24px rgba(255,255,255,0.2); }
.btn-slice:before { content: ''; height: 1px; width: 60px; background-color: #FEC72C; position: absolute; margin-top: 6px; right: -35px; transition: all 1000ms cubic-bezier(0.890, -0.170, 0.140, 1.225); }
.btn-slice:hover:before { width: 130%; }

/* --- Hamburger (hidden on desktop) --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(248,240,219,0.85);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile dropdown menu --- */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: #1a2e40;
  padding: 28px 32px;
  border-top: 1px solid rgba(41,90,124,0.4);
}

.nav-mobile-menu.is-open {
  display: flex;
}

.nav-mobile-menu a {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,240,219,0.85);
}

.nav-mobile-menu .btn-slice {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 12px;
  padding: 0.5rem 1rem;
}

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

.hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  padding-top: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 52px;
  overflow: clip;
  scroll-margin-top: 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35,35,35,0.88) 0%, transparent 60%);
  pointer-events: none;
}

.hero-cta {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SONGS SECTION
   ============================================================ */

.songs {
  background: var(--cream);
  padding: 72px 0 56px;
  scroll-margin-top: 80px;
}

.songs-header {
  margin-bottom: 40px;
}

.songs-headline {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sampler-pill {
  display: inline-flex;
  align-items: center;
  background: var(--magenta);
  color: #fff;
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.songs-subhead {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  color: #6a6058;
  max-width: 600px;
  line-height: 1.65;
}

.songs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

.song-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-left: 2px solid var(--steel-blue);
  transition: border-color 150ms ease;
}

.song-item:hover {
  border-color: #4a9ac4;
}

.song-title {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--near-black);
}

.song-artist {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6a6058;
}

.songs-footer {
  margin-top: 32px;
  font-family: 'M PLUS 1p', sans-serif;
  font-style: italic;
  font-size: 14px;
  color: var(--magenta);
}

/* ============================================================
   SHOWS SECTION
   ============================================================ */

.shows {
  scroll-margin-top: 80px;
  background: var(--magenta);
  padding-bottom: 60px;
}

.shows-header {
  background: var(--magenta);
  padding: 36px 40px;
}

.shows-headline {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 34px;
  color: #fff;
}

.shows-cards-area {
  background: var(--near-black);
  margin: 0 40px 40px 40px;
  border-radius: 16px;
  padding: 30px;
}

.shows-subheading {
  text-align: left;
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: var(--cream);
  padding: 0 0 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.show-card {
  border-radius: 10px;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: default;
}

.show-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.show-card-header {
  background: var(--golden-yellow);
  color: var(--near-black);
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 10px 14px;
  line-height: 1.3;
}

.show-card-body {
  background: var(--cream);
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.past-show {
  position: relative;
}

.past-show::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  pointer-events: none;
  z-index: 1;
}

.past-show .show-card-header {
  color: #555;
  font-weight: 400;
  text-decoration: line-through;
}

.show-past-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--near-black);
  font-weight: 700;
  margin-top: auto;
  padding-top: 6px;
}

.show-venue {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--near-black);
}

.show-location {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #3a3028;
}

.show-time {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6a6058;
}

.show-note {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-style: italic;
  color: #6a6058;
  margin-top: 4px;
}

/* ============================================================
   BAND SECTION
   ============================================================ */

.band {
  background: var(--steel-blue);
  padding: 36px 0 88px;
  scroll-margin-top: 80px;
}

.band-intro {
  margin-bottom: 48px;
}

.band-headline {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--cream);
  margin-bottom: 12px;
}

.band-subhead {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  color: rgba(248,240,219,0.7);
  line-height: 1.65;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.band-card {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(248,240,219,0.15);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 0 18px 4px rgba(248,240,219,0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.band-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 36px 12px rgba(248,240,219,0.45);
}

.band-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.band-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.band-avatar--initials {
  background: rgba(248,240,219,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-avatar--initials span {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 36px;
  color: rgba(248,240,219,0.45);
  line-height: 1;
}

.band-name {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 6px;
}

.band-role {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(248,240,219,0.6);
  margin-bottom: 12px;
  line-height: 1.4;
}

.band-quote {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-style: italic;
  color: rgba(248,240,219,0.45);
}

@keyframes band-card-enter {
  from { opacity: 0; transform: translateY(52px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0); }
}

.band-card.fade-up.is-visible {
  animation: band-card-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.band-grid .band-card:nth-child(1) { animation-delay: 0ms; }
.band-grid .band-card:nth-child(2) { animation-delay: 180ms; }
.band-grid .band-card:nth-child(3) { animation-delay: 360ms; }
.band-grid .band-card:nth-child(4) { animation-delay: 540ms; }

/* ============================================================
   HEADLINE ENTRANCE ANIMATION
   ============================================================ */

@keyframes headline-enter {
  from { opacity: 0; transform: translateX(-44px); }
  to   { opacity: 1; transform: translateX(0); }
}

.songs-headline.is-visible,
.shows-headline.is-visible,
.band-headline.is-visible,
.footer-headline.is-visible {
  animation: headline-enter 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.footer {
  background: var(--dark-footer);
  border-top: 1px solid var(--steel-blue);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 250px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  gap: 20px;
}

.footer-nav a {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 16
  px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  transition: color 150ms ease;
}

.footer-nav a:hover {
  color: rgba(248,240,219,0.9);
  text-shadow: 0 0 10px rgba(248,240,219,0.55), 0 0 24px rgba(248,240,219,0.25);
  transition: color 200ms ease, text-shadow 200ms ease;
}

.footer-booking {
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-booking .btn-slice {
  font-size: 17px;
  padding: 1.2rem 2.8rem;
}

.footer-booking .btn-slice .top,
.footer-booking .btn-slice .bottom {
  height: 9px;
}

.footer-booking .btn-slice .bottom span {
  top: -9px;
}

.footer-headline {
  font-family: 'Caledia', 'Georgia', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--cream);
  line-height: 3;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}

.footer-socials a:hover {
  opacity: 0.6;
}

.footer-logo-col {
  align-items: flex-end;
}

.footer-logo {
  width: 160px;
  height: auto;
}


.footer-bottom {
  border-top: 1px solid rgba(248,240,219,0.07);
  padding: 14px 60px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom span {
  font-family: 'M PLUS 1p', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248,240,219,0.2);
}

.footer-bottom .sep {
  color: #A30D54;
}

/* ============================================================
   RESPONSIVE — TABLET (768–1023px)
   ============================================================ */

@media (max-width: 1023px) {
  .container {
    padding: 0 32px;
  }

  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shows-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-booking {
    order: -1;
  }

  .footer-logo-col {
    align-items: center;
  }

  .footer-bottom {
    padding: 14px 32px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  :root {
    --nav-height: 75px;
  }

  .nav-bar {
    padding: 0 16px;
  }

  .nav-logo-center {
    width: 140px;
    height: auto;
    bottom: -36px;
  }

  .hero {
    height: 50vh;
    min-height: 360px;
    padding-bottom: 40px;
  }

  .hero-video {
    object-position: center 45%;
  }

  .songs {
    padding: 56px 0 44px;
  }

  .songs-headline {
    font-size: 26px;
  }

  .songs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shows-header {
    padding: 28px 16px;
  }

  .shows-headline {
    font-size: 24px;
  }

  .shows-cards-area {
    margin: 0 16px 32px 16px;
    padding: 20px;
  }

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

  .band {
    padding: 28px 0 68px;
  }

  .band-headline {
    font-size: 26px;
  }

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

  .footer-main {
    padding: 40px 20px;
  }

  .footer-headline {
    font-size: 22px;
  }

  .footer-bottom {
    padding: 14px 20px;
  }

  .nav-mobile-menu {
    padding: 24px 20px;
  }
}
