/* Import Fonts */
body {
  font-family: 'Noto Serif Devanagari', serif;
  margin: 0;
  background: #fdf6ec url('https://img.freepik.com/premium-vector/pattern-abstract-white_737564-525.jpg?semt=ais_hybrid&w=740') top center repeat;
  color: #4b2e2e;
}

a {
  text-decoration: none;
  color: #7b3f00;
}

.navbar {
  background-color: #e0b589;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo Bhai 2', cursive;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar nav a {
  margin-left: 1rem;
  font-weight: 600;
}

.hero {
  background: url('https://w0.peakpx.com/wallpaper/963/188/HD-wallpaper-tirupathi-cloud-sky-balaji-temple-tirupati-god-thumbnail.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px #000;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn {
  background: #7b3f00;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #5e2e00;
}

.btn-secondary {
  background: #a0522d;
}

.intro, .cta {
  padding: 3rem 2rem;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.feature-card {
  background: #fff8e1;
  padding: 1.5rem;
  border: 1px solid #d7c49eff;
  border-radius: 8px;
  width: 250px;
  text-align: center;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.footer {
  background: #4b2e2e;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #ffdfba;
  margin: 0 0.3rem;
}

.footer .socials a {
  color: #ffdfba;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .features {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
