@charset "utf-8";
/* =========================================================
   HERO – STORY BAND STYLE (Matches coach-t.css)
   ========================================================= */

/* -----------------------------------------
   Design Tokens
   ----------------------------------------- */
:root {
  --hero-overlay-bg: rgba(0, 0, 0, 0.65);
  --hover-overlay-bg: rgba(0, 0, 0, 0.85);
  --star-color: #f5c518;
  --text-light: #ffffff;

  --transition-fast: 0.25s ease;
}

/* -----------------------------------------
   Hero Parallax
   ----------------------------------------- */
.hero-parallax {
  position: relative;
  background-image: url("../img/summer-intensive-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
}

/* Overlay (visual only, non-interactive) */
.hero-parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-bg);
  pointer-events: none;
  z-index: 0;
}

/* Content stacking above overlay */
.hero-parallax .container {
  position: relative;
  z-index: 1;
}

/* Desktop-only parallax */
@media (min-width: 1024px) {
  .hero-parallax {
    background-attachment: fixed;
  }
}

/* -----------------------------------------
   Testimonials
   ----------------------------------------- */

/* Star rating */
.testimonial-stars {
  color: var(--star-color);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

/* Card container */
.testimonial-card {
  position: relative;
  overflow: hidden;
}

/* Hover / focus overlay */
.testimonial-hover {
  position: absolute;
  inset: 0;
  background: var(--hover-overlay-bg);
  color: var(--text-light);
  padding: 1rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;

  opacity: 0;
  transform: translateY(6px);

  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

/* Reveal on hover AND keyboard focus */
.testimonial-card:hover .testimonial-hover,
.testimonial-card:focus-within .testimonial-hover {
  opacity: 1;
  transform: translateY(0);
}

/* Improve keyboard visibility */
.testimonial-card:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* -----------------------------------------
   Reduced Motion Support
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .testimonial-hover {
    transition: none;
    transform: none;
  }
}

/* -----------------------------------------
   Session Info List
   ----------------------------------------- */
.session-li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Main text column */
.session-li span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

/* Checkmark icon */
.session-li .li-check {
  flex: 0 0 auto;
  font-weight: 800;
  visibility: hidden;
}

/* Completed state */
.session-li.is-done .li-check {
  visibility: visible;
}