:root {
  --main-color: #00b894;
  --bg-dark: #0a0a0a;
  --bg-alt: #1c1c1c;
  --text-light: #f1f1f1;
  --text-muted: #aaa;
  --btn-radius: 40px;
  --font-main: 'Poppins', 'Helvetica Neue', sans-serif; /* Changed font for headings */
  --font-body: 'Helvetica Neue', sans-serif; /* New variable for body font */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
  --transition-fast: 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  scroll-behavior: smooth;
  line-height: 1.6;
  font-family: var(--font-body); /* Apply body font */
}

/* Sections */
section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1; /* Ensure content is above any background effects */
  overflow: hidden; /* Hide overflow for background effects */
  color: white; /* Ensure text color is white on all backgrounds */
}

/* Headings */
h1, h2 {
  margin-bottom: 1rem;
  font-weight: bold;
  font-family: var(--font-main); /* Apply heading font */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6); /* Apply text shadow for readability */
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

/* Paragraphs & Small Text */
p, small, li {
  max-width: 700px;
  opacity: 0.9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8); /* Slightly lighter shadow for body text */
}

.section-tagline { /* Replaces inline style for the specific paragraph */
  margin-top: 1rem;
}

/* Buttons & Links */
button, .btn, input[type="submit"] {
  background: var(--main-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--btn-radius);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-soft);
  margin: 10px 0; /* Ensures consistent margin for buttons */
}

button:hover, .btn:hover, input[type="submit"]:hover {
  background: #00dab2;
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

/* Quote Block */
.quote-block {
  margin-bottom: 2rem;
}

.quote-block ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  text-align: left;
}

.quote-block li {
  margin: 0.7rem 0; /* Slightly increased margin for better readability */
  padding-left: 1.5rem; /* Increased padding to make room for icon */
  position: relative;
}

.quote-block li::before {
  content: '⚡'; /* Changed icon for more playful feel */
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-size: 1.1em;
  transform: translateY(-50%) rotate(15deg); /* Slight rotation for visual interest */
  top: 50%;
}

/* Bottom Smart Text */
.bottom-smart-text {
  margin-top: 2rem;
  font-size: 0.95rem; /* Slightly larger for readability */
  opacity: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Forms */
form {
  margin-top: 2rem;
  width: 100%;
  max-width: 500px;
  display: flex; /* Use flex for form layout */
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center form elements */
}

form input, form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem; /* Use margin-bottom for consistent spacing */
  border: none;
  border-radius: 12px;
  background: #2a2a2a;
  color: white;
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
  outline: none;
  background: #333;
  transform: scale(1.01); /* Slightly less aggressive scale on focus */
}

form button[type="submit"] {
  width: auto; /* Allow button to size itself */
  min-width: 200px; /* Ensure a minimum width */
  margin-top: 1rem; /* Space above submit button */
}

/* Form Divider for 'And / Or' */
.form-divider {
  margin-top: 2rem; /* Space above divider */
  margin-bottom: 1.5rem; /* Space below divider */
  font-size: 1.5rem; /* Make it stand out */
  color: var(--text-muted); /* Muted color for distinction */
}

/* Screen Reader Only (Accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

footer {
  background-color: var(--bg-alt);
  color: var(--text-muted);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9em;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-content p {
  margin: 5px 0;
  max-width: 700px;
}

.footer-content a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-content a:hover {
  color: white;
}

/* Background Images with Overlay */
.bg-00, .bg-01, .bg-02, .bg-03 {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: white;
}

/* Specific Backgrounds */
.bg-00 {
  background-image: url("images/donate-now-00.webp");
}
.bg-01 {
  background-image: url("images/donate-now-01.webp");
}
.bg-02 {
  background-image: url("images/donate-now-02.webp");
}
.bg-03 {
  background-image: url("images/donate-now-03.webp");
}

/* Universal Overlay for Background Images */
.bg-00::before, .bg-01::before, .bg-02::before, .bg-03::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55); /* Slightly darker overlay for better text contrast */
  z-index: 0; /* Place it behind content but above background image */
}

/* Ensure content is above the overlay for ALL sections */
.hero > * { /* Target all direct children of .hero */
  position: relative;
  z-index: 1;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .quote-block li {
    padding-left: 1.2rem;
  }

  .bottom-smart-text {
    font-size: 0.85rem;
  }

  form input, form textarea {
    padding: 0.8rem 0.9rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .btn, button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
	
  }
}