/* ============================================================
   MODULE: Footer
   Greater Tshwane Area — Church Website
   ============================================================ */

.footer {
  background: var(--deep-brown);
  color: white;
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ── Brand column ── */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-badge {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  color: var(--soft-gold); letter-spacing: 1px;
}
.footer-brand-name    { font-family: var(--font-heading); font-size: 1.15rem; color: white; }
.footer-brand-tagline { font-size: 0.62rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 1px; }
.footer-brand-desc    { color: rgba(255,255,255,0.48); font-size: 0.86rem; line-height: 1.75; max-width: 300px; margin-bottom: 18px; }
.footer-brand-verse   { font-family: var(--font-accent); font-size: 1rem; color: var(--soft-gold); opacity: 0.7; }

/* ── Link columns ── */
.footer-col-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--soft-gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 0.86rem;
  transition: color var(--duration);
}
.footer-links a:hover { color: var(--soft-gold); }

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── Social icons ── */
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--duration);
}
.footer-social a:hover { background: var(--soft-gold); color: white; }
.footer-social a[data-platform="youtube"]:hover  { background: #FF0000; }
.footer-social a[data-platform="tiktok"]:hover   { background: #EE1D52; }
.footer-social a[data-platform="instagram"]:hover{ background: #FD1D1D; }

/* ── Church list ── */
.footer-churches {
  text-align: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
