/* Make the body take full height */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  color: #0b0be5;
}

a:hover {
  color: #3694ff;
}

/* Shared container layout */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #0b0be5;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 100px; /* adjust based on your design */
  width: auto;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #3694ff;
}

.banner {
  width: 100%;
  height: 600px; /* adjust height as needed */
  background: url('../images/home.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end; /* Moves overlay to the bottom */
  justify-content: center;
  padding: 0;
  margin: 0;
  max-width: none;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  width: 100%;
  padding: 20px;
}

.banner-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.banner-overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero {
  color: black;
  text-align: center;
  padding: 80px 20px;
}

.hero h2 {
  font-size: 2.5rem;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

ul {
  list-style: disc;
  padding-left: 20px;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

.btn, button {
  background-color: #0b0be5;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
}

footer {
  background: #081c15;
  color: white;
  text-align: center;
  padding: 15px;
}

.promo-full {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: none;
}

.promo-banner {
  width: 50%;           /* Force each banner to take 50% width */
  box-sizing: border-box;
  padding: 60px 150px;
  text-align: center;
  color: white;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-banner {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
    url('../images/promo.jpg') center/cover no-repeat;
}

.right-banner {
  background-color: #0808b2;
}

.promo-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.promo-banner p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.promo-banner .btn {
  background-color: white;
  color: #060690;
  font-weight: bold;
  padding: 10px 20px;           /* Smaller button */
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  margin: 0 auto;              /* Center it */
}

.promo-banner .btn:hover {
  background-color: #3694ff;
  color: white;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .promo-full {
    flex-direction: column;
  }

  .promo-banner {
    width: 100%;
    padding: 60px 40px;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 70px; /* adjust based on your design */
    width: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    padding: 10px 0;
    z-index: 1001;
    gap: 0;
  }

  .nav-links li a {
    color: #0b0be5;
    text-wrap: nowrap;
    padding: 0 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}

.narrow-banner {
  width: 100%;
  height: 400px; /* adjust height as needed */
  position: relative;
  display: flex;
  align-items: flex-end; /* Moves overlay to the bottom */
  justify-content: center;
  padding: 0;
  margin: 0;
  max-width: none;
}

.services {
    background: url('../images/services.jpg') center/cover no-repeat;
}

.volunteer {
    background: url('../images/volunteer.jpg') center/cover no-repeat;
}

.donation {
    background: url('../images/donation.jpg') center/cover no-repeat;
}

