
/* =============================================================
   prayers.css – Elegant Prayers Page Styling
   ============================================================= */

.prayers-hero {
  background: linear-gradient(135deg, #b45309, #d97706);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(180, 83, 9, 0.3);
}

.prayers-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.prayers-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.prayers-container {
  display: grid;
  gap: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.prayer-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #b45309;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prayer-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.1), transparent);
  border-radius: 0 0 0 100px;
}

.prayer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #d97706;
}

.prayer-card h2 {
  color: #b45309;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.prayer-card h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b45309, #d97706);
  border-radius: 2px;
}

.prayer-text {
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  text-align: justify;
  position: relative;
  z-index: 2;
}

.prayer-text p {
  margin-bottom: 1.5rem;
}

.prayer-text p:last-child {
  margin-bottom: 0;
}

/* Special styling for specific prayers */
.prayer-card.litany {
  border-left: 5px solid #d97706;
}

.prayer-card.litany .prayer-text {
  font-family: 'Georgia', serif;
  font-size: 1rem;
}

.prayer-card.devotion {
  border-left: 5px solid #92400e;
}

.prayer-card.devotion h2 {
  color: #92400e;
}

.prayer-card.devotion h2::after {
  background: linear-gradient(90deg, #92400e, #b45309);
}

/* Prayer categories */
.prayer-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

/* Prayer number styling */
.prayer-number {
  position: absolute;
  top: -10px;
  left: 2rem;
  background: linear-gradient(135deg, #b45309, #d97706);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .prayers-hero {
    padding: 3rem 1rem;
  }
  
  .prayers-hero h1 {
    font-size: 2.5rem;
  }
  
  .prayer-card {
    padding: 2rem;
  }
  
  .prayer-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .prayers-hero h1 {
    font-size: 2rem;
  }
  
  .prayer-card {
    padding: 1.5rem;
  }
  
  .prayer-card h2 {
    font-size: 1.5rem;
  }
}
