/* 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);
}

/* ====================== ABUJA HERO ====================== */
.activities-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.65) 60%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: -1;
}

/* Badge */
.chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.18);
    padding: 10px 22px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.chapter-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

/* Typography */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-tagline {
    font-size: clamp(1.2rem, 4vw, 1.55rem);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-established {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 380px;
    margin: 0 auto;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
}

/* .btn-primary {
    background: #9f1239;
    color: white;
    border: 2px solid #9f1239;
} */

/* .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
} */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2.5s infinite;
}

@keyframes bounce {
    0%, 20% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
    100% { transform: translate(-50%, 0); }
}

/* ====================== DESKTOP ====================== */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        max-width: none;
    }
    
    .btn-large {
        width: auto;
        min-width: 220px;
    }
    
    h1 {
        font-size: 4.2rem;
    }
}

/* ====================== ABUJA CHAPTER HERO - FIXED VERSION ====================== */
.activities-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    isolation: isolate; /* Important for layering */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

/* Strong Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: -1;
}

/* Badge */
.chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    z-index: 2;
}

.chapter-badge img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
}

/* Typography */
.activities-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-tagline {
    font-size: clamp(1.25rem, 4.5vw, 1.65rem);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-established {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
    z-index: 2;
}

.btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.12rem;
    border-radius: 50px;
    font-weight: 600;
}

/* .btn-primary {
    background: #9f1239;
    color: white;
    border: 2px solid #9f1239;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
} */

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.1rem;
    opacity: 0.8;
    animation: bounce 2.8s infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 20% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 18px); }
    100% { transform: translate(-50%, 0); }
}

/* ====================== DESKTOP IMPROVEMENTS ====================== */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        max-width: none;
    }
    
    .btn-large {
        width: auto;
        min-width: 230px;
    }
}

/* ====================== MODERN MAIN CONTENT - BETTER MOBILE ====================== */
.main-content-section {
    padding: 90px 0 110px;
    background: #fff;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: start;
}

.column-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    margin-bottom: 35px;
    color: #1e2937;
    text-align: center;
}

/* Left - Programs */
.programs-column {
    order: 2;
}

.activities-scroll-container {
    overflow-x: auto;
    padding-bottom: 25px;
    scrollbar-width: none;
}

.activities-scroll-container::-webkit-scrollbar {
    display: none;
}

.activities-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    min-width: 100%;
    padding-left: 5px;
}

.activity-card {
    width: 250px;           /* Smaller on mobile */
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.activity-image {
    height: 210px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-content {
    padding: 22px;
}

.activity-content h3 {
    margin-bottom: 10px;
    color: #9f1239;
    font-size: 1.35rem;
}

/* Right - Leadership */
.leadership-column {
    order: 1;
}

.president-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.president-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #facc15;
}

.president-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-info h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.president-info span {
    color: #9f1239;
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
}

.president-bio {
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
}

/* ====================== DESKTOP ====================== */
@media (min-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 90px;
    }
    
    .programs-column { order: 1; }
    .leadership-column { order: 2; }
    
    .activity-card {
        width: 340px;
    }
    
    .president-photo {
        width: 210px;
        height: 210px;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {
    .main-content-section {
        padding: 70px 0 90px;
    }

    .programs-column {
        order: 1;
    }

    .leadership-column {
        order: 2;
    }
    
    .column-title {
        font-size: 2.1rem;
    }

    .president-card {
        padding: 20px 15px;
    }
    
    .president-photo {
        width: 160px;
        height: 160px;
    }
    
    .activity-card {
        width: 240px;
    }
    
    .activity-image {
        height: 190px;
    }
}

/* ====================== GALLERY PREVIEW ====================== */
.gallery-preview-section {
    padding: 100px 0;
    background: #fff;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--green);
}

.section-subtitle {
    font-size: 1.22rem;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto 50px;
}

/* Horizontal Scroll Container */
.gallery-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll-container::-webkit-scrollbar {
    display: none;
}

/* Gallery Grid - Horizontal */
.gallery-preview-grid {
    display: flex;
    gap: 24px;
    padding: 10px 10px 30px;
    width: max-content;
    min-width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    width: 300px;                    /* Fixed width for horizontal scroll */
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
    color: white;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(159, 18, 57, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--green));
    padding: 40px 24px 24px;
}

.gallery-overlay h4 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* CTA Button */
.gallery-cta {
    margin-top: 50px;
}

.gallery-cta .btn-large {
    padding: 18px 48px;
    font-size: 1.15rem;
}

.ml-10 {
    margin-left: 10px;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
    .gallery-item {
        width: 260px;           /* Smaller cards on mobile */
        height: 300px;
    }
    
    .gallery-preview-section {
        padding: 80px 0;
    }
}

/* ====================== IMPACT STORIES SECTION ====================== */
.impact-stories-section {
    padding: 110px 0;
    background: #f8fafc;
}

.stories-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stories-scroll-container::-webkit-scrollbar {
    display: none;
}

.stories-grid {
    display: flex;
    gap: 28px;
    padding: 10px 10px 30px;
    width: max-content;
    min-width: 100%;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 390px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(159, 18, 57, 0.15);
}

.story-image {
    height: 240px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.08);
}

.story-content {
    padding: 28px;
}

.story-content h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #9f1239;
    line-height: 1.3;
}

.story-quote {
    font-style: italic;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.story-meta {
    font-size: 0.98rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.story-meta strong {
    color: #1e2937;
}

/* Responsive */
@media (max-width: 768px) {
    .story-card {
        width: 300px;
    }
    
    .impact-stories-section {
        padding: 80px 0;
    }
}

/* ====================== CURRENT NEEDS SECTION - WITH IMAGES ====================== */
.current-needs-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.needs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.needs-scroll-container::-webkit-scrollbar {
    display: none;
}

.needs-grid {
    display: flex;
    gap: 28px;
    padding: 10px 10px 30px;
    width: max-content;
    min-width: 100%;
}

.need-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    width: 390px;
    flex-shrink: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.need-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(159, 18, 57, 0.15);
}

.need-card.featured {
    border: 3px solid #facc15;
    position: relative;
}

.need-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #facc15;
    color: #1e2937;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    z-index: 10;
}

/* Image Container */
.need-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.need-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.need-card:hover .need-image img {
    transform: scale(1.08);
}

/* Content */
.need-card h3 {
    font-size: 1.45rem;
    margin: 24px 28px 12px;
    color: #1e2937;
}

.need-card p {
    color: #475569;
    line-height: 1.65;
    margin: 0 28px 20px;
    flex-grow: 1;
}

.amount-needed {
    font-weight: 600;
    color: #9f1239;
    margin: 0 28px 20px;
}

/* Progress Bar */
.progress-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 20px;
    margin: 0 28px 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9f1239, #facc15);
    border-radius: 20px;
}

.progress-text {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 28px 24px;
}

/* Buttons */
.need-card .btn {
    margin: 0 28px 28px;
    width: calc(100% - 56px);
}

/* Responsive */
@media (max-width: 768px) {
    .need-card {
        width: 360px;
    }
    .need-image {
        height: 200px;
    }
}

/* ====================== DEDICATED DONATE SECTION ====================== */
.donate-section {
    padding: 120px 0 100px; /* Added extra bottom padding */
    background: linear-gradient(135deg, #9f1239, #b91c1c);
    color: white;
    position: relative;
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.donate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.donate-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.donate-highlight {
    background: rgba(255,255,255,0.15);
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    font-size: 1.15rem;
}

/* Donation Cards - Improved Padding & Button Centering */
.donation-card {
    background: white;
    color: #1e2937;
    border-radius: 20px;
    padding: 40px 32px 50px; /* Increased bottom padding */
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-align: center; /* Center everything */
}

.donation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center; /* Centered buttons */
    margin-bottom: 32px;
}

.amount-btn {
    padding: 12px 26px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 90px;
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--gold);
    color: white;
    /* border-color: ; */
}

/* Main Donate Buttons */
.donation-card .btn-large {
    width: 100%;
    max-width: 320px;           /* Controlled width */
    margin: 0 auto;             /* Centered */
    display: block;
    padding: 18px 32px;
    font-size: 1.15rem;
}

/* Monthly Giving Card */
.donation-card.mt-30 {
    margin-top: 30px;
}

/* Specific Projects */
.specific-projects {
    margin-top: 40px;
}

.specific-projects h4 {
    color: white;
    margin-bottom: 16px;
    text-align: center;
}

.project-link {
    display: block;
    padding: 14px 20px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 12px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.project-link:hover {
    background: rgba(255,255,255,0.25);
    padding-left: 28px;
}

/* ====================== RESPONSIVE ====================== */
@media (min-width: 992px) {
    .donate-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .donation-card {
        padding: 40px 36px 55px; /* More bottom padding on large screens */
    }
}

@media (max-width: 768px) {
    .donate-section {
        padding: 90px 0 80px;
    }
    
    .donation-card {
        padding: 32px 24px 45px; /* Good bottom padding on mobile */
    }
    
    .amount-options {
        justify-content: center;
    }
}

/* 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;
  }
}