/* ============================================================
   CAMPS, Page-Specific Styles
   Inherits everything from future-technologies.css so hero,
   pilot-cards, cost-rows, ftc-signup, faq, intent-toggle
   etc. all match the club page exactly.
   ============================================================ */

@import url('future-technologies.css');


/* ============================================================
   PROGRAMM — one tile per camp day with mini-timeline
   ============================================================ */
.program-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.program-section .overline { color: var(--cobalt); }
.program-section .overline::before { background: var(--cobalt); }
.program-section .section-heading {
  text-align: left;
  margin: 0.6rem 0 1rem;
  max-width: 28ch;
}
.program-lead {
  text-align: left;
  max-width: 70ch;
  margin: 0 0 2.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Stacked vertically — each day = one full-width row, aligned to the
   container left edge so it lines up with the overline/heading above. */
.program-grid {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

/* Tile = horizontal layout: head left, timeline right with 4 columns. */
.program-day {
  background: #fff;
  border: 1px solid var(--rule, #e5e7eb);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.program-day::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--cobalt, #2563eb);
  opacity: 0.9;
}
.program-day:hover {
  transform: translateY(-1px);
  border-color: rgba(37,99,235,0.35);
  box-shadow: 0 14px 32px -18px rgba(15,23,42,0.18);
}

.program-day-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-right: 1.5rem;
  border-right: 1px dashed var(--rule, #e5e7eb);
}
.program-day-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cobalt);
}
.program-day-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.program-day-desc {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

.program-day-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
  align-self: center;
}
.program-day-timeline li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 0.9rem;
  position: relative;
}
.program-day-timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  background: var(--cobalt, #2563eb);
  border-radius: 50%;
  opacity: 0.75;
}
.program-time {
  font-family: 'Space Grotesk', monospace;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.program-step {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
}

/* Friday tile = showcase, brighter accent */
.program-day.program-day-final {
  background: linear-gradient(135deg, var(--cobalt-pale, #EEF2FF) 0%, #fff 60%);
  border-color: rgba(37,99,235,0.25);
}
.program-day.program-day-final::before {
  background: linear-gradient(180deg, var(--cobalt, #2563eb), var(--lime, #84cc16));
  width: 5px;
}
.program-day.program-day-final .program-day-timeline li::before {
  background: var(--lime, #84cc16);
  opacity: 1;
}
.program-time.program-time-highlight {
  color: var(--lime, #84cc16);
  font-weight: 600;
}

/* Tablet — head stays left but narrows; timeline goes 2×2. */
@media (max-width: 980px) {
  .program-day {
    grid-template-columns: minmax(180px, 220px) 1fr;
    gap: 1.5rem;
    padding: 1.3rem 1.4rem;
  }
  .program-day-head { padding-right: 1.1rem; }
  .program-day-title { font-size: 1.35rem; }
  .program-day-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
  }
}

/* Mobile — stack head on top of timeline. */
@media (max-width: 680px) {
  .program-day {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.2rem 1.25rem 1.3rem;
  }
  .program-day-head {
    padding-right: 0;
    padding-bottom: 0.95rem;
    border-right: none;
    border-bottom: 1px dashed var(--rule, #e5e7eb);
  }
  .program-day-title { font-size: 1.3rem; }
  .program-day-timeline { gap: 0.85rem 1.25rem; }
}
@media (max-width: 440px) {
  .program-day-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   "Was dein Kind mitbringt" wide card
   The shared .pilot-card-wide CSS in future-technologies.css
   switches to a 3-col inline grid at ≥1220px (intended for the
   schnupper card). For the bring card we want title + intro
   stacked on top, then the 4 item tiles in a row below — at all
   sizes. This override re-asserts block layout.
   ============================================================ */
.pilot-card-bring {
  display: block;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.pilot-card-bring .pilot-card-head {
  margin-bottom: 0.9rem;
}
@media (min-width: 1220px) {
  .pilot-card-bring {
    display: block;
    grid-template-columns: none;
    align-items: stretch;
    column-gap: 0;
  }
  .pilot-card-bring .pilot-card-head { margin-bottom: 0.9rem; }
}
/* Specificity matters: future-technologies.css @ ≥980px sets
   `.pilot-card > :nth-last-child(2) { margin-bottom: auto; }` to push
   the CTA button to the bottom of side cards. In the bring card the
   2nd-to-last child IS .bring-lead, so we have to out-specify that
   rule (0,2,0) — hence the .pilot-card-bring > .bring-lead selector. */
.pilot-card-bring > .bring-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 2rem;
  max-width: 62ch;
}
.bring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .bring-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .bring-grid { grid-template-columns: 1fr; }
}
.bring-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.25rem 1.3rem;
  background: var(--cobalt-pale, #EEF2FF);
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,0.08);
}
.bring-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}
.bring-item span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}


/* ============================================================
   Notify checkboxes (re-use form-checkbox styling, just lay out)
   ============================================================ */
.notify-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
@media (max-width: 520px) {
  .notify-checkboxes { grid-template-columns: 1fr; }
}
