* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Trebuchet MS', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  position: relative;
  text-align: left;
  width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #83a9a5; /* light blue hover */
}

/* Donate Button */
.donate-button {
  background-color: #f5d2cd;
  padding: 8px 15px;
  border-radius: 15px;
  transition: background-color 0.3s ease;
}

.donate-button:hover {
  background-color: #e1b7b0;
  color: #000;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.welcome {
  font-size: 3em;
  color: white;
  opacity: 0;
  animation: fadeIn 1.8s ease-in forwards;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}




/* Contact Section */
#contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Georgia, serif;
}

.contact-header {
  margin-top: 30px;
  text-align: center;
  padding: 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}


.contact-header p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #333;
  margin-top: 50px;
}

/* Contact Cards */
.contact-card {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.contact-image {
  width: 220px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info a {
  color: #d56a8d;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.email, .phone {
  font-weight: bold;
  color: #444;
}

/* Donate Section */
.donate-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Georgia, serif;
  color: #1a1a1a;
}

.donate-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.donate-line {
  border: none;
  border-top: 2px solid black;
  width: 80px;
  margin: 0 0 20px 0;
}

.donate-section h3 {
  font-size: 18px;
  margin-top: 30px;
  font-weight: bold;
}

.donate-section p {
  font-size: 15px;
  line-height: 1.6;
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #a9c0b6;
  padding: 30px;
  text-align: center;
  color: #333;
}

.footer-logo {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #83a9a5;
}

.credits {
  font-size: 0.75em;
  color: #555;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.8s ease-in forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Indentation */
.indent {
  padding-left: 100px;
}





