/* =========================
   PUJA SECTION
========================= */

.puja-section {
  width: 100%;
  padding: 60px 8%;
  background: #f8f4ee;
  box-sizing: border-box;
}

/* MAIN TITLE */

.puja-main-title {
  font-family: "Great Vibes", cursive;
  font-size: 42px;
  text-align: center;
  color: #721717;
  margin-bottom: 50px;
}

/* CATEGORY */

.puja-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 36px;
  color: #721717;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
  position: relative;
}

.category-title::after {
  content: "";
  width: 120px;
  height: 4px;
  background: #e6c85a;
  display: block;
  margin-top: 10px;
  border-radius: 10px;
}

/* GRID */

.puja-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* SINGLE CARD */

.puja-item {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-top: 5px solid #e6c85a;
}

.puja-item:hover {
  transform: translateY(-6px);
}

.puja-item h3 {
  color: #721717;
  font-size: 24px;
  margin-bottom: 10px;
}

.puja-item .time {
  color: #b8860b;
  font-weight: 700;
  margin-bottom: 12px;
}

.puja-item p {
  color: #555;
  line-height: 1.7;
}

/* SPECIAL PUJA */

.special-puja-section {
  margin-top: 70px;
}

.special-title {
  text-align: center;
  font-size: 42px;
  color: #721717;
  margin-bottom: 35px;
  font-family: "Cinzel", serif;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.special-card {
  background: linear-gradient(135deg, #721717, #a00000);
  color: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.special-card:hover {
  transform: scale(1.03);
}

.special-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #f3df80;
}

.special-card p {
  line-height: 1.8;
  color: #f5f5f5;
}

/* MOBILE */

@media(max-width:768px){

  .puja-main-title{
    font-size:40px;
  }

  .category-title{
    font-size:30px;
  }

  .special-title{
    font-size:34px;
  }

}