/* ============================================================
   Bad Karl — vintage funk: seafoam, cream, teals, orange
   (style ref: Sean's far-right prototype)
   ============================================================ */

:root {
  --seafoam:    #93d1b6;
  --seafoam-lt: #b5deca;
  --cream:      #ecdcae;
  --cream-lt:   #f3e9c9;
  --navy:       #0f141c;
  --teal-deep:  #176076;
  --teal:       #1b96a1;
  --orange:     #f09e1f;
  --orange-dk:  #c97f0d;
  --max:        1020px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--seafoam);
  color: var(--navy);
  font-family: "Work Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, .nav__logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  line-height: 1.02;
}

a { color: inherit; text-decoration: none; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(147, 209, 182, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--teal-deep);
}
.nav__logo {
  font-size: 1.5rem;
  color: var(--orange);
  text-shadow: 2px 2px 0 var(--teal-deep);
}
.nav__links { display: flex; gap: clamp(0.9rem, 2.5vw, 1.8rem); margin-left: auto; }
.nav__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--orange-dk); }
.nav__book {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--orange);
  color: var(--navy);
  border: 2px solid var(--orange-dk);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}
.nav__book:hover { background: var(--cream); transform: translateY(-1px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__logo {
  display: block;
  height: clamp(160px, 28vh, 260px);
  width: auto;
  margin: 0 auto 1.2rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--seafoam-lt);
  background: var(--teal-deep);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(4rem, 13vw, 9rem);
  color: var(--orange);
  text-shadow: 0.05em 0.05em 0 var(--teal-deep);
}
.hero__cta {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 3px solid var(--orange-dk);
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--teal-deep); }
.btn--primary { background: var(--orange); color: var(--navy); }
.btn--primary:hover { background: var(--cream); }
.btn--ghost { background: transparent; color: var(--teal-deep); border-color: var(--teal-deep); }
.btn--ghost:hover { background: var(--seafoam-lt); }
.btn--book {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange-dk);
  font-size: 1rem;
}
.btn--book:hover { background: var(--cream); box-shadow: 4px 4px 0 var(--navy); }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(3.5rem, 9vw, 6rem) clamp(1rem, 4vw, 2.5rem); }
.section--alt { background: var(--cream); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  color: var(--teal-deep);
  position: relative;
  display: inline-block;
}
.section__title::after {
  content: "";
  display: block;
  width: 56px; height: 5px;
  background: var(--orange);
  border-radius: 999px;
  margin-top: 0.5rem;
}
.section__lead { color: var(--teal-deep); font-size: 1.05rem; margin: 0.7rem 0 2.2rem; }
.section__note { color: var(--teal-deep); font-size: 0.92rem; margin-top: 1.4rem; font-style: italic; }

/* ---------- ABOUT ---------- */
.about {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: 1.6rem;
}
.about__body { display: flex; flex-direction: column; gap: 1rem; }
.about__text {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.7;
}
.about__photo {
  overflow: hidden;
  border: 3px solid var(--teal-deep);
  border-radius: 16px;
}
.about__photo img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ---------- SHOWS ---------- */
.shows { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.show {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.2rem 1.5rem;
  background: var(--cream-lt);
  border: 3px solid var(--teal-deep);
  border-radius: 16px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.show:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--teal); }
.show__date { text-align: center; min-width: 64px; }
.show__month { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--orange-dk); font-weight: 600; }
.show__day { display: block; font-family: "Fraunces", serif; font-weight: 900; font-size: 2.1rem; line-height: 1; color: var(--teal-deep); }
.show__year { display: block; font-size: 0.72rem; color: var(--teal-deep); }
.show__info { min-width: 0; }
.show__venue { font-size: 1.12rem; font-weight: 600; }
.show__city { color: var(--teal-deep); font-size: 0.92rem; }
.show__cta { white-space: nowrap; }
.show__tickets {
  font-size: 0.78rem; font-weight: 600;
  padding: 0.55rem 1.2rem;
  border: 2.5px solid var(--teal-deep); border-radius: 999px;
  color: var(--teal-deep);
  transition: background 0.2s, color 0.2s;
}
.show__tickets:hover { background: var(--teal-deep); color: var(--cream-lt); }
.show__soldout { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-deep); }
.show__time { font-size: 0.85rem; font-weight: 600; color: var(--teal-deep); }
.show__venue a { border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.show__venue a:hover { color: var(--orange-dk); border-color: var(--orange-dk); }
.shows__empty { color: var(--teal-deep); font-style: italic; padding: 1rem 0; }

/* ---------- MERCH ---------- */
.merch {
  max-width: 720px;
  overflow: hidden;
  border: 3px solid var(--teal-deep);
  border-radius: 16px;
  background: #fff;
}
.merch img { width: 100%; height: auto; display: block; }
.merch__note {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--teal-deep);
  margin-top: 1.4rem;
  max-width: 56ch;
}
.merch__note a {
  font-weight: 600;
  color: var(--orange-dk);
  border-bottom: 2px solid var(--orange);
  transition: color 0.2s, border-color 0.2s;
}
.merch__note a:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* ---------- PHOTOS ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery__item { overflow: hidden; border: 3px solid var(--teal-deep); border-radius: 16px; }
.gallery__item img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery__item:hover img { transform: scale(1.04); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  background: rgba(15, 20, 28, 0.92);
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border: 4px solid var(--cream);
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: var(--cream);
  color: var(--navy);
  border: 3px solid var(--teal-deep);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--orange); transform: scale(1.06); }
.lightbox__close {
  top: clamp(0.8rem, 3vw, 1.6rem);
  right: clamp(0.8rem, 3vw, 1.6rem);
  width: 48px; height: 48px;
  font-size: 1.9rem;
  padding-bottom: 4px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  font-size: 2.2rem;
  padding-bottom: 6px;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__next { right: clamp(0.5rem, 2vw, 1.5rem); }
.gallery__placeholder {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(-45deg, var(--cream-lt) 0 18px, var(--cream) 18px 36px);
}
.gallery__placeholder span {
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--cream-lt);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--teal-deep);
}

/* ---------- BOOK US ---------- */
.book {
  background: var(--teal-deep);
  color: var(--cream-lt);
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}
.book__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
  color: var(--cream-lt);
  text-shadow: 0.05em 0.05em 0 var(--teal);
}
.book__lead {
  margin: 1rem auto 2.2rem;
  max-width: 46ch;
  font-size: 1.05rem;
  color: var(--seafoam-lt);
}

/* ---------- FOOTER ---------- */
.footer {
  text-align: center;
  padding: 2.2rem 1rem;
  font-size: 0.85rem;
  color: var(--seafoam-lt);
  background: var(--navy);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 680px) {
  .nav { flex-wrap: wrap; gap: 0.6rem 1rem; padding: 0.7rem 1rem; }
  .nav__logo { font-size: 1.3rem; }
  .nav__links { order: 3; width: 100%; justify-content: center; margin-left: 0; }
  .nav__book { margin-left: auto; }
  .hero { padding-top: 8rem; }
  .about { grid-template-columns: 1fr; }
  .about__photo { order: -1; }
  .show { grid-template-columns: auto 1fr; }
  .show__cta { grid-column: 2; justify-self: start; }
}
