/* =============================================
   YOUTH RALLY 2026 — youth-rally.css
   ============================================= */

/* Brand colors pulled from press artwork */
:root {
  --yr-teal:    #3a8fa3;
  --yr-teal-dk: #2a6f80;
  --yr-coral:   #e05a36;
  --yr-light:   #e8f4f7;
  --yr-dark:    #1a3a45;
}

/* Force dark nav always */
.site-header,
.site-header.scrolled {
  background: var(--yr-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* SHARED CONTAINER */
.yr-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO */
.yr-hero {
  line-height: 0;
  margin-top: var(--nav-h);
  overflow-x: hidden;
}
.yr-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* INFO STRIP */
.yr-strip {
  background: var(--yr-dark);
  padding: 0;
  border-bottom: 3px solid var(--yr-coral);
}
.yr-strip-inner {
  display: flex;
  align-items: stretch;
  max-width: var(--max-w);
  margin: 0 auto;
}
.yr-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px;
  gap: 6px;
}
.yr-strip-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.yr-strip-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yr-coral);
}
.yr-strip-value {
  font-family: var(--font-head);
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 800;
  color: var(--white);
  text-align: center;
}

/* ABOUT */
.yr-about {
  background: var(--white);
  padding: 100px 0;
}
.yr-about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.yr-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--yr-teal-dk);
  line-height: 1.1;
  margin-bottom: 24px;
}
.yr-scripture {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-mid);
  border-left: 3px solid var(--yr-coral);
  padding-left: 20px;
  margin-bottom: 8px;
}
.yr-scripture-ref {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yr-coral);
  padding-left: 23px;
  margin-bottom: 32px;
}
.yr-body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.yr-press-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
}

/* DETAILS */
.yr-details-section {
  background: var(--off-white);
  padding: 80px 0 100px;
  border-top: 1px solid #e0e8eb;
}
.yr-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.yr-detail-card {
  background: var(--white);
  padding: 40px;
  border-top: 4px solid var(--yr-teal);
  border-radius: 0 0 4px 4px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  transition: transform 0.2s;
}
.yr-detail-card:hover { transform: translateY(-3px); }
.yr-detail-icon {
  color: var(--yr-teal);
  grid-column: 1;
  grid-row: 1;
  padding-top: 2px;
}
.yr-detail-heading {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yr-teal-dk);
  margin-bottom: 10px;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}
.yr-detail-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-mid);
  grid-column: 2;
  grid-row: 2;
}

/* CTA */
.yr-cta-section {
  background: var(--yr-teal-dk);
  padding: 100px 0;
}
.yr-cta-inner {
  text-align: center;
}
.yr-cta-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.yr-cta-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}
.yr-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .yr-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .yr-about-press { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .yr-details-grid { grid-template-columns: 1fr; }
  .yr-strip-inner { flex-wrap: wrap; padding: 0 24px; }
  .yr-strip-item { flex: 1 1 50%; }
  .yr-strip-divider { display: none; }
  .yr-container { padding: 0 24px; }
}

/* Prevent horizontal scroll */
.yr-hero,
.yr-strip,
.yr-about,
.yr-details-section,
.yr-cta-section {
  overflow-x: hidden;
}
