/* ==========================================================================
   Probetraining & Trainingszeiten (pages/probetraining.php) Styles
   SV Fortuna Schneidlingen 1919 e.V.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Probetraining Hero & Eyebrow Badges
   -------------------------------------------------------------------------- */
.trial-hero {
  background: var(--theme-bg-hero);
  color: #ffffff;
  padding: 7.5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-hero h1 {
  font-family: "Bangers", cursive;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.trial-hero p {
  font-size: 1.15rem;
  max-width: 780px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.trial-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.trial-badge-item {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trial-badge-item i {
  color: #34d399;
}

.section-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.section-headline {
  font-family: "Bangers", cursive;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  letter-spacing: 1.5px;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.section-intro-text {
  color: var(--theme-text-muted);
  font-size: 1.08rem;
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   2. 3-Schritte Ablauf (Steps Grid)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0 4rem;
}

.step-card {
  background: var(--theme-bg-surface);
  border-radius: var(--theme-card-radius);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--theme-card-shadow);
  border: 1px solid var(--theme-border-card);
  position: relative;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #3D2F86 0%, #20174e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.3rem;
  box-shadow: 0 6px 16px rgba(61, 47, 134, 0.35);
}

.step-card h3 {
  color: var(--theme-text-main);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.step-card p {
  color: var(--theme-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. Schedule Grid & Training Cards
   -------------------------------------------------------------------------- */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.schedule-card {
  background: var(--theme-bg-surface);
  border-radius: var(--theme-card-radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--theme-card-shadow);
  border: 1px solid var(--theme-border-card);
  border-top: 6px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.11);
}

.schedule-card.schedule-card-senior {
  border-top-color: #1e1b4b;
}

.schedule-card.schedule-card-fitness {
  border-top-color: #10b981;
}

.schedule-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--theme-border-divider);
}

.schedule-team-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--theme-text-main);
  margin: 0 0 0.2rem 0;
}

.schedule-team-subtitle {
  font-size: 0.88rem;
  color: var(--theme-text-muted);
  font-weight: 600;
}

.schedule-badge {
  background: var(--theme-badge-bg);
  color: var(--theme-badge-text);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.schedule-badge-senior {
  background: #f1f5f9;
  color: #1e1b4b;
}

.schedule-badge-fitness {
  background: #ecfdf5;
  color: #059669;
}

.schedule-details {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.schedule-detail-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.schedule-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--theme-icon-box-bg);
  color: var(--theme-icon-box-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.schedule-detail-text {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
}

.schedule-detail-text strong {
  color: var(--theme-text-main);
  font-weight: 700;
}

.schedule-detail-text span {
  color: var(--theme-text-muted);
  font-size: 0.88rem;
}

.btn-schedule-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.8rem;
  padding: 0.75rem 1.4rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background: var(--theme-bg-surface);
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  transition: all 0.25s ease;
}

.btn-schedule-contact:hover {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(61, 47, 134, 0.28);
}

.btn-schedule-contact i {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.btn-schedule-contact:hover i {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   4. Ausrüstungs-Checkliste
   -------------------------------------------------------------------------- */
.checklist-box {
  background: var(--theme-bg-surface);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--theme-card-shadow);
  border: 1px solid var(--theme-border-card);
  margin: 4.5rem 0 3.5rem;
}

.checklist-heading {
  font-family: "Bangers", cursive;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
}

.checklist-intro {
  color: var(--theme-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 800px;
  line-height: 1.6;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.checklist-card-item {
  background: var(--theme-bg-surface-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--theme-border-card);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  transition: transform 0.2s ease;
}

.checklist-card-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.checklist-card-item:hover {
  transform: translateY(-3px);
}

.checklist-icon {
  width: 44px;
  height: 44px;
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.checklist-card-item strong {
  display: block;
  color: var(--theme-text-main);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.checklist-card-item span {
  color: var(--theme-text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   5. Probetraining Form & Responsive Styles
   -------------------------------------------------------------------------- */
.probetraining-form-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 2px solid rgba(61, 47, 134, 0.15);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 45px rgba(61, 47, 134, 0.09);
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .checklist-box {
    padding: 2rem 1.25rem;
  }
  .probetraining-form-card {
    padding: 2rem 1.25rem;
  }
}
