/* =========================================================
   Wendy Ortiz — Charity Event Against ICE
   Shared stylesheet
   Palette pulled from the event poster + car-wash shirt
   ========================================================= */

:root {
  --cream:      #FFF8E4;   /* poster background (sampled)  */
  --cream-2:    #F8EFD8;   /* soft panel / section bg      */
  --card:       #FFFFFF;   /* cards                        */
  --ink:        #211A17;   /* primary text                 */
  --muted:      #6B5F57;   /* secondary text               */
  --pink:       #EC4E97;   /* shirt hot pink (primary)     */
  --pink-2:     #F7A8C8;   /* shirt light pink             */
  --pink-soft:  #FCE3EF;   /* pink tint background         */
  --pink-deep:  #C9367C;   /* hover / darker pink          */
  --maroon:     #2C0A10;   /* poster CONTACT button        */
  --green:      #7BC043;   /* poster spark green           */
  --red:        #E8342B;   /* poster heart red             */
  --line:       rgba(44, 10, 16, 0.14);
  --shadow:     0 10px 30px rgba(44, 10, 16, 0.10);
  --shadow-sm:  0 4px 14px rgba(44, 10, 16, 0.08);
  --radius:     18px;
  --maxw:       1080px;
  --font-display: 'Fredoka', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, -apple-system, 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(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  line-height: 1.05;
  margin: 0 0 .4em;
  letter-spacing: -0.5px;
}

a { color: var(--pink-deep); }

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-pink   { background: var(--pink);   color: #fff; box-shadow: var(--shadow-sm); }
.btn-pink:hover { background: var(--pink-deep); }
.btn-dark   { background: var(--maroon); color: #fff; }
.btn-dark:hover { background: #47131c; }
.btn-ghost  { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-twitch { background: #772ce8; color: #fff; }
.btn-twitch:hover { background: #5c1fbf; }

/* =========================================================
   Site header / tab navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand .heart { color: var(--red); font-size: 1.3rem; }
.brand small { display: block; font-weight: 500; font-size: .72rem; color: var(--muted); font-family: var(--font-body); }

.tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tabs a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  padding: 9px 15px;
  border-radius: 999px;
  transition: background .12s ease, color .12s ease;
}
.tabs a:hover { background: var(--pink-soft); color: var(--pink-deep); }
.tabs a.active { background: var(--pink); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .tabs {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 14px 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .tabs.open { display: flex; }
  .tabs a { padding: 12px 14px; border-radius: 12px; }
}

/* =========================================================
   Landing / poster hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 64px 0 0;
}
.hero .eyebrow {
  font-family: var(--font-display);
  color: var(--pink-deep);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
}
.hero h1 .pink { color: var(--pink); }

.search-box {
  max-width: 620px;
  margin: 0 auto 26px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 22px 26px 26px;
  position: relative;
}
.search-box .label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 1rem;
}
.search-box p {
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.event-meta {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 4px 0 8px;
}
.event-meta .will-update {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  font-size: .8rem;
  color: var(--muted);
  background: var(--pink-soft);
  border-radius: 999px;
  padding: 2px 12px;
  margin-left: 6px;
  vertical-align: middle;
}

.contact-line { margin: 6px 0 30px; }
.contact-line a { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.support-note {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 auto 30px;
  max-width: 560px;
}

/* raised-hands artwork band (cropped from the event poster) */
.hands-band {
  width: 100%;
  margin-top: 10px;
  line-height: 0;
}
.hands-band img {
  width: 100%;
  height: auto;
  display: block;
  /* artwork already sits on the poster cream, so it blends into the page */
}
/* on very wide screens, cap it so the hands don't get oversized */
@media (min-width: 1600px) {
  .hands-band img {
    max-width: 1600px;
    margin: 0 auto;
  }
}

/* =========================================================
   Content pages
   ========================================================= */
.page-hero {
  background: var(--pink-soft);
  border-bottom: 1px solid var(--line);
  padding: 54px 0 44px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--ink);
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}
.page-hero .kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .8rem;
  color: var(--pink-deep);
  margin-bottom: 8px;
}

section.block { padding: 48px 0; }
section.block.alt { background: var(--cream-2); }

.section-title { font-size: 1.9rem; margin-bottom: 6px; }
.section-sub { color: var(--muted); margin: 0 0 26px; max-width: 720px; }

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.25rem; margin-bottom: .3em; }
.card .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.card p:last-child { margin-bottom: 0; }

/* numbered / bullet lists */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding: 12px 0 12px 40px;
  border-bottom: 1px dashed var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 12px;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--pink);
  color: #fff;
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 700;
}
.checklist.warn li::before { content: "!"; background: var(--red); }

.callout {
  border-left: 5px solid var(--pink);
  background: var(--pink-soft);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 22px 0;
}
.callout.warn { border-left-color: var(--red); background: #fdeceb; }
.callout strong { color: var(--pink-deep); }
.callout.warn strong { color: var(--red); }

.disclaimer {
  font-size: .88rem;
  color: var(--muted);
  background: var(--cream-2);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 26px;
}

/* donation highlight box */
.donate-hero {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}
.donate-hero h2 { color: #fff; font-size: 2rem; }
.donate-hero p { color: rgba(255,255,255,.92); max-width: 520px; margin: 0 auto 22px; }
.donate-hero .btn-dark { background: var(--maroon); }
.donate-hero .amount { font-family: var(--font-display); font-size: 1rem; opacity: .9; }

/* streamer cards */
.streamer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.streamer .avatar {
  width: 56px; height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pink-2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon);
  font-size: 1.3rem;
}
.streamer .meta { min-width: 0; }
.streamer .meta strong { display: block; }
.streamer .meta a { font-size: .9rem; word-break: break-all; }

.tag {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-deep);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin: 0 6px 6px 0;
}

.placeholder-note {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--maroon);
  color: #f7e9ee;
  padding: 40px 0 30px;
  margin-top: 40px;
}
.site-footer a { color: var(--pink-2); }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #d9b8c4; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.copyright { margin-top: 26px; font-size: .82rem; color: #c99fae; }
