/* Johnny Only — static site styles */
:root {
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --paper: #fffdf8;
  --paper-warm: #fbf3e4;
  --accent: #d4351c;       /* warm performance red */
  --accent-2: #f4b400;     /* footlight yellow */
  --accent-3: #2563a6;     /* stage blue */
  --line: #e8e2d3;
  --shadow: 0 8px 28px rgba(20, 20, 20, 0.08);
  --radius: 14px;
  --maxw: 1100px;
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-3); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

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

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(150%) blur(8px);
  background: rgba(255, 253, 248, 0.92);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
nav.primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 22px; flex-wrap: wrap;
}
nav.primary a {
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
}
nav.primary a:hover { color: var(--accent); text-decoration: none; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }

/* Hero — bright, fun, colorful */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 102, 0.55), transparent 45%),
    radial-gradient(circle at 88% 22%, rgba(255, 107, 158, 0.45), transparent 45%),
    radial-gradient(circle at 75% 85%, rgba(110, 200, 255, 0.45), transparent 45%),
    radial-gradient(circle at 18% 88%, rgba(170, 230, 130, 0.45), transparent 45%),
    linear-gradient(135deg, #fff5d6 0%, #ffe4f0 35%, #e4f3ff 70%, #e8ffd6 100%);
  padding: 90px 0 100px;
  text-align: center;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero::before {
  top: 8%; left: 6%;
  width: 60px; height: 60px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4351c'><path d='M9 17V5l12-2v12'/><circle cx='6' cy='17' r='3'/><circle cx='18' cy='15' r='3'/></svg>");
  opacity: 0.35;
  transform: rotate(-15deg);
}
.hero::after {
  bottom: 12%; right: 8%;
  width: 70px; height: 70px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563a6'><path d='M12 2l2.5 7H22l-6 4.5 2.5 7L12 16l-6.5 4.5L8 13.5 2 9h7.5z'/></svg>");
  opacity: 0.3;
  transform: rotate(12deg);
}
.hero .confetti {
  position: absolute; pointer-events: none;
  border-radius: 50%;
}
.hero .c1 { top: 14%; right: 14%; width: 14px; height: 14px; background: #ff6b9e; }
.hero .c2 { top: 25%; left: 18%; width: 10px; height: 10px; background: #f4b400; }
.hero .c3 { bottom: 28%; left: 10%; width: 12px; height: 12px; background: #2bb2b2; }
.hero .c4 { bottom: 18%; right: 22%; width: 16px; height: 16px; background: #9c6bff; }
.hero .c5 { top: 40%; right: 8%; width: 8px; height: 8px; background: #aae682; }
.hero .c6 { bottom: 36%; right: 38%; width: 9px; height: 9px; background: #ff8a3d; }
.hero .container { position: relative; z-index: 1; }
.hero .tagline {
  display: inline-block;
  background: linear-gradient(90deg, #d4351c, #f4b400);
  color: #fff;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(212, 53, 28, 0.3);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  max-width: 640px; margin: 0 auto 30px;
  font-size: 1.15rem; color: var(--ink-soft);
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  border: 2px solid var(--accent);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

/* Section base */
section.block { padding: 70px 0; border-bottom: 1px solid var(--line); }
section.block.alt { background: var(--paper-warm); }
section.block h2 { text-align: center; margin-bottom: 16px; }
section.block .sub {
  text-align: center; color: var(--ink-soft);
  max-width: 640px; margin: 0 auto 40px;
}

/* Shows grid */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.show-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex; flex-direction: column;
}
.show-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.show-card .badge {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px;
}
.show-card h3 { margin-bottom: 10px; }
.show-card p { color: var(--ink-soft); margin: 0 0 18px; flex: 1; }
.show-card a.more { font-weight: 600; color: var(--accent-3); }

/* Music section */
.music-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.music-row iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* About */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}
.about-row .portrait {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  text-align: center;
}
.about-row .portrait img { margin: 0 auto; max-height: 260px; }
.about-row .bio p { margin: 0 0 1em; color: var(--ink-soft); }

/* Contact */
.contact-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.contact-card h2 { color: var(--paper); }
.contact-card p { color: rgba(255, 253, 248, 0.78); }
.contact-card .email {
  display: inline-block;
  margin-top: 20px;
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: var(--accent-2);
  word-break: break-all;
}
.contact-card .email:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  padding: 36px 0 50px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  background: var(--paper);
}
.site-footer a { color: var(--ink-soft); }

/* Inner page hero */
.page-hero {
  background: var(--paper-warm);
  padding: 60px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }

.page-body { padding: 60px 0 80px; }
.page-body .container { max-width: 760px; }
.page-body p { color: var(--ink-soft); margin: 0 0 1.1em; font-size: 1.05rem; }
.page-body h2 { margin-top: 1.5em; }
.page-body ul { padding-left: 1.3em; color: var(--ink-soft); }
.page-body ul li { margin-bottom: 0.4em; }

.media-placeholder {
  background: var(--paper-warm);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 50px 24px;
  text-align: center;
  color: var(--ink-soft);
  margin: 30px 0;
}

/* Featured-in banner (HBO Max documentary credit) */
.featured-in {
  background:
    radial-gradient(ellipse at top, rgba(140, 96, 240, 0.25), transparent 60%),
    linear-gradient(180deg, #1b0f3a 0%, #0e0822 100%);
  color: #f4f1ff;
  padding: 70px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.featured-in .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8a4ff;
  font-weight: 700;
  margin-bottom: 14px;
}
.featured-in h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.featured-in h2 .doc-title { font-style: italic; }
.featured-in .artist-line {
  color: rgba(244, 241, 255, 0.85);
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.55;
}
.featured-in .artist-line .me {
  color: #ffe066;
  font-weight: 700;
}
.featured-in .trailer-wrap {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.featured-in .trailer-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.featured-in .trailer-caption {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(244, 241, 255, 0.6);
  font-style: italic;
}

/* Show pillars — compact marketing bullets */
.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 38px;
  max-width: 880px;
  margin: 36px auto 0;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  flex: 0 1 auto;
}
.pillar .ring {
  width: 44px; height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid;
  background: rgba(255,255,255,0.06);
}
.pillar .ring svg { width: 22px; height: 22px; }
.pillar.p1 .ring { border-color: #ff6b9e; }
.pillar.p1 .ring svg { color: #ff8db4; }
.pillar.p2 .ring { border-color: #4dd4d4; }
.pillar.p2 .ring svg { color: #88e0e0; }
.pillar.p3 .ring { border-color: #ffd13a; }
.pillar.p3 .ring svg { color: #ffe17a; }
.pillar.p4 .ring { border-color: #b388ff; }
.pillar.p4 .ring svg { color: #c9aaff; }
.pillar h3 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.pillar p {
  display: none;   /* compact mode hides the tagline */
}
@media (max-width: 640px) {
  .pillars { gap: 14px 22px; }
  .pillar h3 { font-size: 0.78rem; }
  .pillar .ring { width: 38px; height: 38px; flex: 0 0 38px; }
  .pillar .ring svg { width: 18px; height: 18px; }
}

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 30px 0 10px;
}
.gallery figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery figure:hover { transform: translateY(-3px); }
.gallery img {
  width: 100%; height: auto; display: block;
  cursor: zoom-in;
}
.gallery figcaption {
  padding: 14px 18px 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 1000;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-style: italic;
  padding: 0 20px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  background: none; border: none;
  cursor: pointer;
  line-height: 1;
}

/* Responsive */
@media (max-width: 760px) {
  nav.primary ul { display: none; }
  nav.primary.open ul {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); padding: 20px 24px;
    border-bottom: 1px solid var(--line); gap: 16px;
  }
  .nav-toggle { display: block; }
  .music-row { grid-template-columns: 1fr; }
  .about-row { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 60px 0 70px; }
  section.block { padding: 50px 0; }
}

/* Instagram reel feature on Kids page */
.reel-feature {
  background: linear-gradient(135deg, #fff7f0 0%, #fdecef 50%, #f0f6ff 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin: 0 0 36px;
  box-shadow: var(--shadow);
}
.reel-feature h2 { color: var(--ink); }
.reel-frame {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}
.reel-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* Email signup card */
.signup-card {
  margin: 40px auto 0;
  max-width: 560px;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.signup-card h2 { margin: 0 0 8px; }
.signup-card p { color: var(--ink-soft); margin: 0 0 18px; }
.signup-form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.signup-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.signup-form input[type="email"]:focus {
  outline: 2px solid var(--accent, #ff8a3d);
  outline-offset: 1px;
}
.signup-form .btn { flex: 0 0 auto; }
@media (max-width: 520px) {
  .signup-form { flex-direction: column; }
  .signup-form .btn { width: 100%; }
}
