/* ==================================================
   AFRISURGE – HOME PAGE (FINAL, CLEAN, PROFESSIONAL)
   ================================================== */

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

.afrisurge-hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.afrisurge-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.70)
  );
  z-index: 1;
}

.afrisurge-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 3.2rem 3.6rem;
  background: rgba(0,0,0,0.18);
  border-radius: 2.4rem;
  backdrop-filter: blur(3px);
  animation: heroFadeUp 1.2s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow */
.afrisurge-hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e9dbc2;
  margin-bottom: 1.2rem;
}

/* Title */
.afrisurge-hero-title {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-family: serif;
  letter-spacing: 0.14em;
  color: #f5e1b8 !important;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.9);
}

/* Subtitle */
.afrisurge-hero-text {
  font-size: 1.45rem;
  line-height: 1.7;
  color: #f4f4f4 !important;
  max-width: 760px;
  margin: 0 auto 3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85);
}

/* Actions */
.afrisurge-hero-actions {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.afrisurge-hero-button {
  display: inline-block;
  padding: 1.1rem 3.6rem;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 600;
  transition: all .35s ease;
}

.afrisurge-hero-button.primary {
  background: linear-gradient(135deg, #f5e1b8, #d4a373);
  color: #1a1a1a !important;
  box-shadow: 0 14px 35px rgba(0,0,0,0.45);
}

.afrisurge-hero-button.primary:hover {
  background: #ffffff;
  transform: translateY(-4px) scale(1.05);
}

.afrisurge-hero-button.secondary {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.6);
}

.afrisurge-hero-button.secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}

/* ===============================
   SECTIONS
   =============================== */

.afrisurge-section {
  padding: 6rem 1.5rem;
}

.afrisurge-section.light {
  background: #f7f5f2;
}

.afrisurge-section.white {
  background: #ffffff;
}

/* Section header */
.afrisurge-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
}

.afrisurge-section h2 {
  font-size: 2.6rem;
  font-family: serif;
  color: #0f5132;
  margin-bottom: 1.2rem;
}

.afrisurge-section-lead {
  font-size: 1.15rem;
  color: #666;
}

/* ===============================
   HOME INTRO CARDS
   =============================== */

.afrisurge-home-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 3.2rem;
}

.afrisurge-home-card {
  background: #ffffff;
  padding: 3.2rem 3.4rem;
  border-radius: 2.4rem;
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
  transition: transform .4s ease, box-shadow .4s ease;
}

.afrisurge-home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 75px rgba(0,0,0,0.18);
}

.afrisurge-home-card.highlight {
  background: linear-gradient(to bottom right, #ffffff, #faf6f0);
}

/* Text */
.afrisurge-home-card p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #444;
}

.afrisurge-home-card p + p {
  margin-top: 1.3rem;
}

/* Pull quote */
.afrisurge-pull-quote {
  font-family: serif;
  font-size: 1.35rem;
  color: #0f5132;
  border-left: 4px solid #d4a373;
  padding-left: 1.8rem;
  margin-bottom: 2rem;
  background: rgba(212,163,115,0.08);
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 768px) {
  .afrisurge-hero-content {
    padding: 2.2rem 1.8rem;
  }

  .afrisurge-hero-text {
    font-size: 1.2rem;
  }

  .afrisurge-home-card {
    padding: 2.4rem 2rem;
  }
}

/* === HERO CONTENT: REMOVE VISIBLE CONTAINER, KEEP CONTENT === */

.afrisurge-hero-home .afrisurge-hero-content {
  background: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
