/* ─────────────── Modern Get Involved Page CSS ─────────────── */

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  line-height: 1.7;
  background: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #1e4d1e; /* deeper green */
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 1024px) { .container { padding: 0 24px; } }
@media (max-width: 640px)  { .container { padding: 0 16px; } }

.text-center { text-align: center; }

/* Colors */
:root {
  --green: #1e4d1e;
  --gold: #d4af37;
  --light: #f8fafc;
  --dark: #111827;
}

/* Buttons – Modern & Consistent */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 9999px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: #c49b2e;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}

.btn-secondary {
  background: var(--green);
  color: white;
}

.btn-secondary:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.35);
}

/* Header – Clean & Aligned */
/* ─────────────── Modern & Fully Responsive Header ─────────────── */

/* Header */
.header {
  background: var(--gold);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
}

/* Container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Logo */
.logo img {
  height: 70px; /* Smaller for better balance */
  width: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.08);
}

/* Navigation */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-list a {
  color: #111;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  padding: 8px 4px;
  transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--green);
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-size: 0.95rem;
}

.dropdown-menu li a:hover {
  background: #f8f9fa;
  color: var(--green);
}

/* Right Side: Donate + Toggle */
.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-donate {
  padding: 12px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  background: var(--green);
  color: white;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(30,77,30,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-donate:hover {
  background: #164016;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,77,30,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--green);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-toggle:hover {
  transform: rotate(90deg);
}

.nav-toggle i {
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* Critical for solid icons like fa-bars / fa-times */
}

.nav-toggle.active i::before {
  content: "\f00d"; /* fa-times */
}




/* ─────────────── Mobile Menu – Smooth, Centered, Beautiful ─────────────── */

/* ─────────────── Mobile Menu – Fixed, Smooth, No Overlap, Clean Icon ─────────────── */

@media (max-width: 992px) {
  /* Hide desktop nav layout */
  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 
      transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.45s ease,
      visibility 0.45s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .nav.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.2rem;
    text-align: center;
    list-style: none;
    padding: 0 24px;
    margin: 0;
    width: 100%;
    max-width: 420px;
  }

  .nav-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    padding: 18px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s, background 0.3s;
    border-radius: 12px;
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--green);
    background: rgba(30, 77, 30, 0.08);
  }

  /* Dropdown in mobile – tap to expand with arrow */
  .dropdown > a::after {
    content: " ▼";
    font-size: 0.9rem;
    margin-left: 12px;
    transition: transform 0.3s;
  }

  .dropdown.active > a::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px 0 0 0;
    margin: 0;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 1.8rem;
    padding: 14px 0;
  }

  /* Hamburger button – no rotation, only icon swap */
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--green);
    cursor: pointer;
    z-index: 10001;
    padding: 12px;
    transition: transform 0.3s ease;
  }

  .nav-toggle:hover,
  .nav-toggle.active {
    transform: scale(1.12);
  }

  /* Force solid FA icons – fixes upside-down/broken × */
  .nav-toggle i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
  }

  /* Hamburger → clean × when active */
  .nav-toggle.active i::before {
    content: "\f00d" !important; /* fa-times */
  }
}

/* Very small phones (< 480px) */
@media (max-width: 480px) {
  .nav-list a {
    font-size: 2rem;
    padding: 16px 0;
  }

  .nav-toggle {
    font-size: 2.2rem;
  }
}

/* Extra small phones (< 480px) */
/* @media (max-width: 480px) {
  .mobile-menu-inner {
    padding: 80px 16px 40px;
  }

  .mobile-nav-list a {
    font-size: 2rem;
    padding: 14px 24px;
  }

  .nav-toggle {
    font-size: 2rem;
  }
} */

/* Get Involved Hero */
.get-involved-hero {
  height: 85vh;
  min-height: 680px;
  background: linear-gradient(rgba(30,77,30,0.75), rgba(30,77,30,0.65)), url('../images/wog-7.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  color:#d4af37;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* Involved Section */
.involved-section {
  padding: 120px 0;
  background: var(--light);
}

.section-subtitle {
  font-size: 1.3rem;
  color: #4b5563;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.involved-card {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
  border-top: 5px solid var(--green);
}

.involved-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 40px 80px rgba(30,77,30,0.18);
}

.involved-icon {
  font-size: 4.5rem;
  color: var(--gold);
  margin-bottom: 28px;
}

.involved-card h3 {
  color: var(--green);
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.involved-card p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(30,77,30,0.9), rgba(212,175,55,0.85)), url('../images/wog-1.jpeg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.cta-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,0.25); 
}

.cta-content { 
  position: relative; 
  z-index: 2; 
  max-width: 900px; 
  margin: 0 auto; 
}

.cta-section h2 { 
  font-size: clamp(2.8rem, 6vw, 4.5rem); 
  margin-bottom: 24px; 
  color: #d4af37;
}

.cta-text { 
  font-size: 1.35rem; 
  margin-bottom: 48px; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .involved-section { padding: 80px 0; }
  .grid-auto { gap: 32px; }
  .involved-card { padding: 40px 28px; }
  .involved-icon { font-size: 4rem; }
  .cta-section { padding: 100px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 340px; padding: 16px 40px; font-size: 1.1rem; }
}

/* Footer */
.footer {
  background: #1a3d1a; /* Deep green for elegance */
  color: white;
  padding: 80px 0 30px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1400px;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-logo img {
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 15px;
}

.tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links a,
.footer-contact li {
  margin-bottom: 12px;
  display: block;
  color: #ddd;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  width: 20px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--gold);
  color: #333;
  transform: translateY(-5px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
}

.newsletter-form .btn {
  padding: 14px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  .footer-grid {
    gap: 40px;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .newsletter-form {
    align-items: center;
  }
  .newsletter-form input {
    width: 100%;
    max-width: 300px;
  }
}
