/* ===========================
   Worship Guides Page (Mobile XL)
   =========================== */

.page-section {
  width: 100%;
  padding: 3rem 2rem;
  margin: 0 auto 3rem;
  box-sizing: border-box;
}

/* Header section with thin strip image */
.worship-guide-header {
  text-align: center;
}

.worship-guide-header .section-image {
  width: 100%;
  height: 120px;                /* thin strip height */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
}

.worship-guide-header .section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* crop most of the image */
  object-position: center;
  display: block;
}

.worship-guide-header .overlay-text {
  position: relative;           /* sits below the strip */
  background: rgba(255,255,255,0.95);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  max-width: 95%;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  font-size: 1.8rem;
  line-height: 2.3;
}

.worship-guide-header .overlay-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.worship-guide-header .overlay-text h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.worship-guide-header .overlay-text p {
  font-size: 1.8rem;
  line-height: 2.3;
  color: #333;
}

/* Content section */
.worship-guides-content {
  text-align: center;
}

.worship-guides-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.worship-guides-content h3 {
  font-size: 2rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.guide-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}

.guide-button {
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Available guide */
.guide-button.guide-available {
  background: var(--primary-green);
  color: #fff;
  border: none;
}
.guide-button.guide-available a {
  color: #fff;
  text-decoration: none;
  width: 100%;
}
.guide-button.guide-available:active {
  transform: scale(0.96);
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.25);
}

/* Unavailable guide */
.guide-button.guide-unavailable {
  background: #f5f5f5;
  border: 2px solid #ccc;
  color: #999;
  cursor: not-allowed;
}
.guide-button.guide-unavailable span {
  font-size: 1.6rem;
  color: #999;
}

/* Archive section */
.worship-guides-archive {
  text-align: center;
}

.worship-guides-archive h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.worship-guides-archive .archive-button {
  display: inline-block;
  width: 100%;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.worship-guides-archive .archive-button:active {
  transform: scale(0.96);
  box-shadow: inset 5px 5px 10px rgba(0,0,0,0.25);
  background: var(--primary-green);
  color: #fff;
}
