/* ========================== */
/* 1. CSS VARIABLES */
/* ========================== */
:root {
    --primary: #388e3c;
    --secondary: #ff5a00;
    --nav-link-color: #fff;
    --nav-link-hover-bg: #004aad;
    --nav-link-hover-text: #fff;
    --header-bg: #000;
    --bg-light: #f9f9f9;
    --bg-alt: #f5f5f5;
    --text-dark: #333;
    --text-medium: #555;
  }
  
  /* ========================== */
  /* 2. GLOBAL RESET / BASE STYLES */
  /* ========================== */
  html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.6;
  }
  
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  a {
    text-decoration: none;
    color: var(--nav-link-color);
  }
  
  /* ========================== */
  /* 3. HEADER & NAVIGATION */
  /* ========================== */
  header.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    height: 100px;
    background-color: var(--header-bg);
  }
  
  .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }
  
  .logo {
    height: 100px;
    width: 100px;
    border-radius:50%;
    display: flex;
    justify-content: center;
    align-items: center ;
    overflow: hidden;
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the circle without distortion */
    display: block;
  }
  .navbar {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-grow: 1;
    justify-content: center;
  }
  
  .nav-links {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
  }
  
  .nav-item {
    color: var(--nav-link-color);
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: capitalize;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  
  .nav-item:hover {
    background-color: var(--nav-link-hover-bg);
    color: var(--nav-link-hover-text);
    transform: scale(1.05);
  }
  
  .nav-item.active {
    background-color: var(--nav-link-hover-bg);
    color: var(--nav-link-hover-text);
    text-decoration: underline;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .nav-links a {
    text-transform: none;
  }
  
  /* ========================== */
  /* 4. DONATE NOW TAB STYLES */
  /* ========================== */

.nav-links .donateNow {
  background-color: #ff5a00 !important;
  color: white !important;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-links .donateNow:hover {
  background-color: white !important;
  color: #ff5a00 !important;
  border: 1px solid #ff5a00;
  transform: scale(1.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

  
.nav-links .donateNow:active {
    transform: scale(1.02);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }


/* ========================== */
/* Fix: Reset <a> tags */
/* ========================== */
a {
  text-decoration: none;
  color: var(--nav-link-color);
  background-color: transparent; /* <== important to fix social media issue */
  transition: background-color 0.3s ease, color 0.3s ease; /* <== smoother link transitions */
}

/* ========================== */
/* Fix: Social Media Icons Style */
/* ========================== */
.socialmedia {
  display: flex;
  gap: 10px;
  align-items: center;
}

.socialmedia a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: transparent; /* <== fix background issue */
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socialmedia img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.socialmedia a:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.socialmedia a:hover img {
  transform: scale(1.1);
}


  /* ========================== */
  /* 6. SECTION BASE STYLES (Common for all pages) */
  /* ========================== */
  .section {
    padding: 60px 20px;
    text-align: center;
    background: var(--bg-light);
  }
  
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 125px;
  }
  
  h1, h2, h3 {
    color: var(--text-dark);
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; color: #444; margin-top: 30px; }
  
  .intro {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 20px;
  }
  
  .content {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-top: 20px;
  }
  