body {
  margin: 0;
  font-family: 'Segoe UI';
  background: #FFF8E7;
}

/* HEADER */
header {
  background: #8B0000;
  color: white;
  text-align: center;
  padding: 15px;
}

/* NAV */
nav {
  background: #FFD700;
  text-align: center;
  padding: 10px;
}

nav a {
  margin: 10px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

/* HERO */
.hero {
  background: url('https://source.unsplash.com/1600x600/?temple') no-repeat center;
  height: 60vh;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.5);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ABOUT */
.about {
  padding: 40px;
  text-align: center;
}

/* SERVICES */
.services {
  background: #fff;
  padding: 40px;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #FFD700;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
}

/* GALLERY */
.gallery {
  padding: 40px;
  text-align: center;
}

.gallery img {
  margin: 10px;
  border-radius: 10px;
}

/* DONATION */
.donation {
  background: #8B0000;
  color: white;
  text-align: center;
  padding: 40px;
}

.btn {
  background: gold;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  border-radius: 5px;
}

/* FOOTER */
footer {
  background: #333;
  color: white;
  padding: 20px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
}

footer a {
  color: gold;
  text-decoration: none;
}

@media(max-width: 768px){
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}