/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #228b22;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px; /* Tighter on mobile for full-width feel */
  }
}

.text-center {
  text-align: center;
}

/* Colors */
:root {
  --green: #228b22;
  --gold: #daa520;
  --pink: #ffc0cb;
  --light: #f9f9f9;
}

/* Header */
/* ─────────────── 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);
}

/* ─────────────── Mobile Menu ─────────────── */
/* ─────────────── 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;
  }
}

/* ─────────────── About Page Specific Styles ─────────────── */

/* Hero for About Page */
.about-hero {
  height: 80vh;
  min-height: 600px;
}

.about-hero h1 {
  font-size: 3.5rem;
  color: white;
  z-index: 2;
}

.about-hero p {
  font-size: 1.5rem;
  color: white;
  z-index: 2;
}

/* Our Story Section */
.our-story h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.our-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: var(--green);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 40px;
  max-width: 500px;
  position: relative;
}

.timeline-content h3 {
  color: var(--green);
  margin-bottom: 10px;
}

/* Mobile Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 50px;
  }
  .timeline-item {
    flex-direction: column;
    text-align: center;
    margin: 40px 0;
  }
  .timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  .timeline-year {
    margin-bottom: 20px;
  }
  .timeline-content {
    margin: 0 20px;
  }
}

/* Mission, Vision, Values Icons */
.mission-icon {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.mission-vision-values h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.mission-vision-values p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Founder's Message */
.founder-section {
  background: var(--light);
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mission-grid img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mission-grid .mission-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.mission-grid .mission-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.intro-paragraph,
.highlight-paragraph,
.call-to-heart {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin: 25px 0;
}

.highlight-paragraph {
  font-style: italic;
  text-align: center;
  padding: 20px;
  background: rgba(218, 165, 32, 0.08);
  border-left: 5px solid var(--gold);
  border-radius: 10px;
}

.call-to-heart {
  font-size: 1.4rem;
  text-align: center;
  padding: 25px;
  background: rgba(34, 139, 34, 0.05);
  border-radius: 15px;
}

.founder-signature {
  text-align: right;
  font-weight: bold;
  font-style: italic;
  color: var(--green);
  margin-top: 30px;
  font-size: 1.2rem;
}

.founder-signature .signature-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
}

.founder-signature .signature-title {
  font-size: 1rem;
  font-style: normal;
  color: #555;
}

.founder-btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 40px;
  background: var(--green);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
  transition: all 0.4s ease;
}

.founder-btn-primary:hover {
  background: #1e7a1e;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(34, 139, 34, 0.4);
}

/* Mobile – Stack founder image + text */
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .mission-image {
    order: -1; /* Image on top */
  }

  .founder-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .founder-message {
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .intro-paragraph,
  .highlight-paragraph,
  .call-to-heart {
    font-size: 1.2rem;
    padding: 20px;
  }

  .founder-signature {
    text-align: center;
  }

  .founder-btn-primary {
    width: 100%;
    max-width: 320px;
    margin: 30px auto 0;
    display: block;
  }
}

/* Executive Leadership Enhancements */
.team-executive {
  padding: 100px 0;
  background: white;
}

.team-executive h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.team-executive p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.grid-4-lg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.executive-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  padding: 30px 20px;
}

.executive-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 35px 70px rgba(34, 139, 34, 0.2);
}

.executive-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.exec-title {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: bold;
  margin: 15px 0 10px;
}

.exec-bio {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 10px;
}

/* Mobile Executives – 1 column, larger images */
@media (max-width: 768px) {
  .team-executive {
    padding: 80px 0;
  }

  .grid-auto.grid-4-lg {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .executive-card img {
    width: 160px;
    height: 160px;
  }

  .exec-title {
    font-size: 1.4rem;
  }

  .exec-bio {
    font-size: 1.05rem;
  }
}

/* CTA on About Page */
.cta-section {
  background: linear-gradient(rgba(34, 139, 34, 0.85), rgba(218, 165, 32, 0.85)),
    url("../images/wog-002.jpeg") center/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cta-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn-primary {
  background: var(--gold);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  transition: all 0.4s ease;
}

.cta-btn-primary:hover {
  background: #c4941b;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(218, 165, 32, 0.4);
}

.cta-btn-secondary {
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  color: var(--green);
  transition: all 0.4s ease;
}

.cta-btn-secondary:hover {
  background: #f5aa1d;
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(34, 139, 34, 0.4);
}

/* General Section Spacing */
.section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

/* 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;
  }
}
