/* ============================================================
   get-involved.css — styles ONLY for get-involved.php
   Loaded in addition to style.css. Does NOT modify anything
   in style.css (nav, footer, header, hero, carousel, etc.).
   ============================================================ */

/* ── PAGE BANNER ─────────────────────────────────────────── */
.gi-banner {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #1a2a3a;
}

.gi-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  filter: brightness(0.62);
}

/* ── PAGE BODY ───────────────────────────────────────────── */
.gi-body {
  background: #fff;
  padding: 40px 0 60px;
}

/* ── "Get Involved" PILL TAG ─────────────────────────────── */
.gi-tag {
  display: inline-block;
  background: #1A427E;
  color: #fff;
  padding: 10px 32px;
  border-radius: 30px;
  font-size: 18px; /* Increased from 16px */
  font-weight: 700;
  margin-bottom: 36px;
  font-family: 'Inter', sans-serif;
}

/* ── OUTER LIGHT-BLUE CARD ───────────────────────────────── */
.gi-outer-card {
  background: #edf2f8;
  border-radius: 10px;
  padding: 30px 28px 36px;
}

.gi-outer-card > h2 {
  font-size: 26px; /* Increased from 24px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.gi-outer-card > p {
  font-size: 15.5px; /* Increased from 13.5px */
  color: #444;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* ── 2-COLUMN GRID ───────────────────────────────────────── */
.gi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* ── INDIVIDUAL CARD ─────────────────────────────────────── */
.gi-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.gi-card h3 {
  font-size: 22px; /* Increased from 20px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.gi-card .gi-card-desc {
  font-size: 15px; /* Increased from 13px */
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

/* ── FULL-WIDTH CARD (Technology Partners) ───────────────── */
.gi-card-full {
  background: #fff;
  border-radius: 8px;
  padding: 24px 22px 20px;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.gi-card-full h3 {
  font-size: 24px; /* Increased from 22px */
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.gi-card-full .gi-card-desc {
  font-size: 15px; /* Increased from 13px */
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── BENEFITS ACCORDION ──────────────────────────────────── */
.gi-benefits-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #d0d8e8;
  padding: 8px 0;
  cursor: pointer;
  margin-bottom: 0;
  font-family: 'Inter', sans-serif;
}

.gi-benefits-toggle .gi-benefits-label {
  font-size: 15.5px; /* Increased from 13.5px */
  font-weight: 700;
  color: #1A427E;
}

.gi-benefits-toggle .gi-chevron {
  width: 18px; /* Increased from 16px */
  height: 18px; /* Increased from 16px */
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* Chevron drawn with CSS — points UP by default (collapsed = up arrow in design) */
.gi-benefits-toggle .gi-chevron::before,
.gi-benefits-toggle .gi-chevron::after {
  content: '';
  position: absolute;
  width: 9px; /* Increased from 8px */
  height: 2px; /* Increased from 1.8px */
  background: #1A427E;
  top: 50%;
}
.gi-benefits-toggle .gi-chevron::before {
  left: 0;
  transform: rotate(-45deg) translateY(-50%);
  transform-origin: right center;
}
.gi-benefits-toggle .gi-chevron::after {
  right: 0;
  transform: rotate(45deg) translateY(-50%);
  transform-origin: left center;
}

/* When open, chevron points DOWN */
.gi-benefits-toggle.open .gi-chevron {
  transform: rotate(180deg);
}

/* Benefits content panel */
.gi-benefits-panel {
  display: none;
  background: #dde8f4;
  border-radius: 4px;
  padding: 12px 14px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.gi-benefits-panel.open {
  display: block;
}

.gi-benefits-panel ul {
  list-style: disc;
  padding-left: 20px; /* Increased from 18px */
}

.gi-benefits-panel ul li {
  font-size: 15px; /* Increased from 13px */
  color: #333;
  line-height: 1.7;
}

/* Divider line under panel */
.gi-divider {
  border: none;
  border-top: 1px solid #d0d8e8;
  margin: 10px 0 14px;
}

/* ── "Get Involved" BUTTON ───────────────────────────────── */
.gi-btn {
  display: inline-block;
  background: #e8edf4;
  color: #444;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 15px; /* Increased from 13px */
  font-weight: 600;
  border: 1px solid #c8d4e8;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 6px;
}

.gi-btn:hover {
  background: #1A427E;
  color: #fff;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .gi-banner     { height: 160px; }
  .gi-grid       { grid-template-columns: 1fr; }
  .gi-outer-card { padding: 20px 14px 26px; }
  .gi-card       { padding: 18px 16px 16px; }
  .gi-card-full  { padding: 18px 16px 16px; }
  .gi-card h3    { font-size: 20px; } /* Increased from 18px */
  .gi-tag        { font-size: 16px; padding: 8px 22px; } /* Increased from 14px */
}