/* ============================
   OUTREACH PAGE - OVERRIDES ONLY
   Lighthouse Baptist Church

   NOTE: This file only contains page-specific overrides.
   Common ministry styles are in lbc-ministry-shared.css
   Button styles are in lbc-global.css

   DO NOT redefine :root variables - use lbc-tokens.css
   DO NOT redefine .btn, .cta-section, .faq-section, etc.
   ============================ */

/* ============================
   1. HERO VARIANT - Outreach specific background
   Extends .ministry-hero from lbc-ministry-shared.css
   ============================ */
.hero-outreach {
  background: linear-gradient(135deg, var(--lbc-navy) 0%, var(--lbc-navy-light) 50%, var(--lbc-navy-soft) 100%);
}

/* Hero verse blockquote (outreach-specific element) */
.hero-verse {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  background: rgba(208, 167, 95, 0.12);
  border-left: 4px solid var(--lbc-gold);
  border-radius: var(--radius-lg, 0.75rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-verse p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--lbc-cream);
  line-height: 1.7;
  margin: 0 0 0.75rem 0;
}

.hero-verse cite {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  color: var(--lbc-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 641px) {
  .hero-verse {
    padding: 2rem 2.5rem;
  }

  .hero-verse p {
    font-size: 1.25rem;
  }
}

/* ============================
   2. OUTREACH MINISTRIES SECTION
   Grid of ministry cards with icons
   ============================ */
.outreach-section {
  padding: 4rem 1rem;
  background: #fff;
}

.outreach-section .container {
  max-width: var(--container-xl, 1120px);
  margin: 0 auto;
}

/* Outreach Grid */
.outreach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 641px) {
  .outreach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 900px) {
  .outreach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Outreach Card */
.outreach-card {
  background: #fff;
  border-radius: var(--radius-2xl, 1.5rem);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--lbc-border-light);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.outreach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl, 0 15px 35px rgba(0,0,0,0.15));
}

/* Icon container with gold gradient */
.outreach-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--lbc-gold), var(--lbc-gold-hover, #b48e4d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold, 0 4px 15px rgba(208,167,95,0.3));
}

.outreach-icon svg {
  width: 28px;
  height: 28px;
  color: var(--lbc-navy);
}

.outreach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lbc-navy);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.outreach-card > p {
  color: var(--lbc-text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  flex: 1;
}

/* Schedule info at bottom of card */
.outreach-schedule {
  padding-top: 1rem;
  border-top: 1px solid var(--lbc-border-light);
  font-size: 0.875rem;
  color: var(--lbc-text-muted);
  font-style: italic;
  margin-top: auto;
}

.outreach-schedule strong {
  color: var(--lbc-navy);
  font-style: normal;
  font-weight: 600;
}

/* ============================
   3. GET INVOLVED SECTION
   Two-column layout with text + image
   ============================ */
.involved-section {
  padding: 5rem 1rem;
  background: var(--lbc-cream);
}

.involved-section .container {
  max-width: var(--container-xl, 1120px);
  margin: 0 auto;
}

.involved-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .involved-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Text content */
.involved-text {
  order: 2;
}

@media (min-width: 900px) {
  .involved-text {
    order: 1;
  }
}

.involved-kicker {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lbc-gold-hover, #b48e4d);
  margin-bottom: 0.75rem;
}

.involved-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--lbc-navy);
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

@media (min-width: 641px) {
  .involved-title {
    font-size: 2.5rem;
  }
}

.involved-text > p {
  font-size: 1.05rem;
  color: var(--lbc-text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Custom list styling */
.involved-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.involved-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--lbc-text);
  line-height: 1.7;
}

.involved-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--lbc-gold), var(--lbc-gold-hover, #b48e4d));
  border-radius: var(--radius-sm, 0.375rem);
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
}

.involved-list li::after {
  content: '\2713';
  position: absolute;
  left: 5px;
  top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lbc-navy);
  line-height: 1.25;
}

/* Image container */
.involved-image {
  position: relative;
  border-radius: var(--radius-2xl, 1.5rem);
  overflow: hidden;
  box-shadow: var(--shadow-2xl, 0 25px 50px rgba(0,0,0,0.2));
  order: 1;
}

@media (min-width: 900px) {
  .involved-image {
    order: 2;
  }
}

.involved-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================
   4. ACCESSIBILITY
   Respect reduced motion preferences
   ============================ */
@media (prefers-reduced-motion: reduce) {
  .outreach-card {
    transition: none;
  }

  .outreach-card:hover {
    transform: none;
  }
}
