/* style.css */
body {
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  background: #fdfcf7;
  color: #2c3e50;
  line-height: 1.7;
  font-weight: bold; /* makes ALL body text bold */
}

h1, h2 {
  font-family: 'Open Sans', sans-serif;
  color: #3b7a57; /* calm green */
}

header {
 background: url('images/wood.jpg') no-repeat center center;
  background-size: cover;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #6d4c41; /* deep brown */
}

header h1 {
  margin: 0;
  font-size: 2rem;
  color: #FFD700; /* gold */
  font-weight: bold;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #FFD700; /* gold */
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #ffeb99; /* lighter gold when hovered */
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  background: #f1f8e9;
  border-top: 2px solid #c8e6c9;
}
/* Contact form styling */
.contact-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 15px;
  background-color: #fffaf0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form label {
  font-weight: bold;
  color: #4b2e2e;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  background-color: #8b5e3c;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #a9714e;
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: white;   /* <-- change from gold to white */
  font-weight: bold;
  border-radius: 10px;
}

/* Overview */
.overview {
  text-align: center;
  padding: 40px 20px;
}

.purpose-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.purpose {
  background-color: #fffaf0;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.purpose h3 {
  color: #8b5e3c;
}

/* Call to Action */
.cta {
  background: #183059; /* dark blue */
  color: #fff;         /* white text */
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 32px auto;
  max-width: 600px;
}
.cta h2 {
  color: gold;         /* gold to match hero title */
  font-style: italic;  /* italic like hero title */
  font-size: 2.2em;    /* slightly larger for emphasis */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* subtle shadow for readability */
}

.cta p {
  color: white;        /* keep the paragraph readable */
}


.cta .btn {
  background: #ffd700; /* gold button */
  color: #183059;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 16px;
}

/* CTA: make text inside the box bright yellow, but keep the "Prayer Request" button text unchanged */
.cta,
.cta h2,
.cta p {
  color: #FFD700; /* bright yellow for heading and paragraph inside the CTA box */
}

/* Exclude the CTA button text from the yellow color */
.cta .btn {
  color: #183059 !important; /* restore/desireable button text color (dark blue) */
}

.hero h2 {
  color: gold;
  font-size: 2.5em;
}
.hero p {
  color: white;
}
.page-content {
  max-width: 1200px;   /* wider content area */
  margin: 20px auto;   /* keeps it centered */
  padding: 0 20px;
  line-height: 1.7;
  color: #2c3e50;
  font-family: 'Times New Roman', Times, serif;
}

.page-content h2 {
  color: #3b7a57;      /* elegant green */
  font-style: italic;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #c8e6c9; /* subtle green underline */
  padding-bottom: 5px;              /* spacing from underline */
}

.page-content h3 {
  color: #b22222;      /* deep red */
  font-weight: bold;
  margin-top: 20px;
}
.sermon p {
  margin-bottom: 15px;
}

.reflection {
  background-color: #fffaf0;
  border-left: 5px solid #8b5e3c;
  padding: 15px;
  margin-top: 30px;
  border-radius: 5px;
}

/* ===== Mobile / Tablet Styles ===== */
@media (max-width: 768px) {

  /* General page content */
  .page-content {
    width: 90%;          /* use most of the screen */
    max-width: 100%;     /* prevent horizontal scroll */
    padding: 0 15px;     /* smaller padding */
  }

  /* Hero section */
  .hero {
    padding: 40px 15px;  /* reduce padding for smaller screens */
    background-size: cover;
  }
  .hero h2 {
    font-size: 2em;      /* smaller hero title */
  }
  .hero p {
    font-size: 1em;      /* adjust verse size */
  }

  /* Overview / Purpose Sections */
  .purpose-container {
    flex-direction: column;  /* stack cards vertically */
    align-items: center;
  }
  .purpose-container a.purpose {
    width: 90%;              /* wider cards on mobile */
    margin: 10px 0;          /* spacing between cards */
  }

  /* Call to Action */
  .cta {
    padding: 30px 15px;
  }
  .cta h2 {
    font-size: 1.8em;
  }
  .cta p {
    font-size: 1em;
  }
  .cta .btn {
    width: 80%;             /* make button easier to tap */
    padding: 12px 0;
    font-size: 1em;
  }

  /* Footer */
  footer {
    font-size: 0.9em;
    padding: 15px;
  }
}

/* Sermon Page Styling */
.sermon h2 {
  color: #3b7a57;          /* elegant green */
  font-size: 1.8em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

.sermon p {
  font-size: 1.1em;
  line-height: 1.85;       /* slightly more relaxed line spacing */
  margin-bottom: 28px;     /* larger gap between paragraphs */
  color: #2c3e50;          /* dark gray for easy reading */
  text-align: justify;     /* neat block-style alignment */
}
/* Blockquote Styling */
.sermon blockquote {
  font-style: italic;
  font-size: 1.2em;
  line-height: 1.8;
  background-color: rgba(173, 216, 230, 0.3); /* light translucent blue */
  border-left: 6px solid #4682b4;             /* steel blue accent bar */
  margin: 25px 0;
  padding: 15px 20px;
  color: #2c3e50;                             /* darker text for contrast */
  border-radius: 5px;
}
/* Scripture Reference Styling */
.sermon blockquote .reference {
  display: block;
  margin-top: 10px;
  font-size: 0.95em;
  font-style: normal;
  color: #6b4226;       /* slightly darker wood-brown */
  text-align: right;    /* aligns to the right edge */
}
.page-content h4 {
  font-family: 'Georgia', serif;          /* elegant serif font */
  font-size: 1.4em;                       /* slightly larger */
  font-weight: bold;                      /* strong emphasis */
  color: #b8860b;                         /* goldenrod color */
  text-align: center;                     /* centered */
  margin: 30px 0 20px 0;                  /* extra spacing */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* subtle glow */
  position: relative;                     /* for underline effect */
}

.page-content h4::after {
  content: "";
  display: block;
  width: 60px;                            /* underline width */
  height: 3px;                            /* underline thickness */
  background-color: #b8860b;              /* same golden color */
  margin: 8px auto 0 auto;                /* centered under text */
  border-radius: 2px;                     /* rounded ends */
}
.full-width-bg {
  width: 100vw;                  /* full screen width */
  height: 600px;                 /* adjust as needed */
  margin-left: calc(-50vw + 50%);
  background-image: url('images/Cross.jpg');
  background-size: cover;        /* scales to cover the div */
  background-position: center;   /* centers the image */
  background-repeat: no-repeat;
  border-radius: 0;              /* optional: remove rounded corners */
  box-shadow: inset 0 0 0 rgba(0,0,0,0); /* placeholder for optional overlay */
}
.full-width-bg {
  width: 100vw;
  aspect-ratio: 16/9;            /* maintains a 16:9 ratio automatically */
  margin-left: calc(-50vw + 50%);
  background-image: url('images/Cross.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;

  /* Fade-in animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.full-width-bg.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional mobile tweak */
@media (max-width: 768px) {
  .full-width-bg {
    aspect-ratio: 16/9;           /* keeps same ratio on mobile */
  }
}
.inline-image-left {
  float: left;                /* makes the image sit on the left */
  margin: 0 20px 20px -100px;  /* top/right/bottom/left spacing, negative left pulls it out */
  width: 220px;               /* adjust size as needed */
  height: auto;               /* keeps aspect ratio */
  border-radius: 5px;         /* optional rounded corners */
  box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* optional subtle shadow */
}
.image-text-wrapper {
  display: flex;
  align-items: flex-start; /* image at top, text starts lower via margin */
  gap: 40px;
  margin: 30px 0;
}

.image-text-wrapper img {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
}

.image-text-wrapper .text {
  flex: 1;
  margin-top: auto; /* pushes text down to bottom of the wrapper */
}
.next-room {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin-top: 60px;
  border-radius: 15px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  /* REMOVE the old background */
  background: none;

  /* Remove old shadow if any */
  box-shadow: none;
}


.next-room-overlay {
  background: rgba(0, 51, 102, 0.6); /* translucent dark blue */
  border-radius: 15px;               /* match outer section for smooth look */
  padding: 40px 30px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Remove absolute positioning */
  position: relative;
  top: auto;
  left: auto;
  transform: none;
}

.fall-title {
  color: #a8e6a1; /* light green */
  margin-bottom: 15px;
}

.next-room-overlay h3 {
  margin-bottom: 20px;
}

.next-room-overlay p {
  font-size: 1.2em;
  margin: 10px 0;
  line-height: 1.6;
}
/* Main heading - The Fall of Man */
.next-room-overlay h2 {
  font-size: 3em;                   /* larger heading */
  font-family: 'Georgia', serif;
  font-weight: bold;
  color: #a8e6a1;                   /* light green */
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Subheading - The Need for a Savior */
.next-room-overlay h3 {
  font-size: 2.5em;                 /* larger subheading */
  font-family: 'Georgia', serif;
  font-weight: bold;
  margin-bottom: 25px;
  color: white;                      /* keeps the subheading white */
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

/* Paragraphs inside overlay */
.next-room-overlay p {
  font-size: 1.3em;                 /* slightly larger paragraph */
  margin: 10px 0;
  line-height: 1.6;
  text-align: center;               /* center the text */
}
/* Floating Button */
.next-room-overlay .btn {
  display: inline-block;
  padding: 18px 40px;                /* bigger for emphasis */
  font-size: 1.2em;
  font-weight: bold;
  color: white;
  background-color: #3b7a57;
  border-radius: 50px;               /* pill-shaped for floating effect */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3); /* elevated shadow */
  position: relative;
  z-index: 10;                        /* sits above the overlay content */
  margin-top: 20px;                   /* space from text above */
}

/* Hover effect */
.next-room-overlay .btn:hover {
  background-color: #2e5b40;
  transform: translateY(-5px) scale(1.05); /* floats upward slightly */
  box-shadow: 0 14px 28px rgba(0,0,0,0.4); /* stronger shadow */
}
.hero {
  display: flex;
  align-items: flex-start;      /* top align content and image */
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fdfcf7;   /* optional neutral background */
  border-radius: 10px;
  margin-bottom: 40px;
}

.hero-content {
  flex: 1;                      /* text takes remaining space */
}

.hero-content h2 {
  font-size: 2.5em;
  color: #3b7a57;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2em;
  line-height: 1.6;
}

.hero-image-right {
  width: 300px;                 /* adjust size as needed */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
/* Adam & Eve Section */
.fall-hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 18px;
  padding: 28px 16px;
  max-width: 1000px;
  margin: 0 auto 36px;
  background: transparent;
}

.fall-hero-image {
  float: none !important;
  display: block !important;
  margin: 0 auto !important;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  order: 1;
}

.fall-hero-content {
  order: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 8px;
}

.fall-hero-content h2 {
  margin: 0 0 12px;
  line-height: 1.15;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}

/* If earlier CSS places the image with absolute positioning or floats, this will neutralize it */
.fall-hero-image[style], .fall-hero-image {
  position: static !important;
}
@media (min-width: 900px) {
  /* keep stacked layout on large screens as requested; remove below if you want two-column on desktop */
  .fall-hero { max-width: 1100px; }
}
/* ===== Prayer Request Section ===== */
.prayer-request {
  background: rgba(240, 248, 255, 0.85); /* soft opaque blue (AliceBlue) */
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 600px;
  margin: 60px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.prayer-request h2 {
  color: #3b7a57; /* calm green */
  font-size: 2em;
  margin-bottom: 10px;
}

.prayer-request p {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.prayer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.prayer-form label {
  font-weight: bold;
  color: #4b2e2e;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.9);
}

.prayer-form button {
  background-color: #3b7a57;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.prayer-form button:hover {
  background-color: #2e5b40;
  transform: translateY(-2px);
}
/* ===== Prayer Request Section (with Multiple Choice) ===== */
.prayer-request {
  background: rgba(240, 248, 255, 0.85); /* soft opaque blue (AliceBlue) */
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 650px;
  margin: 60px auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.prayer-request h2 {
  color: #3b7a57; /* calm green */
  font-size: 2em;
  margin-bottom: 10px;
}

.prayer-request p {
  color: #2c3e50;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.prayer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.prayer-form label {
  font-weight: bold;
  color: #4b2e2e;
}

.prayer-options {
  background: rgba(255,255,255,0.9);
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.prayer-options label {
  display: block;
  font-weight: normal;
  color: #2c3e50;
  margin: 10px 0;
  cursor: pointer;
}

.prayer-options input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.prayer-options .note {
  display: block;
  font-size: 0.9em;
  color: #6b4226;
  margin-left: 25px;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.9);
}

.prayer-form button {
  background-color: #3b7a57;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.prayer-form button:hover {
  background-color: #2e5b40;
  transform: translateY(-2px);
}
.prayer-form {
  max-width: 600px;
  margin: 40px auto; /* centers it horizontally */
  background: rgba(173, 216, 230, 0.2); /* light blue translucent */
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prayer-form label {
  display: block;
  font-weight: bold;
  margin-top: 15px;
  color: #1f3c5b;
}

.prayer-form input,
.prayer-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  resize: vertical;
}

.prayer-form .prayer-options {
  margin: 15px 0;
}

.prayer-form .prayer-options label {
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
}

.prayer-form button {
  display: block;
  width: 100%;
  background-color: #3b7a57;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prayer-form button:hover {
  background-color: #2e5b40;
  transform: scale(1.03);
}
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: start;
  padding: 40px 20px;
}

.song-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25% /* 16:9 ratio */;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.song-desc {
  margin-top: 15px;
  font-size: 1.1em;
  color: Green; /* soft gold / parchment tone */
  line-height: 1.6;
  font-weight: 600;
}
/* ===== Improved Mobile Layout (phones under ~768px) ===== */
@media (max-width: 768px) {

  body {
    font-size: 1.05em; /* slightly larger text for readability */
    line-height: 1.8;
    padding: 10px;
  }

  header h1 {
    font-size: 1.8em;
  }

  nav a {
    display: inline-block;
    margin: 6px 10px;
    font-size: 1em;
  }

  main {
    padding: 1rem;
    max-width: 95%;
  }

  p {
    font-size: 1.1em;
  }

  h2, h3 {
    font-size: 1.6em;
  }

  /* For prayer form or any centered boxes */
  .prayer-form, .contact-form, .next-room-overlay {
    width: 95%;
    max-width: 500px;
    margin: auto;
    padding: 20px;
  }

  /* For songs page */
  .songs-grid {
    grid-template-columns: 1fr; /* 1 video per row on phone */
    gap: 25px;
  }

  .song-desc {
    font-size: 1.1em;
    padding: 0 5px;
  }

  /* General buttons */
  button, .btn {
    font-size: 1em;
    padding: 12px 20px;
  }
}

/* Page-specific adjustments for Fall of Humanity page */
.fall-page img {
  display: none !important; /* ensure any leftover image is hidden */
}

/* Larger paragraph spacing for readability on this page */
.fall-page p {
  margin-bottom: 2.2em;      /* increased spacing between paragraphs */
  font-size: 1.06em;
  line-height: 1.9;
  color: #2c3e50;            /* body copy color */
}

/* Make headings dark blue on this page */
.fall-page h2,
.fall-page h3 {
  color: #0b3d91;            /* deep blue for headings */
  font-weight: 700;
  margin-top: 0.4em;
  margin-bottom: 0.6em;
}

/* Ensure the hero section remains simple and centered */
.fall-hero {
  padding: 24px 12px;
  text-align: center;
  background: transparent;
  margin-bottom: 20px;
}
.fall-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px;
}

/* CTA - isolated title style (does not use h1/h2/h3) */
.cta-title {
  color: #FFD700;            /* bright yellow */
  font-style: italic;
  font-size: 2.2em;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.45);
  line-height: 1.1;
  margin: 0 auto 12px;
  max-width: 900px;
  text-align: center;
}

/* keep CTA paragraph readable and button color unchanged */
.cta p { color: #fff; }
.cta .btn { color: #183059 !important; }
/* Lead-to-Cross: styled Fall box (dark green background, yellow text)
   Uses unique classes so headings/paragraphs won't inherit global heading styles */
.lead-fall-box .next-room-overlay {
  background: #083e2d;            /* dark green */
  padding: 28px;
  border-radius: 12px;
  max-width: 980px;
  margin: 32px auto;
  box-shadow: 0 8px 20px rgba(3,25,15,0.25);
  text-align: center;
}

/* Yellow text for the box content only */
.lead-fall-box .lead-box-title,
.lead-fall-box .lead-box-subtitle,
.lead-fall-box .lead-box-text {
  color: #FFD700 !important;      /* bright yellow */
  margin: 0.45em 0;
}

/* Spacing / sizing for readability (increased sizes for lead-fall-box) */
.lead-fall-box .lead-box-title {
  font-size: 2.2rem;    /* increased from 1.9rem */
  font-weight: 700;
  line-height: 1.08;
}

.lead-fall-box .lead-box-subtitle {
  font-size: 1.4rem;    /* increased from 1.25rem */
  font-weight: 600;
}

.lead-fall-box .lead-box-text {
  font-size: 1.15rem;   /* increased from 1.05rem */
  line-height: 1.75;
  margin-bottom: 0.9em;
}

/* Keep the "Enter the Next Chapter" button sizing unchanged */
.lead-fall-box .btn {
  font-size: 1rem;      /* explicit size to avoid inheritance */
  margin-top: 12px;
}

/* Mini description under a recommended book item */
.books-list .books-mini-desc {
  margin: 6px 0 12px 0;
  font-size: 0.95em;
  color: #586069;
  font-style: italic;
  line-height: 1.5;
  padding-left: 6px;
}

/* Readability improvements for the Stay Faithful page */
.stay-page .page-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 18px;
  font-size: 1rem;
  color: #22303a;
}

/* Bigger, more relaxed paragraphs */
.stay-page p {
  margin-bottom: 1.9rem;   /* larger spacing between paragraphs */
  line-height: 1.9;        /* more breathing room for each paragraph */
  font-size: 1.05rem;
  hyphens: auto;
}

/* Distinct, dark-blue headings on this page only */
.stay-page h2 {
  color: #08306b;          /* dark blue */
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

/* Small intro / lead paragraph style (optional) */
.stay-page .lead {
  font-size: 1.12rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
  color: #2b3c48;
}

/* Soft section divider to create flow between sections */
.stay-page .section-divider {
  height: 1px;
  border: 0;
  margin: 28px 0;
  background: linear-gradient(90deg, rgba(8,48,107,0), rgba(8,48,107,0.12), rgba(8,48,107,0));
}

/* Small hover/entrance micro-interaction for headings */
.stay-page h2 {
  transition: transform .18s ease, color .18s ease;
}
.stay-page h2:hover { transform: translateY(-2px); }
/* smaller, gray inline notes used in lists */
.stay-bullets .muted {
  color: #6b7280;       /* neutral gray */
  font-size: 0.95em;    /* slightly smaller than body text */
  font-style: normal;
}

/* smaller, gray inline notes used in lists (higher specificity + override) */
.stay-page .stay-bullets .muted {
  color: #6b7280 !important;    /* neutral gray */
  font-size: 0.95em !important; /* slightly smaller than body text */
  font-weight: 400 !important;  /* ensure not bold */
  font-style: normal;
  line-height: 1.4;
}

/* small muted note used under list items on the Stay Faithful page */
.stay-page .stay-bullets .muted-note {
  display: block;                 /* forces it onto its own line under the list label */
  color: #6b7280 !important;      /* neutral gray */
  font-size: 0.9em !important;    /* slightly smaller than body text */
  font-weight: 400 !important;    /* override global bold */
  margin-top: 6px;
  line-height: 1.4;
}

/* Light-green quote box with dark-blue text */
.quote-light {
  background: #e6f8e6;        /* light green */
  color: #08306b;             /* dark blue text */
  border-radius: 10px;
  padding: 20px 24px;
  margin: 20px auto;
  max-width: 920px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.quote-light blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: inherit;
}
.quote-light cite {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(8,48,107,0.85);
  font-style: normal;
}
/* small screens */
@media (max-width: 600px) {
  .quote-light { padding: 16px; }
  .quote-light blockquote { font-size: 1rem; }
}
