*, h1, p {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

header {
    padding: 8px 8px;
    background-color: white;
    box-shadow: 
        0 1px 3px 0 rgba(0, 0, 0, 0.1),    
        0 2px 6px 0 rgba(0, 0, 0, 0.08),  
        0 4px 12px 0 rgba(0, 0, 0, 0.05); 
    z-index: 1000;
    position: relative; /* CRITICAL FIX: Creates proper stacking context */
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.header-right-container {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 1001; /* Ensures donate button stays above menu */
}

.logo-img {
    width: 75px;
}

header a {
    height: fit-content;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

/* FIXED Navigation - Base state hidden on mobile */
.navigation-container {
    display: none;
}

.navigation-container > ul {
    list-style-type: none;
    display: flex;
    gap: 32px;
}

header ul li:not(:first-child) {
    display: flex;
    gap: 4px;
    white-space: nowrap;
}

header ul li svg {
    width: 14px;
}

header ul li.active a,
header ul li.current a,
header ul li a:hover {
    border-bottom: 2px solid #00ADEF;
    padding-bottom: 4px;
}

/* FIXED Mobile hamburger menu - FULLY WORKING */
.navigation-container.mobile-open {
    display: flex !important;
    position: fixed; /* Changed to fixed for proper viewport positioning */
    top: 68px; /* Header height (56px + 12px padding) */
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 24px 20px;
    z-index: 2000; /* Higher than header */
    max-height: 80vh;
    overflow-y: auto;
}

.navigation-container.mobile-open > ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

.navigation-container.mobile-open li {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    list-style: none;
    width: 100%;
}

.navigation-container.mobile-open li:last-child {
    border-bottom: none;
}

.navigation-container.mobile-open svg {
    display: none;
}

.navigation-container.mobile-open li.active a {
    color: #99CA3B !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: none;
}

.hamburger-img {
    flex-shrink: 0;
    height: fit-content;
    width: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger-img:hover {
    opacity: 0.7;
}

.hamburger-img.active {
    transform: rotate(90deg);
}

/* Desktop styles */
@media (min-width: 750px) {
    .navigation-container {
        display: flex;
    }
    .hamburger-img {
        display: none;
    }   
}

/* Donate button */
.donate-btn-wrapper {
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 12px 12px;      
    max-width: 100%;
    background: linear-gradient(135deg, #99CA3B 0%, #80B732 100%);
    box-shadow: 0 4px 15px rgba(153, 202, 59, 0.4);
    transition: all 0.3s ease;
}

.donate-btn-wrapper a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

.donate-btn-wrapper:hover {
    background: linear-gradient(135deg, #80B732 0%, #6A9C28 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(153, 202, 59, 0.5);
}

.donate-btn-wrapper:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(153, 202, 59, 0.3);
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  color: white;
  padding: 60px 16px 20px;
  margin-top: 80px;
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}


.footer-logo{
  width: 80px;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-description p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  color: #99CA3B;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #00ADEF;
  transform: translateX(4px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #99CA3B;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #99CA3B;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-bottom-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #99CA3B;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: content;
  }
  
  .footer-legal-links {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 16px 16px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
}


/* Donate CTA Section */
.donate-cta-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
}

.donate-cta-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.cta-text h2 {
  font-size: 32px;
  color: #00ADEF;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 18px;
  color: #333;
}

/* Reuse existing donate button styles */
.cta-btn-wrapper {
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 12px 12px;
  background: linear-gradient(135deg, #99CA3B 0%, #80B732 100%);
  box-shadow: 0 4px 15px rgba(153, 202, 59, 0.4);
  transition: all 0.3s ease;
}

.cta-btn-wrapper:hover {
  background: linear-gradient(135deg, #80B732 0%, #6A9C28 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(153, 202, 59, 0.5);
}

.cta-btn-wrapper:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(153, 202, 59, 0.3);
}

.cta-btn-wrapper a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  white-space: nowrap;
}

/* Side-by-side layout on larger screens */
@media (min-width: 900px) {
  .donate-cta-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .cta-text {
    flex: 1;
  }

  .cta-btn-wrapper {
    flex-shrink: 0;
  }
}

/* Quote Section */
.quote-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 16px;
}

.quote-container {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.25);
}

.quote-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  pointer-events: none;
}

.quote-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  max-width: 600px;
}

.quote-text p {
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.4;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-container {
    height: 300px;
  }
  
  .quote-text {
    bottom: 24px;
    left: 16px;
    right: 16px;
    transform: none;
  }
  
  .quote-text p {
    font-size: 1.4rem;
  }
}