/*
Theme Name: Chickie Wah Wah
Theme URI: https://chickiewahwah.com
Description: Official theme for Chickie Wah Wah live music venue, New Orleans
Version: 1.0.0
Author: Scott Auten
*/

/* ── Variables ── */
:root {
  --bg:        #0a0a0a;
  --surface:   #141414;
  --surface2:  #1c1c1c;
  --red:       #c41e3a;
  --red-hover: #e0233f;
  --gold:      #c9a84c;
  --cream:     #f0e6d3;
  --muted:     #7a7a7a;
  --border:    #2a2a2a;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--cream); }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { margin-bottom: 1rem; color: #ccc; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--dark { background: var(--surface); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid var(--red);
  color: var(--cream);
  background: var(--red);
  cursor: pointer;
  transition: all .25s;
}
.btn:hover { background: transparent; color: var(--red); }
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline:hover { background: var(--cream); color: var(--bg); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn--gold:hover { background: transparent; color: var(--gold); }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
  line-height: 1.1;
}
.site-logo span { color: var(--red); }
.site-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-menu a:hover,
.nav-menu .current-menu-item a { color: var(--cream); }
.nav-menu .menu-tickets a {
  color: var(--bg);
  background: var(--red);
  padding: 8px 20px;
}
.nav-menu .menu-tickets a:hover { background: var(--red-hover); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: .3s;
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.82) 70%, rgba(10,10,10,1) 100%),
    url('https://images.unsplash.com/photo-1501386761578-eaa54b8998bf?w=1600&q=80') center/cover no-repeat;
  padding: 120px 24px 80px;
}
.hero__tag {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero__title { margin-bottom: 18px; }
.hero__title em {
  font-style: normal;
  color: var(--red);
}
.hero__sub {
  font-size: 1.15rem;
  color: #bbb;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero__address {
  font-size: .8rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 28px;
}

/* ── Upcoming shows strip ── */
.shows-strip { background: var(--surface); padding: 60px 0; }
.shows-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.shows-strip__head h2 { font-size: 1.5rem; }
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.show-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color .25s, transform .25s;
}
.show-card:hover { border-color: var(--red); transform: translateY(-2px); }
.show-card__date {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.show-card__artist {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--cream);
}
.show-card__genre {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.show-card__times {
  font-size: .78rem;
  color: #999;
  margin-bottom: 16px;
}
.show-card__cta {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color .2s;
}
.show-card__cta:hover { color: var(--cream); border-color: var(--cream); }

/* ── About teaser ── */
.about-strip {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip__label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-strip__text { color: #bbb; font-size: .95rem; line-height: 1.75; }
.about-strip__stat {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.about-strip__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 4px;
}
.about-strip__stat span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── CTA band ── */
.cta-band {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ── Events page ── */
.events-header { padding: 60px 0 40px; border-bottom: 1px solid var(--border); }
.events-list { padding: 60px 0; }
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.event-row:hover { background: var(--surface); margin: 0 -24px; padding: 28px 24px; }
.event-row__date { text-align: center; }
.event-row__month {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.event-row__day {
  font-family: var(--font-head);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--cream);
}
.event-row__year {
  font-size: .68rem;
  color: var(--muted);
}
.event-row__name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.event-row__meta {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.event-row__times { font-size: .8rem; color: #888; }

/* ── Single event page ── */
.event-hero {
  background: var(--surface);
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.event-hero__date {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.event-hero__genre {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  padding: 3px 12px;
  margin-bottom: 20px;
}
.event-hero__times {
  display: flex;
  gap: 32px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.event-hero__time-item strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.event-hero__time-item span {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.event-content { padding: 60px 0; }
.event-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
}
.event-sidebar .spotify-embed { margin-bottom: 28px; }
.event-venue {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  font-size: .85rem;
}
.event-venue strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── Generic page ── */
.page-header {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-header__label {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-body { padding: 60px 0; }
.page-body p { font-size: .95rem; color: #bbb; line-height: 1.8; max-width: 720px; }

/* ── Footer ── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .site-logo { font-size: 1.1rem; margin-bottom: 12px; }
.footer-brand p { font-size: .8rem; color: var(--muted); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .82rem; color: var(--muted); }
.footer-col ul li a:hover { color: var(--cream); }
.footer-address { font-size: .82rem; color: var(--muted); line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: rgba(10,10,10,.98); padding: 20px 24px 28px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .event-content__grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-row > .btn { grid-column: 2; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── Homepage content additions (June 2026) ── */
.hero__title { font-size: clamp(1.5rem, 3.5vw, 2.4rem); line-height: 1.25; max-width: 800px; margin: 0 auto 16px; }
.hero__sub--italic { font-size: 1.05rem; font-style: italic; color: var(--gold); margin-bottom: 18px; }
.hero__sub--body { font-size: .9rem; color: #bbb; line-height: 1.8; max-width: 680px; margin: 0 auto 24px; }

.section--tight { padding: 32px 0; }
.section--alt { background: #0a0a0a; }

.aeo-quick-answer {
  background: rgba(180,20,20,.08);
  border: 1px solid rgba(180,20,20,.25);
  border-left: 4px solid var(--crimson);
  padding: 20px 24px;
  font-size: .9rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 24px;
  border-radius: 0 4px 4px 0;
}
.aeo-quick-answer strong { color: var(--gold); }

.trust-signals {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 0;
  margin: 0;
}
.trust-signals li {
  font-size: .82rem;
  color: #aaa;
  letter-spacing: .03em;
}
.trust-signals li::before { content: none; }

.content-prose h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.content-prose p { font-size: .93rem; color: #bbb; line-height: 1.85; max-width: 740px; margin-bottom: 18px; }

.planning-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 28px; }
.planning-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.planning-step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.planning-step__body h3 { font-size: .95rem; margin-bottom: 8px; color: var(--cream); }
.planning-step__body p { font-size: .87rem; color: var(--muted); line-height: 1.7; margin: 0; max-width: none; }

.faq-section { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  font-size: .95rem;
  color: var(--cream);
  margin-bottom: 10px;
  cursor: default;
}
.faq-item__a p { font-size: .88rem; color: var(--muted); line-height: 1.75; margin: 0; max-width: none; }

.venue-nap {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  display: inline-block;
}
.venue-nap strong { color: var(--cream); }

.cta-band .venue-nap {
  background: rgba(255,255,255,.04);
  margin-top: 28px;
  color: rgba(255,255,255,.55);
}
.cta-band .venue-nap strong { color: rgba(255,255,255,.7); }

/* ── Page body richtext (about page) ── */
.page-body h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 28px; }
.page-body h2 { font-size: clamp(1.1rem, 2vw, 1.45rem); margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.page-body h3 { font-size: 1rem; margin: 24px 0 10px; color: var(--gold); }
.page-body strong { color: var(--cream); }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .planning-step { flex-direction: column; gap: 12px; }
  .planning-step__num { font-size: 1.4rem; width: auto; }
  .trust-signals { gap: 10px 20px; }
}
