/* ============================================================
   ADVOCACY PAGE 2 — "Story + Sign-Up" Stylesheet
   ============================================================
   Narrative storytelling layout with a dark sign-up card.
   
   WHAT'S IN HERE:
   - Page header
   - Story section (image + narrative text + blockquote)
   - Dark sign-up / pledge card with form
   - Responsive adjustments
   
   📝 This file works WITH base.css (loaded first).
   ============================================================ */

/* ============================================================
   PAGE HEADER
   ============================================================ */
.hero-cards {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  padding: 120px 0 80px;
  color: var(--white);
  text-align: center;
}

.hero-cards h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-cards .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* ============================================================
   STORY SECTION
   ============================================================
   Side-by-side layout: image + narrative text.
   The blockquote adds a highlighted pull quote.
   
   📝 BLOCKQUOTE STYLING:
   The left border + italic text creates a classic "pull quote"
   effect that draws the reader's eye to an important statement.
   ============================================================ */
.advocacy-story {
  padding: var(--section-padding);
}

.advocacy-story-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Pull quote / highlighted statement */
.advocacy-story blockquote {
  border-left: 4px solid var(--highlight-color);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* ============================================================
   SIGN-UP / PLEDGE CARD
   ============================================================
   A dark-themed card with a gradient background.
   Form inputs use semi-transparent white backgrounds so they
   look good on the dark surface.
   
   📝 RGBA COLORS:
   rgba(255, 255, 255, 0.15) = white at 15% opacity
   This creates a "frosted glass" effect on dark backgrounds.
   ============================================================ */
.signup-card {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.signup-card h3 {
  color: var(--white);
  margin-bottom: 15px;
}

/* Form inputs on dark background */
.signup-card .form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
}

/* Placeholder text color (lighter white) */
.signup-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Focus state for inputs on dark background */
.signup-card .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--highlight-color);
  box-shadow: none;
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-cards {
    padding: 100px 0 60px;
  }
  .hero-cards h1 {
    font-size: 2.3rem;
  }
  .signup-card {
    padding: 25px;
  }
}

img {
  width: 200px;
  height: 200px;
}
