@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --accent: #e49208;
  --accent-dark: #de8900;
  --accent-soft: #fff7dd;
  --border-soft: #f0f0f0;
}

* {
  box-sizing: border-box;
}

/* === MUSIC TOGGLE BUTTON === */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: var(--accent);
    /* ACCSF Gold */
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    transition: background 0.25s ease, transform 0.25s ease;
}

.music-toggle:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

/* Wave bars container */
.wave-bars {
    display: flex;
    gap: 3px;
}

.wave-bars span {
    width: 4px;
    height: 10px;
    background: #111;
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
    opacity: 0.8;
}

/* Individual bar delays */
.wave-bars span:nth-child(1) {
    animation-delay: 0s;
}

.wave-bars span:nth-child(2) {
    animation-delay: 0.25s;
}

.wave-bars span:nth-child(3) {
    animation-delay: 0.5s;
}

/* Wave animation */
@keyframes wave {
    0% {
        height: 10px;
    }

    50% {
        height: 22px;
    }

    100% {
        height: 10px;
    }
}

/* Pause animation when music is off */
.wave-bars.paused span {
    animation-play-state: paused;
    opacity: 0.35;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background-color: var(--bg);
}

html,
body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #f4f1eb;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
.site-header {
  border-bottom: 1px solid #f5f5f5;
  background-color: #ffffffcc;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 20;
  padding: 20px 5px;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* Main text */
.logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Motto (cursive) */
.logo-motto {
    font-family: "Great Vibes", cursive;
    font-size: 1.05rem;
    color: #444;
    margin-top: 6px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    color: var(--accent-dark);
}

.site-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-wrap img{
    height: 50px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  color: #333;
}

.nav-links a {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  background-color: #000;
  transform: translateY(-1px);
}

/* MOBILE ICON */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* MOBILE OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 9999;
}

/* --------------------------------------------------
   MOBILE NAV
-------------------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mobile-logo-wrap img {
    height: 48px;
    max-width: 180px;
    object-fit: contain;
}

.mobile-logo-wrap .logo-motto {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* CLOSE BUTTON */
.close-mobile {
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0;
}

/* MENU LINKS */
.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-links a {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05rem;
  text-align: left;
}

/* CTA BUTTONS */
.mobile-cta-wrap {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.mobile-cta {
  flex: 1;
  padding: 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.mobile-cta.primary {
  background: #111;
  color: #fff;
}

.mobile-cta.secondary {
  background: #f5f5f5;
  color: #111;
}

/* MOBILE FOOTER */
.mobile-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.8rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

/* DESKTOP DROPDOWN */
.nav-item {
    position: relative;
}

.nav-item>button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 4px;
    font-size: 0.92rem;
    cursor: pointer;
    color: #333;
}

.dropdown-menu {
    position: absolute;
    top: 42px;
    left: 0;
    background: #fff;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    min-width: 220px;
    animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu {
    pointer-events: auto;
    top: 100%;
    margin-top: 0;
}

.dropdown-menu a {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #fafafa;
}

/* MOBILE ACCORDION */
.mobile-group {
    border-bottom: 1px solid #eee;
}

.mobile-accordion {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-panel {
overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-panel a {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-group.active .mobile-panel {
    max-height: 500px;
        /* large enough to fit all children */
        opacity: 1;
}

.mobile-group.active .mobile-accordion .material-icons-outlined {
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

/* HERO
      -------------------------------------------------- */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
 --hero-bg: url("/assets/images/arts.png");
 --hero-bg-next: url("/assets/images/arts1.jpg");
 min-height: 100vh;
}

/* world map background */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: -1;
}

.hero::before {
    background-image: var(--hero-bg);
    opacity: 0.15;
}

.hero::after {
    background-image: var(--hero-bg-next);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.7rem, 2.2vw + 0.7rem, 2.5rem);
    line-height: 1.5;
    margin: 0 0 18px;
}

.hero-title span.highlight {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(
    to top,
    var(--accent-soft) 35%,
    transparent 35%
  );
  font-weight: 700;
}

.hero-body {
  font-size: clamp(0.92rem, 1vw + 0.7rem, 1rem);
  line-height: 1.6;
  max-width: 100%;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-size: 0.92rem;
  font-weight: 500;
  background-color: #111;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  font-size: 0.92rem;
  font-weight: 500;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost::after {
  content: "+";
  font-size: 1.05rem;
  transform: translateY(-1px);
}

.btn-ghost:hover {
  color: #000;
}

/* Right side: Africa + stat */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.africa-stack {
  position: relative;
  width: min(500px, 100vw);
  /* bigger Africa */
  max-width: 100%;
  aspect-ratio: 3 / 4;
}

/* AFRICA IMAGE MASK */
.africa-photo {
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/beautiful-woman-night-carnival-portrait.jpg");
  /* <--- your photo */
  background-size: cover;
  background-position: center;
  /* Use SVG silhouette of Africa as mask */
  -webkit-mask-image: url("/assets/images/africa-continent-svgrepo-com.svg");
  /* <--- Africa shape */
  mask-image: url("/assets/images/africa-continent-svgrepo-com.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}


/* subtle shadow behind the shape so it feels cut-out */
.africa-photo::after {
  content: "";
  position: absolute;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.18),
    transparent 60%
  );
  z-index: -1;
}

.hero-stat {
  font-family: "Playfair Display", serif;
  text-align: left;
  max-width: 120px;
}

.hero-stat-number {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* FEATURES ROW
      -------------------------------------------------- */
.hero-features {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #f0e3b6;
  background-color: #fffaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feature-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}


.why-accsf {
    background: #fff;
    padding: 3rem 0;
}

.why-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* LEFT COLLAGE */
.why-images {
    position: relative;
    width: 100%;
    height: 520px;
    max-width: 100%;
    transform: scale(1);
    transform-origin: top left;
}

.img {
    position: absolute;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* EXACT POSITIONS (as the reference) */
.img-1 {
    width: 170px;
    height: 170px;
    top: 0;
    left: 0;
}

.img-2 {
    width: 260px;
    height: 260px;
    top: 40px;
    left: 150px;
    z-index: 1;
}

.img-3 {
    width: 220px;
    height: 250px;
    top: 260px;
    left: 20px;
    z-index: 2;
}


.img-4 {
    width: 240px;
    height: 180px;
    top: 260px;
    left: 260px;
    z-index: 2;
}

/* BRUSH STROKES BEHIND IMAGES */
.img-2::before,
.img-3::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}

/* RIGHT CONTENT */
.why-text {
    max-width: 480px;
}

.why-title {
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}


.prelaunch-banner {
    position: relative;
    width: 100%;
    padding: 3rem 0 0;
}

.banner-bg {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
}

.banner-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.banner-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Primary CTA */
.btn-donate {
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--accent-dark);
    color: #111;
    font-weight: 500;
    transition: 0.25s ease;
    font-size: 0.92rem;
}

.btn-donate:hover {
    background: var(--accent);
}

/* Secondary CTA */
.btn-ghost-light {
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.25s ease;
    font-size: 0.9rem;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.15);
}

.impact-band {
    position: relative;
    padding: 72px 0;
}

/* Typography helpers */
.impact-heading,
.impact-ribbon-title,
.impact-photo-title {
    font-family: "Playfair Display", serif;
}


.impact-split {
    overflow: hidden;
}

.impact-split::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg,
            rgba(32, 26, 18, 0.05) 0%,
            rgba(0, 0, 0, 0.02) 20%,
            rgba(234, 194, 88, 0.20) 55%,
            rgba(9, 87, 60, 0.18) 100%);
    z-index: -1;
}

.impact-split-inner {
    position: relative;
}

.impact-pill-labels {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.impact-pill-tag {
    padding: 6px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}

.impact-heading {
    font-size: clamp(1.9rem, 2.3vw + 1rem, 2.6rem);
    line-height: 1.15;
    margin: 0 0 16px;
}

.impact-body {
    max-width: 40rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 28px;
}


.impact-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.impact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.impact-card h3 {
    font-size: 0.98rem;
    margin: 0 0 8px;
}

.impact-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.impact-actions {
    margin-top: 4px;
}

/* FOOTER BASE */
.accsf-footer {
    background: #111;
    color: #eee;
    padding-top: 40px;
    border-top: 1px solid #222;
    font-family: "Inter", sans-serif;
}

/* TOP PATTERN BAR */

/* GRID LAYOUT */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* LOGO */
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* GENERAL TEXT */
.footer-text {
    color: #ccc;
    line-height: 1.6;
    margin: 10px 0 20px;
}

.footer-text.small {
    font-size: 0.9rem;
}

/* TITLES */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #eac258;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    background: #222;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s;
}

.footer-socials a:hover {
    background: #333;
    color: #eac258;
}

/* NEWSLETTER */
.footer-newsletter {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.footer-newsletter button {
    padding: 10px 18px;
    background: #eac258;
    color: #111;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* DONATE BUTTON */
.donate-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #eac258;
    color: #111;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

/* BOTTOM BAR */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom p:last-child {
    margin-top: 6px;
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .site-logo{
        height: 85px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-pattern {
        height: 50px;
    }
}

/* =========================
   RESPONSIVE TWEAKS
========================= */
@media (max-width: 820px) {
    .impact-columns {
        grid-template-columns: 1fr;
    }

    .impact-split-inner {
        text-align: left;
    }

    .impact-photo-inner {
        padding: 56px 24px;
    }
}

@media (max-width: 640px) {
    .impact-ribbon-header {
        flex-direction: column;
        gap: 8px;
    }

    .impact-ribbon-title::before {
        inset: 65% -4px -3px -4px;
    }

    .impact-photo-overlay {
        background:
            linear-gradient(180deg,
                rgba(0, 0, 0, 0.78),
                rgba(0, 0, 0, 0.4));
    }

    .impact-photo-inner {
        padding: 48px 20px;
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .banner-bg {
        height: 380px;
    }

    .banner-content h2 {
        font-size: 1.7rem;
    }

    .banner-actions {
        flex-direction: column;
    }

    .btn-donate,
    .btn-ghost-light {
        width: 100%;
        text-align: center;
    }
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .why-inner {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 920px) {
    .why-accsf .why-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 970px) {
    .why-images {
        transform: scale(.95);
        height: 520px;
        width: 100%;
    }
}

@media (max-width: 930px) {
    .why-images {
        transform: scale(.9);
        height: 520px;
        width: 100%;
    }
}

@media (max-width: 780px) {
    .why-images {
        transform: scale(1);
        height: 520px;
    }
}

@media (max-width: 620px) {
    .why-images {
        transform: scale(1);
        height: 520px;
    }
}


@media (max-width: 480px) {
    .why-images {
        transform: scale(.85);
        height: 520px;
    }

    .why-text{
        margin-top: -5rem;
    }
}

@media (max-width: 450px) {
    .why-images {
        transform: scale(.8);
        height: 520px;
    }

    .why-text{
        margin-top: -5rem;
    }

        .hero-eyebrow {
            text-align: center;
        }
}

@media (max-width: 414px) {
    .why-images {
        transform: scale(.75);
        height: 520px;
    }

    .why-text{
        margin-top: -7rem;
    }
}

@media (max-width: 375px) {
    .why-images {
        transform: scale(.65);
        height: 520px;
    }

    .why-text{
        margin-top: -10rem;
    }
}

@media (max-width: 350px) {
    .why-images {
        transform: scale(.6);
        height: 520px;
    }

    .why-text{
        margin-top: -12rem;
    }
}

/* RESPONSIVE
      -------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero {
    padding: 40px 0 50px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 4vw + 1rem, 2.6rem);
    line-height: 1.15;
  }

  .hero-body {
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-visual {
    justify-content: center;
  }

  .africa-stack {
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .hero::before {
    background-size: 115% auto;
    background-position: right center;
  }
}

@media (max-width: 820px) {
    .africa-photo {
        transform: scale(1.4);
        transform-origin: center;
    }

        .hero-visual {
            gap: 28px;
            margin-top: 8rem;
        }
}

@media (max-width: 600px) {
    .africa-photo {
        transform: scale(1.45);
    }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 38px;
            margin-top: 5rem;
        }
}

@media (max-width: 440px) {
    .africa-photo {
        transform: scale(1.35);
    }
}



@media (max-width: 720px) {
  .nav-links {
    display: none;
    /* simple mobile behaviour, no JS */
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(1.7rem, 6vw + 1rem, 2.2rem);
  }

  .hero-body {
    font-size: 0.92rem;
  }

  .hero-actions button {
    width: 100%;
    justify-content: center;
  }

  .africa-stack {
    width: 90%;
    max-width: 320px;
  }
}



/* ABOUT PAGE
      -------------------------------------------------- */

/* ----------------------------------------
   ABOUT PAGE HERO
---------------------------------------- */
/* ----------------------------------------
   ABOUT HERO
---------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: visible;
}

/* Background image */
.about-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.about-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 1.8vw + 1rem, 3.4rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.about-hero-content .highlight {
    background: linear-gradient(to top, #eac258 22%, transparent 22%);
}

.about-subtext {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 520px;
    opacity: 0.92;
}

/* ----------------------------------------
   CARDS SECTION (half inside hero)
---------------------------------------- */
.about-cards-section {
    padding: 100px 0 10px;
    position: relative;
    z-index: 2;
}

/* Pull cards upward */
.about-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    margin-top: -180px;
}

/* Card styles */
.hero-card {
    background: #3d2f22;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
        transition: 0.3s ease;
        color: #fff;
}

.hero-card p,
.hero-card h3,
.hero-card a {
    color: #fff;
}

.hero-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 14px;
    line-height: 1.55;
}

.hero-card a {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c89b2c;
}

.hero-card a:hover{
    color: white;
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.12);
}

/* SECTION WRAPPER */
.about-section {
    padding: 80px 0;
    background: #fff;
}

/* GRID LAYOUT */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE */
.about-tag {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #b08968;
    display: inline-block;
}

.about-title {
    font-size: clamp(1.4rem, 1.8vw + .4rem, 2rem);
    font-weight: 700;
    line-height: 1.25;
    color: #1c2b2d;
    margin-bottom: 18px;
    max-width: 600px;
    font-family: "Playfair Display", serif;
}

.about-text {
    line-height: 1.65;
    font-size: clamp(0.92rem, 1vw + 0.7rem, 1rem);
    color: #4b4b4b;
    margin-bottom: 16px;
    max-width: 100%;
}

/* RIGHT IMAGE */
.about-right .about-img {
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15); */
}

.about-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


.pillars .title{
    font-family: "Playfair Display", serif;
    margin-bottom: -1em;
    font-size: 2rem;
    padding: 0 10%;
}

/* RESPONSIVE */
@media(max-width: 880px) {
    .about-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-right {
        order: -1;
    }

    .about-title {
        max-width: 100%;
    }
}

/* Responsive */
@media (max-width: 860px) {
    .about-hero-cards {
        grid-template-columns: 1fr;
        margin-top: -80px;
    }

    .hero-card {
        padding: 22px;
    }
}


/* FAQ  */

/* WRAPPER */
.faq-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    padding: 0 24px;
}

/* LEFT INTRO */
.faq-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 12px 0;
    font-family: "Playfair Display", serif;
}

.faq-desc {
    max-width: 480px;
    line-height: 1.65;
    color: #555;
}

/* RIGHT SECTION */
.faq-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.faq-tab {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.25s ease;
}

.faq-tab.active {
    background: #111;
    color: #fff;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

/* ACCORDION */
.faq-item {
    border-bottom: 1px solid #eaeaea;
    padding: 16px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    padding: 0;
    line-height: 1.5;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    line-height: 1.6;
    color: #555;
    transition: 0.35s ease;
    margin-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.faq-item.open .material-icons-outlined {
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}