/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Concert+One&family=Montserrat:wght@100..900&family=Poppins:wght@100..900&family=Roboto:wght@100..900&display=swap');

/* =========================
   ROOT COLORS (NGO PALETTE)
========================= */
:root {
  --color-primary: #369a36;
  --color-primary-light: #7bbe7b;
  --color-primary-dark: #1f5d1f;

  --color-secondary: #fbc02d; /* yellow */
  --color-secondary-light: #f7dc6f;
  --color-secondary-dark: #b7950b;

  --color-brown: #6d4c41;

  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #cccccc;
  --color-gray-dark: #555555;
}

/* =========================
   GLOBAL RESET
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100%;
}

/* =========================
   START OF 
   HEADER SECTION
========================= */
.header-container {
  width: 100%;
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* FLEX CONTAINER */
.sub-container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* =========================
   LOGO
========================= */
.logo img {
  width: 55px;
  height: auto;
  object-fit: contain;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  padding: 35px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
  padding-left: 15px 0;
}

.nav-links li {
  position: relative;
}

/* LINKS */
.nav-links a {
  text-decoration: none;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

/* =========================
   DROPDOWN
========================= */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: var(--color-white);
  min-width: 210px;
  border-radius: 8px;
  overflow: hidden;

  /* hidden */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-menu li {
  padding: 12px 15px;
}

.dropdown-menu li a {
  color: var(--color-brown);
  font-size: 14px;
}

.dropdown-menu li:hover {
  background: var(--color-gray-light);
}

/* SHOW ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   DONATE BUTTON
========================= */
.donate-btn {
  background: var(--color-secondary);
  color: #000;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.donate-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--color-white);
  cursor: pointer;
   flex-direction: column;
  gap: 5px;
}


.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-white);
  border-radius: 3px;
  transition: 0.3s;
}

/***
SHOW ONLY ONE ICON AT A TIME (OPEN/CLOSE) 
*?**/
.menu-toggle i{
    font-size: 28px;
    color: var(--color-white);
    cursor: pointer;
}
.menu-toggle .close-icon {
  display: none; /* hide close icon initially */
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* =========================
  END OF
   HEADER SECTION
========================= */
/* HERO SECTION */
.hero {
  width: 100%;
  height: 100vh; /* full viewport height */
  background: url('../assets/images/hero-bg1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* FADE OVERLAY */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3)); /* top dark to bottom lighter */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  /* FADE-IN ANIMATION */
  animation: fadeInOverlay 2s ease-in forwards;
}
.hero-content {
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInText 2s ease-out forwards;
  animation-delay: 0.5s; /* starts after overlay */
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.9rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 
the second section 
*/
/* =========================
   BAKOSSI NATIONAL PARK SECTION
========================= */
.bakossi-section {
  background: #f5f5f5; /* light gray background */
  padding: 80px 20px;
}

.bakossi-section .sub-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.bakossi-text {
  flex: 1 1 500px;
}

.bakossi-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}

.bakossi-text h3 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.bakossi-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.bakossi-text ul {
  list-style-type: disc;
  padding-left: 20px;
}

.bakossi-text ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.bakossi-image {
  flex: 1 1 400px;
  text-align: center;
}

.bakossi-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  object-fit: cover;
}


/* =========================
   END OF
   BAKOSSI NATIONAL PARK SECTION */

/* FADE-IN KEYFRAMES */
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}



/**

NEW SECTION PLACEHOLDER
SECTION 3
**/

/* =========================
   STATS / ACHIEVEMENTS SECTION
========================= */
.stats-section {
  background: var(--color-primary-light);
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.stats-section .sub-title-stats {
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.stats-section .sub-title-stats h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--color-primary-dark);
}

.stats-section .sub-title-stats p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.stats-section .sub-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.stats-card {
  background: var(--color-white);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  min-width: 180px;
  flex: 1 1 180px;
  transition: 0.4s;
  position: relative;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stats-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin: 15px 0;
}

.stats-card p {
  font-size: 1rem;
  color: #555;
}

/* Icons */
.stat-icon {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}



/***
===========================================
   SECTION 4 DIVE INTO THE FUTURE 
===========================================
**/
/* =========================
   DIVE INTO THE FUTURE
========================= */
.future-section {
  position: relative;
  background: url('../assets/images/future-bg.png') center/cover no-repeat;
  height: 500px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.future-overlay {
  background: rgba(0, 0, 0, 0.5); /* dark fade overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.future-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

.future-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.future-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.future-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--color-secondary);
  color: #000;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.future-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-white);
}


/***
==================
 Fund Raising Section
==================
****/
/* =========================
   FUNDRAISING SECTION
========================= */
.fundraising-section {
  width: 100%;
  padding: 60px 20px;
  background: var(--color-gray-light);
}

.fundraising-section .sub-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section Header */
.fundraising-section .section-header {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.fundraising-section .section-header h2 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 15px;
}
.fundraising-section .section-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-gray-dark);
  max-width: 800px;
  margin: 0 auto;
}

/* Objectives Cards */
.fund-objectives {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.objective-card {
  flex: 1 1 280px;       /* flexible width with minimum of 280px */
  max-width: 320px;      /* prevents over-expansion on larger screens */
  background: var(--color-white);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s;
}
.objective-card:hover {
  transform: translateY(-5px);
}
.objective-card h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.objective-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray-dark);
}

/* Fund Highlight */
.fund-highlight {
  width: 100%;
  background: var(--color-primary-light);
  padding: 25px 20px;
  border-radius: 12px;
  color: #fff;
  line-height: 1.6;
}
.fund-highlight h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.fund-highlight p {
  font-size: 1rem;
}




/*****
====================================
MAIN STORIES SECTIONS
====================================
******/
.related-reading{
   padding: 60px 20px;
   background: #f4f7f6;
}
.related-container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.controls{
    margin-bottom: 20px;
}
.controls button {
  padding: 10px 15px;
  margin: 5px;
  border: none;
  background: #2e7d32;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}
.stories-wrapper {
  overflow: hidden;
  cursor: grab;
}

.stories-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.story-card{
  min-width: 400px;
  min-height: 450px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.story-card img{
  width: 100%;
  height: 180px;
  border-radius: 1px;
  object-fit: cover;
}
.story-card h3{
  color: var(--color-secondary);
}
.date {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 10px;
}

.story-card h3 {
  margin: 10px 0;
}
.story-card p {
  font-size: 14px;
  color: #555;
}




/* ================= FOOTER BASE ================= */
.footer {
  background: #0d1f1c;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* ================= SUBSCRIBE ================= */
.footer-subscribe {
  text-align: center;
  padding: 50px 20px;
  background: #12352f;
}

.footer-subscribe h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-subscribe p {
  margin-bottom: 20px;
  color: #ccc;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.subscribe-form input {
  padding: 12px;
  width: 300px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.subscribe-form button {
  padding: 12px 20px;
  border: none;
  background: #2e7d32;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #1b5e20;
}

/* ================= MAIN ================= */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 50px 20px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #4caf50;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #4caf50;
  padding-left: 5px;
}

/* ================= EXTRA ================= */
.footer-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-extra h3 {
  margin-bottom: 10px;
  color: #4caf50;
}

/* SOCIAL */
.social-links a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  color: #4caf50;
  transform: translateX(5px);
}

/* LEGAL */
.legal-links a {
  display: block;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}

.legal-links a:hover {
  color: #4caf50;
}

/* DONATE */
.footer-donate {
  max-width: 300px;
}

.donate-btn-footer {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4caf50;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.donate-btn-footer:hover {
  background: #2e7d32;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  text-align: center;
  padding: 20px;
  background: #081512;
  font-size: 14px;
  color: #aaa;
}

/* ================= ANIMATIONS ================= */
.footer-column,
.footer-extra div {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.footer.show .footer-column,
.footer.show .footer-extra div {
  opacity: 1;
  transform: translateY(0);
}
.footer-email {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-email:hover {
  color: #4caf50;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */






@media (max-width: 992px) {
  .menu-toggle { display: flex; }
}
/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 70px;
    right: 0;
    width: -50%;
    background: var(--color-primary);
    display: none;
    flex-direction: column;
    padding: 20px 10px;
  }

  .navbar.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* MOBILE DROPDOWN */
/* MOBILE DROPDOWN (<=992px) */
@media (max-width: 992px) {
  .dropdown-menu {
    padding: 0;
    margin: 0;
    position: static;       /* flow in the menu */
    background: var(--color-gray-light);
    box-shadow: none;
    border-radius: 0;

    max-height: 0;          /* hidden initially */
    overflow: hidden;

    opacity: 1;             /* always visible in container */
    visibility: visible;
    transform: none;

    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;      /* expand to show links */
  }
}

  .dropdown.active .dropdown-menu {
    max-height: 400px;
  }
  .dropdown-menu li{
     padding: 10px 10px; 
     gap: 5px;
  }
 .dropdown-menu li a {
    color: var(--color-brown);
    padding: 5px 5px;
    display: block;
  }

  .donate-btn {
    display: none;
  }
}

/* MOBILE DROPDOWN FIX */
@media (max-width: 992px) {
    .dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px; /* expand when active */
  }
}
  



/* SMALL MOBILE */
@media (max-width: 480px) {

  .logo img {
    width: 45px;
  }

  .menu-toggle {
    font-size: 24px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/**================

HERO SECTION RESPONSIVE

================**/

/* RESPONSIVE HERO */
/* Move hero text up on mobile */
@media (max-width: 992px) {
  .hero-overlay {
    align-items: flex-start;  /* align content to top */
    padding-top: 60px;        /* some spacing from top */
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    padding-top: 40px;  /* closer to top on small mobile */
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }
}
/**
STATS SECTION

***/
@media (max-width: 992px) {
  .stats-section .sub-title-stats h1 {
    font-size: 2.5rem;
  }

  .stats-section .sub-title-stats p {
    font-size: 1rem;
  }

  .stats-card h2 {
    font-size: 2rem;
  }

  .stat-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .stats-section .sub-title-stats h1 {
    font-size: 2rem;
  }

  .stats-card h2 {
    font-size: 1.8rem;
  }

  .stat-icon {
    font-size: 2rem;
  }
}
/**
DIVE INTO THE FUTRE SECTION 4
**/
/* RESPONSIVE */
@media (max-width: 992px) {
  .future-content h2 {
    font-size: 2.2rem;
  }

  .future-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .future-section {
    height: 400px;
  }

  .future-content h2 {
    font-size: 1.8rem;
  }

  .future-content p {
    font-size: 0.95rem;
  }
}
@media (max-width: 992px) {
  .stats-section .sub-title-stats h1 { font-size: 2.5rem; }
  .stats-section .sub-title-stats p { font-size: 1rem; }
  .stats-card h2 { font-size: 2rem; }
  .stat-icon { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .stats-section .sub-title-stats h1 { font-size: 2rem; }
  .stats-card h2 { font-size: 1.8rem; }
  .stat-icon { font-size: 2rem; }
}


@media (max-width: 768px) {
  .footer-extra {
    flex-direction: column;
    gap: 30px;
  }

  .subscribe-form input {
    width: 100%;
  }
}

/* =========================
   FUNDRAISING MOBILE FIX
========================= */


