/* ============================================================
   Zimmernummer 8 – gemeinsames Stylesheet für alle Seiten
   ============================================================ */

:root {
  --bg: #e9e4d8;
  --bg-alt: #f2efe6;
  --text: #2c2a26;
  --text-muted: #6b675f;
  --accent: #3b4a68;
  --accent-deep: #232b3a;
  --accent-light: #5b6f96;
  --gold: #c9a227;
  --gold-light: #e8c874;
  --divider: #fdfbf3;
  --radius: 18px;
  --shadow-raised: 8px 8px 16px rgba(0,0,0,0.12), -8px -8px 16px rgba(255,255,255,0.6);
  --shadow-pressed: inset 4px 4px 8px rgba(0,0,0,0.12), inset -4px -4px 8px rgba(255,255,255,0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { color: var(--accent); margin: 0 0 12px; font-weight: 700; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

.text-gradient {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  box-shadow: var(--shadow-raised);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-link { text-decoration: none; }
.logo {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-deep);
}
.logo span { color: var(--accent); }
nav { display: flex; align-items: center; gap: 24px; }
nav a { font-weight: 400; color: var(--text-muted); }
nav a:hover { color: var(--accent); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--accent-deep) !important;
  box-shadow: var(--shadow-raised);
  font-weight: 700;
}
.nav-cta:hover { box-shadow: var(--shadow-pressed); color: var(--accent-deep) !important; }
.nav-cta:hover span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 60px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; margin-bottom: 20px; }
.hero p { max-width: 640px; margin: 0 auto 32px; color: var(--text-muted); font-size: 1.05rem; }

.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  background: var(--bg);
  color: var(--accent-deep) !important;
  box-shadow: var(--shadow-raised);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-pressed); }
.btn-primary { background: var(--bg); color: var(--accent-deep) !important; box-shadow: var(--shadow-raised); }
.btn-primary:hover { box-shadow: var(--shadow-pressed); }
.btn-outline { background: var(--bg); color: var(--accent-deep) !important; box-shadow: var(--shadow-raised); }
.btn-outline:hover { box-shadow: var(--shadow-pressed); }

/* ---------- Section layout ---------- */
section { padding: 70px 0; }
.divider-line {
  width: 50%;
  max-width: 480px;
  height: 1px;
  margin: 0 auto;
  background: var(--divider);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p { margin: 0 0 16px; color: var(--text-muted); }
.hosts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.host-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-raised);
}
.host-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
  box-shadow: var(--shadow-raised);
}
.host-card h4 { margin-bottom: 6px; }
.host-card p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Episodes ---------- */
.episode-list { display: flex; flex-direction: column; gap: 18px; }
.episode {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 20px;
  align-items: start;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-raised);
}
.ep-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-deep);
}
.ep-title { font-weight: 700; margin-bottom: 4px; }
.ep-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.ep-desc { color: var(--text-muted); font-size: 0.95rem; }
.ep-desc.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ep-toggle {
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}
.ep-toggle:hover { color: var(--accent-light); text-decoration: underline; }
.ep-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  box-shadow: var(--shadow-raised);
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.ep-play:hover { box-shadow: var(--shadow-pressed); }

/* ---------- Platforms ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}
.platform-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 26px 16px;
  box-shadow: var(--shadow-raised);
  color: var(--text) !important;
  font-weight: 700;
  text-align: center;
}
.platform-card:hover { box-shadow: var(--shadow-pressed); }
.platform-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-deep));
  color: #fff;
  font-size: 1.4rem;
}

/* ---------- Forms (contact + application) ---------- */
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; }
.form-group label .required { color: #a1352b; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: var(--bg);
  box-shadow: var(--shadow-pressed);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: 2px solid var(--accent-light); }
.form-hint { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }
.form-required-note { font-size: 0.82rem; color: var(--text-muted); margin: -6px 0 18px; text-align: left; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 0.88rem; color: var(--text-muted); }
.checkbox-row input { margin-top: 3px; }

.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-raised);
  font-size: 0.95rem;
}
.form-success { color: #2f6d3d; }
.form-error { color: #a1352b; }
.form-success i, .form-error i { font-size: 1.3rem; }
[hidden] { display: none !important; }

/* ---------- Application page specific ---------- */
.application-form { max-width: 640px; margin: 0 auto; }
.file-drop {
  border: 2px dashed var(--accent-light);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
.file-drop.dragover { box-shadow: var(--shadow-pressed); }
.file-drop i { font-size: 1.6rem; margin-bottom: 10px; display: block; color: var(--accent); }
.file-drop-list { margin-top: 12px; font-size: 0.85rem; text-align: left; }

.info-note {
  max-width: 640px;
  margin: 0 auto 32px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-raised);
  text-align: left;
}
.info-note p { margin: 0 0 10px; color: var(--text-muted); font-size: 0.92rem; }
.info-note p:last-child { margin-bottom: 0; }
.info-note i { color: var(--accent); margin-right: 8px; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 0 90px; }
.legal-content h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 28px; }
.legal-content h2 { font-size: 1.2rem; margin-top: 36px; margin-bottom: 10px; }
.legal-content p, .legal-content li { color: var(--text-muted); }
.legal-content ul { padding-left: 20px; }
.confidential-note {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-raised);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 30px;
}

/* ---------- Disclaimer / Footer ---------- */
.disclaimer { font-size: 0.78rem; color: var(--text-muted); max-width: 640px; margin: 16px auto 0; }
footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 40px 0;
  text-align: center;
}
footer a { color: var(--accent); }
footer a:hover { color: var(--accent-light); }
footer .disclaimer { color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 780px) {
  nav { gap: 14px; }
  nav a:not(.nav-cta) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .hosts { grid-template-columns: 1fr 1fr; }
  .episode { grid-template-columns: 36px 1fr 40px; gap: 14px; padding: 18px; }
}
