/* =========================
   TheRealBandMom - Global Styles
   Single stylesheet rule: everything lives here.
   ========================= */

/* ---- Fonts (system, no external deps) ---- */
:root{
  --font-body: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-display: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;

  /* ---- Core theme ---- */
  --bg: #0b0b0f;
  --panel: #12121a;
  --panel-2: #171724;
  --text: #f5f5f7;
  --muted: #b6b6c7;
  --muted-2: #8f8fa6;

  /* ---- Accents (swap to your exact palette if you want) ---- */
  --accent-1: #ff3ea5; /* punchy pink */
  --accent-2: #00d2ff; /* electric cyan */
  --accent-3: #ffd166; /* warm gold */
  --accent-4: #9b5de5; /* purple */

  /* ---- Utility ---- */
  --border: rgba(255,255,255,0.10);
  --border-2: rgba(255,255,255,0.16);
  --shadow: 0 12px 28px rgba(0,0,0,0.55);
  --radius: 14px;
  --radius-lg: 20px;
  --max: 710px;
}

/* ===== Home rows (3-across): media row -> text -> media row -> text ===== */

.media-row{
  display: grid;
  grid-template-columns: 1fr; /* mobile stack */
  gap: 12px;
  margin: 18px 0;
}

@media (min-width: 860px){
  .media-row{
    grid-template-columns: repeat(3, 1fr); /* 3 across */
    gap: 14px;
  }
}

.tile{
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  line-height: 0; /* prevents tiny gaps under media */
}

.tile img,
.tile video{
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;  /* vertical-forward, consistent tiles */
  background: #000;
}

/* Text blocks between rows */
.row-text{
  text-align: center;
  max-width: 860px;
  margin: 10px auto 22px;
}

.row-cta{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
/* ===== Above-the-fold desktop layout ===== */
.home-top{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1120px;
  margin: 16px auto;
}

/* Desktop: hero + preview wall */
@media (min-width: 900px){
  .home-top{
    grid-template-columns: 3fr 9fr;
    align-items: start;
  }
}

/* Preview grid */
.gallery-preview{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 900px){
  .gallery-preview{
    grid-template-columns: 1fr 1fr;
  }
}

/* Keep hero from dominating */
.hero-media{
  max-width: 320px;
  margin: 0 auto;
}

/* =========================
   Social links row (under logo)
   ========================= */
.social-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin: 4px 0 2px;
}

.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--text);
}

.social-icon{
  width:36px;
  height:36px;
  display:block;
}

.social-link:hover,
.social-link:focus-visible{
  color: var(--accent-1);
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.container{
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---- Type ---- */
h1,h2,h3{
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  margin: 0 0 0.6rem 0;
}
h1{ font-size: clamp(1.6rem, 2.4vw, 2.2rem); }
h2{ font-size: clamp(1.3rem, 2vw, 1.7rem); }
h3{ font-size: 1.15rem; }

p{ margin: 0 0 1rem 0; color: var(--text); }
.small{ font-size: 0.92rem; color: var(--muted); }

/* ---- Buttons / chips ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
  color: var(--text);
  cursor: pointer;
}
.btn:hover{
  border-color: var(--border-2);
  text-decoration: none;
}
.btn--accent{
  border-color: rgba(255,62,165,0.55);
  background: var(--accent-1);   /* solid */
  color: #ffffff;
  box-shadow: none;
}

.btn--accent:hover,
.btn--accent:focus-visible{
  border-color: rgba(255,62,165,0.75);
  background: rgba(255,62,165,0.90);  /* still basically solid */
  color: #ffffff;
}
.badge{
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

/* ---- Cards / panels ---- */
.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}
.hr{
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

/* =========================
   Header (vertical flow)
   logo -> menu -> breadcrumbs
   ========================= */
.site-header{
  padding: 1.4rem 0 0.9rem 0;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,18,26,0.75), rgba(18,18,26,0.15));
  backdrop-filter: blur(8px);
}
.site-header .header-inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  text-align: center;
}

/* Logo block */
.brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.brand-logo{
  width: 240px;      /* desktop size */
  max-width: 72vw;   /* mobile safety */
}
.brand-title{
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .6px;
  color: var(--text);
}
.brand-title .accent{
  color: #ffffff;
}

/* Menu */
.nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding: .2rem 0;
}
.nav a{
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.nav a:hover{
  text-decoration: none;
  border-color: var(--border-2);
}
.nav a.is-active{
  border-color: rgba(0,210,255,0.35);
  background: linear-gradient(180deg, rgba(0,210,255,0.18), rgba(0,210,255,0.06));
}

/* Breadcrumbs */
.breadcrumbs{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--muted);
}
.breadcrumbs a{ color: var(--muted); }
.breadcrumbs .sep{ color: var(--muted-2); }

/* =========================
   Main content
   ========================= */
main{
  padding: 1.25rem 0 2.25rem 0;
}
.page-title{
  margin-top: .25rem;
}
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 860px){
  .grid--2{ grid-template-columns: 1fr 1fr; }
  .grid--3{ grid-template-columns: 1fr 1fr 1fr; }
}
/* ===== Vertical stacked sections (home) ===== */
.stack-section{
  padding: 1.25rem 0;
  text-align: center;
}

/* Make headings feel like sections, not “cards” */
.stack-section h2{
  margin-bottom: .4rem;
}

/* Optional: slightly tighter paragraph spacing inside sections */
.stack-section p{
  margin-bottom: .85rem;
}

/* =========================
   Footer
   ========================= */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 1.25rem 0 1.75rem 0;
  background: linear-gradient(180deg, rgba(18,18,26,0.12), rgba(18,18,26,0.65));
}
.site-footer .footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.footer-links a{
  color: var(--text);
  font-weight: 500;
  border-bottom: 0;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible{
  color: var(--accent-1); /* pink hover like header */
}

.footer-links a.active{
  color: var(--accent-2); /* cyan active like header */
}
.footer-meta{
  color: var(--muted-2);
  font-size: .9rem;
}


/* ===== Hamburger menu fixes (mobile) ===== */

/* Always honor hidden attribute */
[hidden] { display: none !important; }

.nav-wrap{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; /* anchor the drawer */
}

/* Kill the giant pill look */
.nav-toggle{
  width: auto;
  max-width: 92vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
}
@media (max-width: 859px){
  /* Put hamburger top-right on mobile */
  .nav-wrap{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    justify-content: flex-end;
    z-index: 10000;   /* ADD THIS */
  }

  /* Hide Menu text so it's just the icon */
  .nav-toggle__text{ display: none; }

  /* Tighten the button a bit */
  .nav-toggle{
    padding: .55rem .7rem;
    z-index: 10001;   /* ADD THIS */
  }
}

/* Mobile: hamburger only (no pill) */
@media (max-width: 859px){
  .nav-toggle{
    padding: .55rem;          /* icon-only hit area */
    border: 0 !important;     /* kill pill outline */
    background: transparent !important; /* kill pill fill */
    border-radius: 0 !important;        /* kill pill shape */
    box-shadow: none !important;
  }

  .nav-toggle__text{ display: none; }
}
@media (max-width: 859px){
  .nav-toggle:active{
    opacity: 0.75;
  }
}

/* Make sure no existing styles force huge sizing */
.nav-toggle * { box-sizing: border-box; }

/* Hamburger icon (3 bars) */
.nav-toggle__icon{
  width: 22px;
  height: 14px;
  position: relative;
  display: inline-block;
  background: linear-gradient(var(--text), var(--text)) center / 100% 2px no-repeat; /* middle bar */
}

.nav-toggle__icon::before,
.nav-toggle__icon::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-toggle__icon::before{ top: 0; }
.nav-toggle__icon::after{ bottom: 0; }

/* Drawer should float under the button, not take over layout */
.nav-drawer{
  position: absolute;
  top: calc(100% + .6rem);
  right: 0;            /* anchor to hamburger */
  left: auto;
  transform: none;     /* stop centering */
  z-index: 9999;

  width: min(92vw, 360px); /* optional: tighter on mobile */
  padding: .5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15,15,20,0.95);
  backdrop-filter: blur(10px);

  display: grid;
  gap: .35rem;
}

/* Links inside drawer */
.nav-drawer a{
  display: block;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  text-align: center;
}

.nav-drawer a.active{
  background: transparent;
  color: var(--accent-2);
}
/* Never underline nav drawer links */
.nav-drawer a:hover,
.nav-drawer a:focus{
  text-decoration: none;
}

/* Desktop: show normal nav, hide hamburger */
@media (min-width: 860px){
  .nav-toggle{ display: none; }
  .nav-drawer{
    position: static;
    transform: none;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: .5rem;
  }
  .nav-drawer a{
    border-radius: 0;
    padding: .25rem .4rem;
    background: transparent;
    border: 0;
  }

  /* Desktop hover: pink fill (match logo) */
.nav-drawer a:not(.active):hover,
.nav-drawer a:not(.active):focus{
  text-decoration: none;
  color: var(--accent-1);
}

  /* Smooth the state change */
  .nav-drawer a{
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
}
@media (max-width: 859px){
  #site-nav.nav-drawer{
    left: auto !important;
    right: 0 !important;
    transform: none !important;

    width: calc(100vw - 1rem) !important;
    max-width: 360px !important;
    box-sizing: border-box !important;
  }
}
/* =========================
   Desktop: top-right nav
   ========================= */
@media (min-width: 860px){

  /* Anchor nav to top-right */
  .site-header .header-inner{
    position: relative;
  }

  .nav-wrap{
  position: fixed;
  top: 18px;
  right: 24px;
  width: auto;
  z-index: 20000;
  }

  /* Hide hamburger button on desktop */
  .nav-toggle{
    display: none;
  }

  /* Make nav links inline, subtle */
  .nav-drawer{
    position: static;
    transform: none;
    display: flex !important;
    gap: 1.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .nav-drawer a{
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.15s ease;
  }

  .nav-drawer a:hover,
  .nav-drawer a:focus{
    color: var(--accent-1); /* pink */
  }

  .nav-drawer a.active{
    color: var(--accent-2); /* cyan */
  }
}
/* =========================
   About page – editorial layout
   ========================= */

.about{
  max-width: 900px;
  margin: 0 auto;
}

.about .page-title{
  text-align: left;
  margin-bottom: .75rem;
}

.about p{
  line-height: 1.7;
}

/* Lead paragraph: full width */
.about-lede{
  font-size: 1.06rem;
  margin-bottom: 1rem;
}

/* FORCE float behavior */
.about-figure{
  float: left;
  width: 260px;           /* hard width prevents ballooning */
  max-width: 38%;
  margin: .25rem 1.25rem 1rem 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-figure img{
  width: 100%;
  height: auto;
  display: block;
}

/* Clear float so footer doesn’t get eaten */
.about::after{
  content: "";
  display: block;
  clear: both;
}

/* Mobile: stack image */
@media (max-width: 700px){
  .about-figure{
    float: left;                 /* restore wrap */
    width: 160px;                /* slightly smaller for mobile */
    max-width: 55%;
    margin: .15rem 1rem .75rem 0; /* classic newspaper spacing */
  }

  .about .page-title{
    text-align: center;
  }
}

/* =========================
   Partnerships page tweaks
   ========================= */

/* Partnerships page tune-up */
.partnerships h2{
  margin: 1.6rem 0 .35rem 0;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.partnerships .subhead{
  margin: 0 0 .9rem 0;
  font-weight: 400;           /* not bold */
  color: var(--text);         /* not muted */
  opacity: 0.9;               /* subtle, but still white */
  font-size: 1.02rem;
}

.partnerships p{
  max-width: 70ch;            /* nicer reading width */
}

.btn--accent-solid{
  background: var(--accent-1);
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.btn--accent-solid:hover,
.btn--accent-solid:focus{
  background: var(--accent-2);
  color: #0b0b0f;
}

/* =========================
   Partnerships page
   ========================= */

.partnerships{
  max-width: 900px;
}

.partnerships-lede{
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 720px;
}

/* Pillars: not stacked death */
.partnerships-pillars{
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2.25rem;
}

.partnerships-pillars h2{
  margin-bottom: .25rem;
}

/* Section divider */
.partnerships-section-title{
  margin: 2rem 0 1.25rem;
}

/* Partnership types grid */
.partner-grid{
  display: grid;
  gap: 1.25rem;
}

.partner-grid h3{
  margin-bottom: .25rem;
}

/* Desktop layout */
@media (min-width: 860px){
  .partnerships-pillars{
    grid-template-columns: repeat(3, 1fr);
  }

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

/* CTA */
.partnerships-cta{
  margin-top: 2.5rem;
  text-align: center;
}
/* Pillars band with rules */
.pillars-band{
  margin: 1.75rem 0 2.25rem;
  text-align: center;
}

.pillars-rule{
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.partnerships-pillars{
  display: grid;
  gap: 1.5rem;
}

.partnerships-pillars h2{
  margin-bottom: .25rem;
}

.partnerships-pillars p{
  margin: 0;
  font-size: 1rem;
}

/* Desktop: 3 across */
@media (min-width: 860px){
  .partnerships-pillars{
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}


/* =========================
   Forms + alerts (reusable)
   ========================= */

/* Alerts */
.alert{
  margin: 1rem auto;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
}
.alert--success{ border-color: rgba(0, 255, 170, 0.25); }
.alert--error{ border-color: rgba(255, 90, 90, 0.30); }

/* Form controls */
.form-row{
  display: block;
  margin: 0.9rem 0;
}

.form-row label{
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
}
.form label{
  font-weight: 600;
}

/* Use .input class so we don’t globally style every input everywhere */
.input,
.form textarea{
  display: block;
  width: min(520px, 100%);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font-family: var(--font-body);
}

.input:focus,
.form textarea:focus{
  outline: none;
  border-color: rgba(255,255,255,0.30);
}

.help-text{
  margin-top: .35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Honeypot spam trap */
.hp-field{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* ---- Form success message (no background, high visibility) ---- */
.form-success{
  margin: 1.25rem 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3cff9e; /* bright, confident green */
}

.form-error{
  margin: 1.25rem 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ff6b6b; /* clear, readable red */
}

.contact-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1.1rem 0 0.5rem;
}

.contact-status{
  margin-top: 0.75rem;
  font-weight: 600;
}

.contact-status.is-ok{ color: #3cff9e; }
.contact-status.is-bad{ color: #ff6b6b; }

/* Contact page: centered CTA, same skin as About */
.contact-center{
  text-align: center;
}

.contact-center .contact-actions{
  justify-content: center;
}

.contact-center .about-lede{
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

/* Contact page final alignment polish */
.contact-center .page-title{
  text-align: center;
}

/* =========================
   By the numbers (Partnerships)
   ========================= */
.numbers-grid{
  display: grid;
  gap: 1.5rem;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 860px){
  .numbers-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.numbers-item h3{
  margin: 0;              /* kill all default headroom */
  line-height: 1.15;      /* tighter title line box */
}

.numbers-daterange{
  margin: 0 0 .65rem;     /* tight to title, space before list */
  font-size: 0.85rem;     /* smaller */
  font-style: italic;     /* italic */
  font-weight: 400;       /* not bold */
  color: var(--muted-2);  /* quieter */
  letter-spacing: 0.02em;
}

.numbers-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .45rem;
}

.numbers-list li{
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--border);
}

.numbers-list li strong{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--accent-1); /* brand pink */
  font-size: 1.05rem;
  min-width: 5.5ch; /* keeps columns visually aligned */
}

.numbers-list li span{
  color: var(--muted);
}

.numbers-audience{
  margin: 0;
  color: var(--muted);
  white-space: nowrap; /* prevents wrapping */
}

/* Audience row inside numbers list */
.numbers-audience-row{
  border-bottom: none;
  padding-top: .35rem;
}

.numbers-audience-row span{
  color: var(--muted);
  font-weight: 500;
}

.numbers-audience-row em{
  font-style: italic;
  color: var(--muted);
}
/* Hide dash placeholders without collapsing layout */
.numbers-dash strong,
.numbers-dash span{
  color: #000;            /* black on black = invisible */
}

.numbers-dash{
  pointer-events: none;   /* belt + suspenders */
}

/* Force-hide the dash placeholders (override pink) */
.numbers-list li.numbers-dash strong,
.numbers-list li.numbers-dash span{
  color: #000 !important; /* black-on-black */
}

/* =========================
   Header Shop Pill
   ========================= */
.header-shop{
  display: flex;
  justify-content: center;
  margin: 8px 0 4px; /* snug under social links */
}

.header-shop__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  background: var(--accent-1);            /* hot pink */
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid rgba(255,62,165,0.65);
  box-shadow: 0 12px 26px rgba(0,0,0,0.55);
  text-decoration: none;
}

.header-shop__btn:hover,
.header-shop__btn:focus-visible{
  background: rgba(255,62,165,0.90);
  border-color: rgba(255,62,165,0.85);
  text-decoration: none;
}

/* Mobile: make it easy to tap */
@media (max-width: 859px){
  .header-shop__btn{
    width: min(520px, 92vw);
  }
}