/* Prayer Hero Section */
.prayer-hero {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
  background: url('../images/prayer/prayer.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prayer-hero .hero-overlay {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 62, 80, 0.6); /* Using primary color with transparency for readability */
  z-index: 1;
}

.prayer-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.prayer-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.prayer-hero .hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.95;
}

/* Prayer Form Section */
.prayer-form-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 2.5rem 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.prayer-confidential {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(192, 57, 43, 0.05); /* Very light red background */
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
}

/* Form Styles */
.prayer-form .form-group {
  margin-bottom: 1.5rem;
}

.prayer-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.prayer-form input:focus,
.prayer-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-color-light);
}

.prayer-form button {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
}

/* Responsive Adjustments */

@media (max-width: 600px) {
  .prayer-hero {
    padding: 4rem 1rem;
  }
  .form-wrapper {
    padding: 2rem 1.5rem; /* Reduce padding on mobile */
  }
  .prayer-form .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
  }
}