/* Colors */
:root {
  --green: #228b22;
  --gold: #daa520;
  --pink: #ffc0cb;
  --light: #f9f9f9;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

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;
}

/* 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 {
  display: none;
}

/* ─────────────── Mobile Menu ─────────────── */
@media (max-width: 1024px) {
  /* container */
  .header-container {
    padding: 0 20px;
  }

  /* Hide desktop nav */
  .nav {
    display: none;
  }

  /* Show hamburger */
  .nav-toggle {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }

    /* Mobile menu container */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gold); 
    border-top: 2px solid var(--foundation-green);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }

  /* Menu list */
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-list a,
  .mobile-dropdown .dropdown-toggle {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff; /* White text on purple */
    padding: 0.6rem 0.8rem;
    border-radius: 6px;
    transition: background 0.3s;
  }

  .mobile-menu-list a:hover,
  .mobile-dropdown .dropdown-toggle:hover {
    background: var(--foundation-green);
    color: var(--foundation-purple);
  }

   /* Mobile dropdown */
  .mobile-dropdown .dropdown-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #374151;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }

  .mobile-dropdown-menu.active {
    display: flex;
  }
}

/* Global Buttons */
.btn {
  padding: 15px 65px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .btn {
    padding: 14px 50px;
    font-size: 1.1rem;
  }
  
}

.btn-primary {
  background: #f5aa1d;
  color: white;
}

.btn-primary:hover {
  background: #fda502;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34, 139, 34, 0.4);
}

.btn-secondary {
  background: var(--gold);
  color: #333;
}

.btn-secondary:hover {
  background: #c4941b;
  transform: translateY(-5px);
}

.btn-outline {
  border: 3px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--green);
}

/* ====================== LEADERSHIP HERO - HIGH SPECIFICITY ====================== */
.leadership-hero {
    position: relative !important;
    min-height: 100vh;
    display: flex !important;
    align-items: center;
    color: white;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute !important;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 40% !important;
    filter: brightness(0.78) contrast(1.05);
}

/* Overlay */
.hero-overlay {
    position: absolute !important;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.25) 0%,
        rgba(0,0,0,0.55) 55%,
        rgba(0,0,0,0.88) 100%
    ) !important;
    z-index: -1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(255,255,255,0.22) !important;
    backdrop-filter: blur(10px);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

/* Typography */
.leadership-hero h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.8rem, 8vw, 5.2rem) !important;
    line-height: 1.05 !important;
    margin-bottom: 16px !important;
    text-shadow: 0 4px 25px rgba(0,0,0,0.7) !important;
}

.hero-tagline {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem) !important;
    margin-bottom: 24px !important;
    font-weight: 500 !important;
    opacity: 0.95;
}

.hero-highlight {
    background: rgba(250, 204, 21, 0.95) !important;
    color: #1e2937 !important;
    font-weight: 700 !important;
    padding: 14px 40px !important;
    border-radius: 50px !important;
    display: inline-block !important;
    margin-bottom: 50px !important;
    font-size: 1.22rem !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute !important;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2rem;
    opacity: 0.8;
    animation: bounce 2.8s infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 20% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 20px); }
    100% { transform: translate(-50%, 0); }
}

/* ====================== LEADERSHIP PAGE - MAIN CONTENT ====================== */
.leadership-page {
    padding: 100px 0;
    background: #f8fafc;
}

/* President Featured */
.president-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 50px 30px;
    border-radius: 24px;
    margin-bottom: 90px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.president-photo-large {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid #facc15;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.president-photo-large img {
    width: 100%;
    height: auto;
    display: block;
}

.president-details h2 {
    font-size: 2.3rem;
    margin-bottom: 8px;
    color: #1e2937;
}

.position {
    color: #9f1239;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.bio {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #475569;
}

/* Executive Team */
.executive-team {
    margin-top: 40px;
}

.executive-team h3 {
    font-size: 2.1rem;
    margin-bottom: 50px;
    color: #1e2937;
}

.executives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.executive-card {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.executive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.executive-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f1f5f9;
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-card h4 {
    margin-bottom: 6px;
    color: #1e2937;
}

.executive-card span {
    color: #64748b;
    font-size: 1rem;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 992px) {
    .president-featured {
        grid-template-columns: 1fr 1.5fr;
        padding: 60px 50px;
    }
    
    .president-photo-large {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .leadership-page {
        padding: 80px 0;
    }
    
    .president-featured {
        padding: 40px 20px;
    }
}


/* 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;
  }
}