/* ============================================================
   LSV Schöngleina – Kinder & Jugendsport
   CSS für CMS-Einbindung
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ── Reset & Base ── */
.kiju-page *,
.kiju-page *::before,
.kiju-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.kiju-page {
  font-family: 'Montserrat', sans-serif;
  color: #1c1c2e;
  line-height: 1.5;
  --navy:   #006cb7;
  --gold:   #ffee00;
  --white:  #ffffff;
  --light:  #f2f5fc;
  --muted:  #56607a;
  --border: #dde3f0;
}

/* ============================================================
   1. HERO
   ============================================================ */
.kiju-hero {
  background: var(--navy);
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 300px;
  position: relative;
  overflow: visible;
}

.kiju-hero__left {
  padding: 28px 20px 48px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 2;
  overflow: visible;
  min-width: 0;
}

.kiju-hero__toprow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.kiju-hero__logo {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  overflow: hidden;
  padding: 3px;
}

.kiju-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  display: block;
}

.kiju-hero__clubname {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.kiju-hero__title {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.kiju-hero__title em {
  color: var(--gold);
  font-style: normal;
}

.kiju-hero__tagline {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 14px;
}

.kiju-hero__sub {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.kiju-hero__photo {
  position: relative;
  overflow: hidden;
  background: #005a9e;
}

/* gold bar spans full width at bottom */
.kiju-hero__goldbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
  z-index: 5;
  grid-column: 1 / -1;
}

.kiju-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* diagonal cut on left edge of photo */
.kiju-hero__photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}

/* gold bar bottom */
.kiju-hero__goldbar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
  z-index: 5;
}

/* placeholder when no image */
.kiju-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  background: #005a9e;
}

.kiju-photo-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: 0.4;
}

.kiju-photo-placeholder span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   2. BADGES BAR
   ============================================================ */
.kiju-badges {
  background: var(--navy);
  padding: 0 28px 26px;
}

.kiju-badges__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  gap: 0;
}

.kiju-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.1);
  gap: 5px;
}

.kiju-badge:last-child {
  border-right: none;
}

.kiju-badge__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  flex-shrink: 0;
}

.kiju-badge__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-badge__title {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.kiju-badge__desc {
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  font-weight: 500;
}

/* ============================================================
   3. SECTION SHARED
   ============================================================ */
.kiju-section {
  padding: 44px 28px;
}

.kiju-section--light {
  background: var(--light);
}

.kiju-section--white {
  background: var(--white);
}

.kiju-section__title {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.kiju-section__title::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 8px auto 0;
}

/* ============================================================
   4. EXPECT CARDS
   ============================================================ */
.kiju-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.kiju-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,108,183,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}

.kiju-card:hover {
  box-shadow: 0 6px 24px rgba(0,108,183,0.12);
  transform: translateY(-3px);
}

.kiju-card__icon {
  width: 52px;
  height: 52px;
  background: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.kiju-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-card__title {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.8px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.kiju-card__desc {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================================
   5. WHY SECTION
   ============================================================ */
.kiju-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.kiju-why__heading {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 16px;
  position: relative;
}

.kiju-why__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.kiju-why__body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 500;
  margin-bottom: 12px;
}

.kiju-why__body p:last-child {
  margin-bottom: 0;
}

.kiju-why__photo {
  border-radius: 14px;
  overflow: hidden;
  background: #bdd8f0;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kiju-why__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   6. CONTACT STRIP
   ============================================================ */
.kiju-contact-strip {
  background: var(--navy);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.kiju-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.kiju-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.kiju-contact-item:hover {
  color: var(--gold);
}

/* ============================================================
   7. TRAINING SECTION
   ============================================================ */
.kiju-training {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kiju-training__col-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kiju-tbox {
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.kiju-tbox__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.kiju-tbox__head svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.kiju-tbox__head--navy {
  background: var(--navy);
  color: var(--white);
}

.kiju-tbox__head--navy svg {
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-tbox__head--gold {
  background: var(--gold);
  color: var(--navy);
}

.kiju-tbox__head--gold svg {
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-tbox__body {
  background: var(--light);
  padding: 16px;
}

.kiju-tbox__day {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 9px;
}

.kiju-tslot {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 9px;
  padding: 9px 13px;
  margin-bottom: 7px;
  border-left: 4px solid var(--gold);
}

.kiju-tslot:last-child {
  margin-bottom: 0;
}

.kiju-tslot__time {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  min-width: 108px;
}

.kiju-tslot__group {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
}

.kiju-tloc {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 9px;
  padding: 9px 13px;
  margin-bottom: 7px;
}

.kiju-tloc:last-child {
  margin-bottom: 0;
}

.kiju-tloc__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.kiju-tloc__icon--sun  { background: #fff6cc; }
.kiju-tloc__icon--snow { background: #dce8ff; }

.kiju-tloc__season {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 2px;
}

.kiju-tloc__name {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* photos right column */
.kiju-training__col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kiju-tphoto {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #bdd8f0;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kiju-tphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   8. TRAINERS
   ============================================================ */
.kiju-trainers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kiju-trainer-group {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.kiju-trainer-group__head {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
}

.kiju-trainer-group__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kiju-trainer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kiju-trainer__avatar {
  width: 34px;
  height: 34px;
  background: #e6f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kiju-trainer__avatar svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-trainer__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.kiju-trainer__role {
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   9. CTA
   ============================================================ */
.kiju-cta {
  background: #e6f2ff;
  padding: 40px 28px;
  text-align: center;
}

.kiju-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.kiju-cta__deco {
  font-size: 64px;
  flex-shrink: 0;
  line-height: 1;
}

.kiju-cta__body { flex: 1; }

.kiju-cta__title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 12px;
}

.kiju-cta__text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 22px;
}

.kiju-cta__text strong {
  color: var(--navy);
  font-weight: 700;
}

.kiju-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.kiju-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.kiju-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.kiju-btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,108,183,0.22);
}

.kiju-btn--navy svg {
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,108,183,0.3);
}

.kiju-btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255,238,0,0.3);
}

.kiju-btn--gold svg {
  stroke: var(--navy);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kiju-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,238,0,0.45);
}

/* ============================================================
   10. RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .kiju-hero {
    grid-template-columns: 1fr;
  }

  .kiju-hero__photo {
    height: 220px;
  }

  .kiju-hero__photo::before {
    display: none;
  }

  .kiju-hero__title {
    font-size: 38px;
  }

  .kiju-badges__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 0;
  }

  .kiju-badge:nth-child(3) { border-right: none; }
  .kiju-badge:nth-child(4),
  .kiju-badge:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px; }

  .kiju-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .kiju-why {
    grid-template-columns: 1fr;
  }

  .kiju-why__photo {
    order: -1;
  }

  .kiju-training {
    grid-template-columns: 1fr;
  }

  .kiju-training__col-right {
    flex-direction: row;
  }

  .kiju-trainers {
    grid-template-columns: 1fr;
  }

  .kiju-cta__inner {
    flex-direction: column;
  }

  .kiju-cta__deco {
    display: none;
  }
}

@media (max-width: 480px) {
  .kiju-section {
    padding: 32px 16px;
  }

  .kiju-badges {
    padding: 0 16px 20px;
  }

  .kiju-hero__left {
    padding: 24px 20px 36px;
  }

  .kiju-cards {
    grid-template-columns: 1fr;
  }

  .kiju-badges__inner {
    grid-template-columns: 1fr 1fr;
  }

  .kiju-badge:nth-child(2) { border-right: none; }
  .kiju-badge:nth-child(3),
  .kiju-badge:nth-child(4),
  .kiju-badge:nth-child(5) {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .kiju-badge:nth-child(4) { border-right: none; }
}
