/* ============================================================
   SPONSORS PAGE — Bay Area Bakers
   Page-specific styles only. Shared navbar/footer/section in styles.css
   ============================================================ */

/* ---- Page Layout ---- */
.sponsors-main {
  margin-top: 64px;
  background: var(--white);
}

/* ---- Hero Section ---- */
.sponsor-hero {
  padding: 3rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sponsor-hero-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sponsor-hero-text {
  flex: 1;
}

.sponsor-hero-title {
  font-family: "Staatliches", cursive;
  font-size: 2.2rem;
  color: var(--brown);
  letter-spacing: 2px;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
}

.sponsor-hero-title .underline-red {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  text-decoration-thickness: 3px;
}

.sponsor-hero-intro {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.sponsor-hero-intro strong {
  font-weight: 600;
  color: var(--gray-900);
}

/* ---- Hero Jersey Render ---- */
.sponsor-hero-jersey {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-hero-jersey img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ---- Stats Bar ---- */
.sponsor-stats {
  background: var(--cream);
  border-top: 1px solid rgba(167, 84, 14, 0.15);
  border-bottom: 1px solid rgba(167, 84, 14, 0.15);
  padding: 1.5rem 2rem;
}

.sponsor-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-stat-item {
  text-align: center;
  flex: 1;
}

.sp-stat-num {
  font-family: "Staatliches", cursive;
  font-size: 1.8rem;
  color: var(--brown);
  letter-spacing: 1px;
  line-height: 1;
}

.sp-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(167, 84, 14, 0.2);
}

/* ---- Tiers ---- */
.sp-tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.sp-tier-card {
  border: 2px solid rgba(167, 84, 14, 0.12);
  border-radius: 8px;
  overflow: visible;
  position: relative;
  background: var(--white);
}

.sp-tier-card.sp-tier-gold {
  border-color: var(--brown);
  box-shadow: 0 4px 16px rgba(167, 84, 14, 0.15);
}

.sp-tier-header {
  padding: 1.25rem 1.5rem 1rem;
  text-align: center;
  border-radius: 6px 6px 0 0;
}

.sp-tier-bronze { background: #f5f0ea; }
.sp-tier-silver { background: #eee8df; }
.sp-tier-gold-header { background: var(--brown); }

.sp-tier-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.sp-tier-name {
  font-family: "Staatliches", cursive;
  font-size: 1.3rem;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--brown);
}

.sp-tier-gold-header .sp-tier-name { color: var(--white); }

.sp-tier-subtitle {
  font-size: 0.75rem;
  font-weight: 300;
  margin-top: 2px;
  color: var(--gray-500);
}

.sp-tier-gold-header .sp-tier-subtitle { color: var(--cream); }

.sp-tier-price {
  font-family: "Staatliches", cursive;
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 6px;
  color: var(--brown-dark);
}

.sp-tier-gold-header .sp-tier-price { color: var(--white); }

.sp-tier-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.sp-perk {
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.6;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sp-perk::before {
  content: '✓';
  color: var(--brown);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.sp-tier-gold .sp-perk::before { color: var(--red); }

.sp-inherited {
  font-size: 0.8rem;
  color: #bbb;
  font-style: italic;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.sp-gold-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--red);
  color: white;
  font-family: "Staatliches", cursive;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(237, 27, 52, 0.3);
}

/* ---- Schedule ---- */
.sp-schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}

.sp-schedule-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(167, 84, 14, 0.12);
}

.sp-schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brown);
}

.sp-s-name {
  font-family: "Staatliches", cursive;
  font-size: 1.1rem;
  color: var(--brown);
  letter-spacing: 1.5px;
}

.sp-s-date {
  font-size: 0.9rem;
  color: var(--brown-dark);
  font-weight: 500;
  margin-top: 4px;
}

.sp-s-loc {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 300;
  margin-top: 2px;
}

/* ---- Cost Callout ---- */
.sp-cost-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.sp-cost-box {
  background: var(--cream);
  border-left: 4px solid var(--brown);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sp-cost-amount {
  font-family: "Staatliches", cursive;
  font-size: 2rem;
  color: var(--brown);
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
}

.sp-cost-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 300;
  line-height: 1.7;
}

.sp-cost-text strong {
  font-weight: 600;
  color: var(--gray-900);
}

/* ---- Deadlines ---- */
.sp-deadline-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.sp-deadline-card {
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sp-dl-gold {
  background: var(--brown);
}

.sp-dl-other {
  background: var(--cream);
  border: 2px solid rgba(167, 84, 14, 0.2);
}

.sp-dl-icon {
  font-size: 1.5rem;
}

.sp-dl-gold .sp-dl-tier {
  font-family: "Staatliches", cursive;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 2px;
}

.sp-dl-gold .sp-dl-date {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
}

.sp-dl-gold .sp-dl-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.sp-dl-other .sp-dl-tier {
  font-family: "Staatliches", cursive;
  font-size: 1.1rem;
  color: var(--brown);
  letter-spacing: 2px;
}

.sp-dl-other .sp-dl-date {
  font-size: 0.95rem;
  color: var(--brown-dark);
  font-weight: 600;
}

.sp-dl-other .sp-dl-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 300;
}

/* ---- What We Need ---- */
.sp-needs-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.sp-need-item {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-need-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- Contact CTA ---- */
.sp-contact-section {
  padding-top: 1.5rem;
}

.sp-contact-box {
  background: var(--cream);
  border-radius: 8px;
  border: 2px solid rgba(167, 84, 14, 0.12);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.sp-contact-title {
  font-family: "Staatliches", cursive;
  font-size: 1.5rem;
  color: var(--brown);
  letter-spacing: 2px;
  margin: 0 0 0.75rem 0;
}

.sp-contact-text {
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 300;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.sp-contact-text a {
  color: var(--red);
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-contact-text a:hover {
  color: var(--brown);
}

.sp-contact-tagline {
  font-family: "Caveat", cursive;
  font-size: 2rem;
  color: var(--brown-light);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .sp-tiers-grid {
    grid-template-columns: 1fr;
  }

  .sp-schedule-row {
    grid-template-columns: 1fr;
  }

  .sp-deadline-bar {
    grid-template-columns: 1fr;
  }

  .sponsor-stats-inner {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .sp-stat-divider {
    display: none;
  }

  .sp-stat-item {
    flex: 0 0 calc(33% - 1rem);
  }

  .sp-cost-box {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .sp-needs-row {
    flex-direction: column;
    gap: 1rem;
  }

  .sponsor-hero-inner {
    flex-direction: column;
  }

  .sponsor-hero-jersey {
    width: 200px;
  }

  .sponsor-hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .sponsor-hero {
    padding: 2rem 1rem 1.5rem;
  }

  .sponsor-stats {
    padding: 1.25rem 1rem;
  }

  .sp-stat-item {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .sp-stat-num {
    font-size: 1.4rem;
  }

  .sponsor-hero-title {
    font-size: 1.5rem;
  }
}
