/*
 * Planet Detroit — Shared Landing Page Styles
 * Based on branding specs: brandingspecs.md
 *
 * Colors:
 *   Accent Blue (primary): #2D80C3 / rgb(45, 128, 195)
 *   CTA Orange: #EA5A39
 *   Body Text: #111111
 *   Secondary Text: #515151
 *   Dark Background: #333333 / rgb(47, 51, 62)
 *   Light Background: #F0F0F0
 *   Border: #CCCCCC
 *   White: #FFFFFF
 *
 * Typography:
 *   Headlines/UI: system sans-serif
 *   Body: Georgia serif
 *   Base size: 20px desktop / 18px mobile
 */

/* ============================================
   RESET & BASE
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, "Times New Roman", serif;
  color: rgb(47, 51, 62);
  background: rgb(255, 255, 255);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: rgb(47, 51, 62);
  color: rgb(255, 255, 255);
  padding: 80px 40px 72px;
  text-align: center;
}

.hero-eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(45, 128, 195);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: normal;
  max-width: 760px;
  margin: 0 auto 24px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: rgb(45, 128, 195);
}

.hero-sub {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 40px;
  color: rgb(197, 216, 237);
  font-weight: 300;
}

.hero-cta {
  display: inline-block;
  background: rgb(45, 128, 195);
  color: rgb(255, 255, 255);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.hero-cta:hover { background: rgb(35, 108, 170); }

/* Orange CTA variant — for donate/primary action buttons */
.hero-cta-orange {
  display: inline-block;
  background: #EA5A39;
  color: rgb(255, 255, 255);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.hero-cta-orange:hover { background: #d44e30; }

/* ============================================
   SECTIONS & TYPOGRAPHY
   ============================================ */

section {
  padding: 72px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(45, 128, 195);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  color: rgb(47, 51, 62);
}

p.body {
  font-size: 18px;
  line-height: 1.7;
  color: rgb(68, 68, 68);
  max-width: 680px;
  margin-bottom: 20px;
}

/* ============================================
   DARK SECTION (pillars, features, etc.)
   ============================================ */

.dark-section {
  background: rgb(47, 51, 62);
  padding: 72px 40px;
  color: rgb(255, 255, 255);
}

.dark-section .section-label { color: rgb(45, 128, 195); }
.dark-section h2 { color: rgb(255, 255, 255); margin-bottom: 48px; }

.dark-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   GRID CARDS
   ============================================ */

.card-grid {
  display: grid;
  gap: 2px;
  margin-top: 40px;
  background: rgb(45, 128, 195);
}

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

.card {
  background: rgb(255, 255, 255);
  padding: 36px;
}

.card h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 12px;
  color: rgb(45, 128, 195);
}

.card p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: rgb(85, 85, 85);
  line-height: 1.6;
}

/* Light background card variant */
.card-light {
  background: rgb(244, 248, 253);
  padding: 36px;
}

.card-light h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 12px;
  color: rgb(47, 51, 62);
  line-height: 1.3;
}

.card-light p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  color: rgb(85, 85, 85);
  line-height: 1.6;
}

/* ============================================
   NUMBERED PILLARS
   ============================================ */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pillar-num {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(45, 128, 195);
  margin-bottom: 12px;
}

.pillar-divider {
  width: 32px;
  height: 2px;
  background: rgb(45, 128, 195);
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 12px;
  color: rgb(255, 255, 255);
  line-height: 1.25;
}

.pillar p {
  font-size: 15px;
  line-height: 1.65;
  color: rgb(197, 216, 237);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ============================================
   SPOTLIGHT / FEATURE SECTION
   ============================================ */

.spotlight {
  background: rgb(244, 248, 253);
  padding: 72px 40px;
}

.spotlight-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spotlight-tag {
  display: inline-block;
  background: rgb(45, 128, 195);
  color: rgb(255, 255, 255);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 20px;
}

.callout {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgb(45, 128, 195);
  border-left: 3px solid rgb(45, 128, 195);
  padding-left: 20px;
  margin-top: 28px;
  line-height: 1.4;
}

/* ============================================
   QUOTE
   ============================================ */

.quote-section {
  background: rgb(45, 128, 195);
  padding: 72px 40px;
  text-align: center;
}

.quote-section blockquote {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.4;
  color: rgb(255, 255, 255);
  max-width: 760px;
  margin: 0 auto 24px;
  font-weight: normal;
  font-style: italic;
}

.quote-attr {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: rgb(197, 216, 237);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   CTA FOOTER
   ============================================ */

.cta-footer {
  padding: 80px 40px;
  text-align: center;
  background: rgb(234, 242, 251);
}

.cta-footer h2 { margin-bottom: 20px; }
.cta-footer p.body { margin: 0 auto 40px; text-align: center; }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: rgb(45, 128, 195);
  color: rgb(255, 255, 255);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary:hover { background: rgb(35, 108, 170); }

/* Orange primary button variant */
.btn-primary-orange {
  display: inline-block;
  background: #EA5A39;
  color: rgb(255, 255, 255);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.btn-primary-orange:hover { background: #d44e30; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: rgb(45, 128, 195);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border: 2px solid rgb(45, 128, 195);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: rgb(45, 128, 195);
  color: rgb(255, 255, 255);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: rgb(47, 51, 62);
  color: rgb(136, 136, 136);
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  padding: 24px;
}

footer a {
  color: rgb(136, 136, 136);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: rgb(255, 255, 255); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .spotlight-inner { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
}
