.darshan-hero {
  text-align: center;
  padding: 50px auto;
  background: linear-gradient(135deg, #fff8e7, #fceabb);
  font-family: 'Garamond', serif;
  padding-top: 140px;
}

.darshan-heading h1 {
  font-size: 3rem;
  color: #b8860b;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  margin-bottom: 10px;
}

.darshan-subtitle {
  font-size: 1.3rem;
  color: #8b4513;
  font-style: italic;
  margin-bottom: 15px;
}

.darshan-intro {
  font-size: 1rem;
  color: #5c3d0d;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.darshan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.darshan-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
  max-width: 280px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.darshan-card img {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #b8860b;
}

.darshan-card h2 {
  color: #8b4513;
  font-size: 1.4rem;
  margin: 15px 10px 5px;
}

.darshan-card p {
  color: #5c3d0d;
  font-style: italic;
  margin: 0 10px 15px;
}

.darshan-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.darshan-footer-text {
  margin-top: 40px;
  font-size: 1.1rem;
  color: #8b4513;
  font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .darshan-cards {
    flex-direction: column;
    align-items: center;
  }
}
