/* home.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500&display=swap');

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fefcf9;
  color: #333;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../images/hero_home.jpg') center/cover no-repeat;
  min-height: 400px;
  height: auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-btn {
  background-color: #b89161;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #a4784d;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 5rem 2rem;
  flex-wrap: wrap;
  background: #fefcf9;
}

.feature-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  width: 280px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.feature-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #b89161;
}

.feature-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.donation-inline {
  background: #fff5ef;
  border-top: 1px solid #f0e6e0;
  border-bottom: 1px solid #f0e6e0;
  padding: 3rem 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #3d2e2b;
}

.donation-inline p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.donation-inline .cta-btn.small {
  background-color: #d0836d;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 25px;
  font-weight: 500;
  transition: background 0.3s;
  text-decoration: none;
}

.donation-inline .cta-btn.small:hover {
  background-color: #bb6b58;
}

footer {
  background: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.footer-links a {
  color: #5a4b44;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b89161;
  text-decoration: underline;
}







@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .feature-box {
    width: 100%;
  }
}