/* ===================================================
  PrayerVerses Homepage Styles
  File: style.css
  Location: /prayerverses/assets/css/style.css
=================================================== */


/* =======================
   SECTION: HERO SECTION
======================= */
.pv-hero-section {
  background: linear-gradient(135deg, #3a0ca3, #4361ee);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.pv-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.pv-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pv-highlight {
  color: #ffdd00;
}

.pv-hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.pv-hero-search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 30px;
}

.pv-hero-input {
  padding: 12px 15px;
  width: 100%;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  outline: none;
}

.pv-hero-search-button {
  background-color: #ffd60a;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pv-hero-search-button:hover {
  background-color: #ffc300;
}

.pv-hero-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.pv-hero-btn {
  background-color: white;
  color: #3a0ca3;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.pv-hero-btn:hover {
  background-color: #f1f1f1;
}


/* ===============================
   SECTION: DAILY INSPIRATION
=============================== */
.pv-inspiration-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.pv-inspiration-container {
  max-width: 700px;
  margin: 0 auto;
}

.pv-inspiration-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pv-inspiration-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.pv-verse-card {
  background: linear-gradient(135deg, #6a4c93, #1982c4);
  color: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.pv-verse-text {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.pv-verse-reference {
  font-size: 1rem;
  margin-bottom: 5px;
}

.pv-verse-domain {
  font-size: 0.85rem;
  opacity: 0.8;
}

.pv-verse-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 25px 0;
}

.pv-btn-sm {
  background-color: #eeeeee;
  border: none;
  padding: 8px 14px;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pv-btn-sm:hover {
  background-color: #ddd;
}

.pv-explore-btn {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.pv-explore-btn:hover {
  background-color: #333;
}


/* =======================
   SECTION: EXPLORE TOPICS
======================= */
.pv-topics-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pv-topics-container {
  max-width: 900px;
  margin: 0 auto;
}

.pv-topics-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pv-topics-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.pv-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.pv-topic-card {
  background-color: #f1f1f1;
  border-radius: 8px;
  padding: 20px 10px;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.pv-topic-card:hover {
  background-color: #e0e0e0;
}

.pv-topic-emoji {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pv-topic-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.pv-topics-button {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.pv-topics-button:hover {
  background-color: #333;
}


/* ===============================
   SECTION: WHY PRAYERVERSVERS?
=============================== */
.pv-why-section {
  background-color: #f9f9f9;
  padding: 70px 20px;
  text-align: center;
}

.pv-why-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pv-why-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pv-why-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

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

.pv-feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.pv-feature-card:hover {
  transform: translateY(-5px);
}

.pv-feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.pv-feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pv-feature-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}


/* =======================
   SECTION: CTA / SUBSCRIBE
======================= */
.pv-cta-section {
  background: linear-gradient(135deg, #7209b7, #560bad);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.pv-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.pv-cta-title {
  color:  #ffbe0b;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pv-cta-subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.pv-cta-button {
  display: inline-block;
  background-color: #ffbe0b;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pv-cta-button:hover {
  background-color: #faa307;
}


/* =======================
   SECTION: READ THE BIBLE
======================= */







/* Verse of the Day card styling */
#vod-section {
  position: relative;
  max-width: 700px;
  min-height: 450px;
  margin: 40px auto;
  padding: 30px;
  background-image: url('https://newverse.superstitiousworld.com/wp-content/uploads/2025/06/background-scaled.webp');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}


#vod-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
  color: #5a2a27;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
	text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

#vod-section .pv-verse-text {
  font-size: 22px;
  font-style: italic;
	text-align: center;
  line-height: 1.6;
  margin-bottom: 25px;
  quotes: "“" "”" "‘" "’";
}

#vod-section .pv-verse-text::before {
  content: open-quote;
}

#vod-section .pv-verse-text::after {
  content: close-quote;
}

#vod-section .pv-verse-ref {
  font-weight: 600;
  font-size: 25px;
  color: #9b4d42;
  text-align: center;
  margin-bottom: 80px;
}

.vod-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.vod-buttons button {
  background: #9b4d42;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 2px 8px rgba(155, 77, 66, 0.3);
}

.vod-buttons button:hover {
  background: #7b3d32;
}



.pv-verse-card {
  padding: 15px;
  margin: 20px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  max-width: 700px;
  font-family: "Georgia", serif;
}


.pv-verse-inner {
  position: relative;
  z-index: 2;
}

#remove-bg {
  z-index: 9999 !important;
  display: block !important;
}


/* Style search form */
#prv-search-form {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Input & select fields */
#prv-search-form input[type="text"],
#prv-search-form select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

#prv-search-form input:focus,
#prv-search-form select:focus {
  outline: none;
  border-color: #0057ff;
}

/* Search results styling */
#prv-search-results > div {
  background: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

#prv-search-results > div:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Verse reference link */
#prv-search-results a {
  color: #0057ff;
  text-decoration: none;
  font-weight: bold;
}

#prv-search-results a:hover {
  text-decoration: underline;
}


.pv-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pv-verse-content {
    margin-top: 20px;
    margin-bottom: 50px;
}