body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0B2F40;
}

.top-bar {
  background-color: #775729;
  padding: 20px;
  display: flex;
  align-items: center;
  color: white;
}

.top-bar img {
  height: 60px;
  margin-right: 15px;
}

.top-bar h1 {
  font-size: 20px;
  margin: 0;
  font-family: 'Fredoka', sans-serif;
}

.nav-bar {
  background-color: white;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  padding: 19px 80px;
  gap: 150px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 15px 20px;
  gap: 20px;
}

@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.nav-bar a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.blue-strip {
  background-color: #0B2F40;
  height: 20px;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRuTL2wUn6UtLnVZz5ctp8WAYC5KEoGtJnufQ&s);
  background-size: cover;
  background-position: center;
  padding: 80px 10% 100px;
  color: white;
  position: relative;
  animation: fadeLeft 1s ease-in-out;
}

.hero .overlay {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.2;
  font-family: 'Fredoka', sans-serif;
  animation: fadeLeft 1s ease-in-out;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  text-align: left;
  max-width: 100%;
  display: inline;
  word-spacing: 0.2em;
  font-family: 'Coming Soon', sans-serif;
  animation: fadeLeft 1s ease-in-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px;
}

.section {
  padding: 40px 20px;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
 .section {
  min-height: 100vh; /* allows content to grow beyond */
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

}

html {
  scroll-behavior: smooth;
}

.scroll-container {
  scroll-snap-type: y mandatory;
}

.section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}



.hero h2 {
  font-size: 1.6rem;
  margin-top: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: left;
  line-height: 1.3;
  font-family: 'Fredoka', sans-serif;
  animation: fadeLeft 1s ease-in-out;
}

.donation-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 60px;
  gap: 20px;
  font-family: 'Zen Antique', sans-serif;
  color: #FFFFFF;
  font-size: 35px;
  animation: fadeLeft 1s ease-in-out;

}

.bank-details {
  flex: 1;
  padding: 30px;
  border: 2px dashed #FFFFFF;
  border-radius: 10px;
  
  background-color: rgba(255, 255, 255, 0.05);
  min-width: 300px;
  animation: fadeLeft 1s ease-in-out;
}

.bank-details h2 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #fff;
  font-family: 'Zen Antique', sans-serif;
}

.bank-details ol {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.bank-details li {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.bank-number {
  font-weight: bold;
  font-size: 20px;
}

.account-holder {
  display: block;
  font-size: 18px;
  margin-top: 5px;
}

.donor-form {
  background-color: #865a19;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  animation: fadeLeft 1s ease-in-out;
}

.donor-form h2 {
  font-size: 35px;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Zen Antique', sans-serif;
  color: #FFFFFF;
}

.donor-form input,
.donor-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  text-align: center;
}

.proof-message {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.proof-message button {
  width: 30%;
  background-color: #eee;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 10px;
}

.donate-btn {
  background-color: #0b3a47;
  color: white;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
}

.footer {
  background-color: #86868D;
  color: #222;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
  border-top: 4px solid #a856ec;
}

.footer-left h3 {
  color: #FFFFFF;
  margin-bottom: 22px;
  font-weight: bold;
  font-size: 24px;
}

.footer-left p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-left i {
  margin-right: 10px;
}

.footer-right {
  text-align: center;
}

.footer-logo {
  width: 60px;
  margin-bottom: 5px;
}

.footer-brand {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 26px;
}
