/*
 * YMCA of Greater Tulsa — play-project.css
 * Play Project Capital Campaign page
 */

/* ════════════════════════════════════════
   INTRO SECTION
════════════════════════════════════════ */
.pp-intro-section {
  background: #f8f8f6;
  border-bottom: 0.5px solid #ebebeb;
  padding: 52px var(--pad, 64px);
}
.pp-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.pp-intro-copy {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: #444;
  flex: 1;
  min-width: 280px;
  margin: 0;
}
.pp-intro-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 180px;
}

/* Buttons */
.pp-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.pp-btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.pp-btn-primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  color: #fff;
}
.pp-btn-secondary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.pp-btn-secondary:hover {
  background: #004f96;
  border-color: #004f96;
  color: #fff;
}
.pp-btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.pp-btn-ghost:hover {
  background: var(--blue);
  color: #fff;
}

/* ════════════════════════════════════════
   IMAGE SLIDER
════════════════════════════════════════ */
.pp-slider-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 64px 32px 14px 32px;
}
.pp-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid #e8e8e8;
  background: #f0f0ee;
}
.pp-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.pp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.pp-slide.active {
  opacity: 1;
}
.pp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pp-slide-caption {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

/* Slider controls — light bar to match page theme */
.pp-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  background: #f4f4f2;
  border-top: 0.5px solid #e8e8e8;
}
.pp-slider-prev,
.pp-slider-next {
  background: none;
  border: 1.5px solid #d0d0d0;
  border-radius: 50%;
  color: #888;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.15s,
    color 0.15s;
  flex-shrink: 0;
}
.pp-slider-prev:hover,
.pp-slider-next:hover {
  border-color: var(--green);
  color: var(--green);
}
.pp-dots {
  display: flex;
  gap: 8px;
}
.pp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.pp-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ════════════════════════════════════════
   CONTENT SECTIONS — all visible
════════════════════════════════════════ */
.pp-content {
  padding-bottom: 80px;
}

.pp-section {
  border-top: 0.5px solid #ebebeb;
}
.pp-section:first-child {
  border-top: none;
}

.pp-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 64px;
}

/* Section heading — matches section-band style */
.pp-section-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f4f4f2;
  border: 0.5px solid #ebebeb;
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 16px 26px;
  margin-bottom: 32px;
  position: relative;
}
.pp-section-heading::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--green);
  border-radius: 4px 0 0 4px;
}

/* Rich content */
.pp-rich-content {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: #444;
}
.pp-rich-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
}
.pp-rich-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 28px 0 12px;
}
.pp-rich-content p {
  margin-bottom: 18px;
}
.pp-rich-content p:last-child {
  margin-bottom: 0;
}
.pp-rich-content ul,
.pp-rich-content ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}
.pp-rich-content li {
  margin-bottom: 8px;
}
.pp-rich-content strong {
  font-weight: 600;
  color: #1a1a1a;
}
.pp-rich-content a {
  color: var(--blue);
  text-decoration: underline;
}
.pp-rich-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
  display: block;
}
.pp-rich-content blockquote {
  border-left: 4px solid var(--green);
  padding: 4px 0 4px 20px;
  font-style: italic;
  color: #555;
  margin: 24px 0;
}

.pp-empty {
  color: #aaa;
  font-style: italic;
  text-align: center;
  padding: 64px 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pp-slider-wrap {
    padding: 0 40px 48px;
  }
  .pp-section-inner {
    padding: 48px 40px;
  }
  .pp-intro-section {
    padding: 48px 40px;
  }
}
@media (max-width: 767px) {
  .pp-intro-section {
    padding: 40px 20px;
  }
  .pp-intro-inner {
    flex-direction: column;
    gap: 28px;
  }
  .pp-intro-btns {
    flex-direction: column;
    width: 100%;
  }
  .pp-btn {
    text-align: center;
    width: 100%;
  }
  .pp-slider-wrap {
    padding: 0 20px 40px;
  }
  .pp-slider-track {
    height: 240px;
  }
  .pp-section-inner {
    padding: 40px 20px;
  }
}
