/* ============================================================
   KRUGER TRAINING & COACHING
   styles.css — Mobile First
   ============================================================ */

/* ── Lokale Web-Fonts (DSGVO-konform, keine externe Anfrage) ─ */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/lato-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/lato-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-700-latin.woff2') format('woff2');
}

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Farben */
  --color-navy:       #06273A;
  --color-gold:       #D4C738;
  --color-gold-hover: rgba(212, 199, 56, 0.12);
  --color-white:      #ffffff;
  --color-text-dark:  #06273A;
  --color-text-light: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.85);

  /* Schrift */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  /* Spacing-Skala */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Schriftgrößen */
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  3rem;
  --fs-3xl:  4rem;

  /* Layout */
  --hero-col-left:  42%;
  --hero-col-right: 58%;
  --nav-btn-width:  310px;
  --content-max:    1200px;
  --text-max:       640px;

  /* Effekte */
  --transition-fast: 0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

/* ============================================================
   WIEDERVERWENDBARE KOMPONENTEN
   ============================================================ */

/* Section-Titel im Playfair-Stil (Gold) */
.section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* Button: Goldener Rahmen auf Navy */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-7);
  border: 1.5px solid var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  letter-spacing: 0.02em;
  transition: background-color var(--transition-fast);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--color-gold-hover);
  outline: none;
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */

#hero {
  background-color: var(--color-navy);
  min-height: 100svh;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.hero-left {
  padding: var(--space-7) var(--space-5);
  display: grid;
  place-items: center;
  gap: var(--space-4);
}

.hero-logo-link {
  display: inline-block;
}

.hero-logo {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.hero-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--nav-btn-width);
  max-width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 400;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.nav-btn:hover,
.nav-btn:focus-visible {
  background-color: var(--color-gold-hover);
  outline: none;
}

.nav-btn span {
  flex: 1;
}

.nav-chevron {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  margin-left: var(--space-3);
  color: var(--color-gold);
  opacity: 0.85;
}

.hero-right {
  width: 100%;
}

.hero-portrait {
  width: 100%;
  height: auto;
}

/* ============================================================
   SECTION 2: INFO (Kurztext)
   ============================================================ */

#info {
  background: var(--color-white);
  padding: var(--space-8) var(--space-5);
  display: grid;
  place-items: center;
}

.info-text {
  max-width: var(--text-max);
  text-align: center;
  font-size: var(--fs-md);
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* ============================================================
   SECTION 3 & 4: COACHING (Potenzial / Business)
   ============================================================ */

.coaching {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: var(--space-8) var(--space-5);
}

.coaching-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  gap: var(--space-7);
}

.coaching-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
}

.coaching-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.coaching-text {
  font-size: var(--fs-md);
  line-height: 1.7;
}

.coaching-text p {
  margin-bottom: var(--space-4);
}

.coaching-text strong {
  font-weight: 700;
}

.coaching-media video {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.coaching-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}

.coaching-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-5);
}

/* ============================================================
   SECTION 5: AKTUELLE SEMINARE (Split: Calendly + Titel)
   ============================================================ */

#aktuelle-seminare {
  background: var(--color-navy);
}

.seminare-inner {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.seminare-calendly {
  background: var(--color-white);
  padding: var(--space-6) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seminare-calendly iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

/* Calendly Placeholder (Two-Click-Solution) */
.calendly-placeholder {
  width: 100%;
  max-width: 520px;
  padding: var(--space-7) var(--space-5);
  border: 1.5px solid #d0d0d0;
  background: #f7f7f0;
  text-align: center;
  color: var(--color-text-dark);
  display: grid;
  gap: var(--space-4);
  justify-items: center;
}

.calendly-placeholder h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-navy);
}

.calendly-placeholder p {
  font-size: var(--fs-base);
  line-height: 1.6;
  max-width: 400px;
}

.calendly-placeholder .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  background: var(--color-navy);
  color: var(--color-white);
  border: 1.5px solid var(--color-navy);
  font-size: var(--fs-base);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.calendly-placeholder .btn-primary:hover,
.calendly-placeholder .btn-primary:focus-visible {
  background: #0a3552;
  outline: none;
}

.calendly-placeholder small {
  font-size: var(--fs-sm);
  color: #666;
  max-width: 400px;
}

.seminare-title-wrap {
  padding: var(--space-8) var(--space-5) var(--space-7);
  display: grid;
  place-items: start center;
  background: var(--color-navy);
}

.seminare-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  font-weight: 400;
  text-align: center;
  line-height: 1.1;
}

/* ============================================================
   SECTION 6: PODCAST
   ============================================================ */

#podcast {
  background: var(--color-navy);
  padding: var(--space-8) var(--space-5);
  display: grid;
  place-items: center;
}

.podcast-player {
  width: 100%;
  max-width: 720px;
  padding: var(--space-5);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(0, 0, 0, 0.15);
}

.podcast-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-navy);
}

.podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  min-width: 0;
}

.podcast-label {
  font-size: var(--fs-base);
  color: var(--color-white);
}

.podcast-label strong {
  font-weight: 700;
}

.podcast-audio {
  width: 100%;
  height: 36px;
}

/* ============================================================
   SECTION 7: ÜBER MICH (Split: Title + Text)
   ============================================================ */

#ueber-mich {
  background: var(--color-white);
}

.ueber-inner {
  display: flex;
  flex-direction: column;
}

.ueber-title-wrap {
  background: var(--color-navy);
  padding: var(--space-8) var(--space-5) var(--space-7);
  display: grid;
  place-items: start center;
}

.ueber-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  font-weight: 400;
  line-height: 1.1;
}

.ueber-text-wrap {
  background: var(--color-white);
  padding: var(--space-7) var(--space-5);
}

.ueber-text {
  max-width: var(--text-max);
  margin: 0 auto;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--color-text-dark);
}

.ueber-text p {
  margin-bottom: var(--space-4);
}

/* ============================================================
   SECTION-DIVIDER (leerer Navy-Streifen)
   ============================================================ */

.section-divider {
  background: var(--color-navy);
  min-height: 3rem;
}

/* ============================================================
   SECTION 8: KONTAKT + FOOTER (Split: Form + Info)
   ============================================================ */

#kontakt {
  background: var(--color-navy);
}

.kontakt-inner {
  display: flex;
  flex-direction: column;
}

.kontakt-form-wrap {
  background: var(--color-white);
  padding: var(--space-7) var(--space-5);
}

.kontakt-form-inner {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-5);
}

.kontakt-form-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-text-dark);
}

.kontakt-form-intro {
  font-size: var(--fs-md);
  color: var(--color-text-dark);
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field label {
  font-size: var(--fs-sm);
  color: var(--color-text-dark);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  padding: var(--space-3);
  border: 1px solid #ccc;
  background: #fafaf3;
  color: var(--color-text-dark);
  width: 100%;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-navy);
  outline-offset: -1px;
}

.form-submit {
  display: block;
  width: 100%;
  padding: var(--space-4);
  background: var(--color-navy);
  color: var(--color-white);
  font-size: var(--fs-base);
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.form-submit:hover,
.form-submit:focus-visible {
  background: #0a3552;
  outline: none;
}

.form-status {
  font-size: var(--fs-sm);
  min-height: 1.5em;
}

.form-status[data-state="success"] {
  color: #1a7a3b;
}

.form-status[data-state="error"] {
  color: #c63030;
}

.kontakt-info-wrap {
  background: var(--color-navy);
  color: var(--color-text-light);
  padding: var(--space-7) var(--space-5);
  position: relative;
  display: grid;
  place-items: center;
}

.kontakt-info {
  max-width: 420px;
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.kontakt-title {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: var(--fs-2xl);
  font-weight: 400;
  line-height: 1.1;
}

.kontakt-name {
  font-size: var(--fs-md);
  font-weight: 700;
}

.kontakt-rolle {
  font-size: var(--fs-base);
  color: var(--color-text-muted);
}

.kontakt-block {
  font-size: var(--fs-md);
  line-height: 1.7;
}

.kontakt-block a {
  text-decoration: none;
}

.kontakt-legal {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.kontakt-legal a {
  font-size: var(--fs-base);
}

.kontakt-legal a:hover {
  color: var(--color-gold);
}

.kontakt-logo-bg {
  display: none;
}

/* ============================================================
   IMPRESSUM & DATENSCHUTZ (separate Seiten)
   ============================================================ */

.legal-page {
  background: var(--color-white);
  min-height: 100vh;
  padding: var(--space-7) var(--space-5);
}

.legal-content {
  max-width: var(--text-max);
  margin: 0 auto;
  color: var(--color-text-dark);
}

.legal-back {
  display: inline-block;
  margin-bottom: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-navy);
}

.legal-back:hover {
  color: var(--color-gold);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--color-navy);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-navy);
}

.legal-content p,
.legal-content ul {
  font-size: var(--fs-md);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.legal-content ul {
  padding-left: var(--space-5);
}

.legal-content a {
  text-decoration: underline;
  color: var(--color-navy);
}

/* ============================================================
   DESKTOP  ≥ 768px
   ============================================================ */
@media (min-width: 768px) {

  /* ── Hero ─────────────────────────────────────────────────── */
  .hero-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-left {
    width: var(--hero-col-left);
    padding: var(--space-8) var(--space-6);
  }

  .hero-logo {
    max-width: 450px;
  }

  .hero-right {
    width: var(--hero-col-right);
    overflow: hidden;
  }

  .hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  /* ── Info ─────────────────────────────────────────────────── */
  #info {
    padding: var(--space-9) var(--space-6);
  }

  .info-text {
    font-size: var(--fs-lg);
  }

  /* ── Coaching (Section 3 + 4) ─────────────────────────────── */
  .coaching {
    padding: var(--space-9) var(--space-6);
  }

  .coaching-grid,
  .coaching-footer {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  /* ── Seminare (Section 5) ─────────────────────────────────── */
  .seminare-inner {
    flex-direction: row;
  }

  .seminare-calendly {
    width: 60%;
    padding: var(--space-6);
  }

  .seminare-title-wrap {
    width: 40%;
    padding: var(--space-8);
  }

  .seminare-title {
    font-size: var(--fs-3xl);
  }

  /* ── Podcast (Section 6) ──────────────────────────────────── */
  #podcast {
    padding: var(--space-9) var(--space-6);
  }

  .podcast-player {
    padding: var(--space-5) var(--space-6);
  }

  /* ── Über mich (Section 7) ────────────────────────────────── */
  .ueber-inner {
    flex-direction: row;
  }

  .ueber-title-wrap {
    width: 38%;
    padding: var(--space-9) var(--space-6);
  }

  .ueber-title {
    font-size: var(--fs-3xl);
  }

  .ueber-text-wrap {
    width: 62%;
    padding: var(--space-9) var(--space-7);
  }

  /* ── Kontakt + Footer (Section 8) ─────────────────────────── */
  .kontakt-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .kontakt-form-wrap {
    width: 62%;
    padding: var(--space-9) var(--space-7);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kontakt-form-inner {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .kontakt-info-wrap {
    width: 38%;
    padding: var(--space-9) var(--space-6);
    overflow: hidden;
    place-items: start center;
  }

  .kontakt-logo-bg {
    display: block;
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 280px;
    opacity: 0.12;
    pointer-events: none;
  }

  /* ── Rechtsseiten ─────────────────────────────────────────── */
  .legal-page {
    padding: var(--space-9) var(--space-6);
  }

  /* ── Section-Divider ──────────────────────────────────────── */
  .section-divider {
    min-height: 6rem;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1000;
  background: var(--color-navy);
  color: var(--color-white);
  border-top: 2px solid var(--color-gold);
  padding: var(--space-5);
  display: none;
}

.cookie-banner[data-visible="true"] {
  display: block;
}

.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
}

.cookie-banner h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-gold);
}

.cookie-banner p {
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--color-text-light);
}

.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--color-gold);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.cookie-btn {
  flex: 1 1 auto;
  min-width: 180px;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border: 1.5px solid var(--color-gold);
  background: transparent;
  color: var(--color-white);
}

.cookie-btn:hover,
.cookie-btn:focus-visible {
  background: var(--color-gold-hover);
  outline: none;
}

.cookie-btn--primary {
  background: var(--color-gold);
  color: var(--color-navy);
  font-weight: 700;
}

.cookie-btn--primary:hover,
.cookie-btn--primary:focus-visible {
  background: #e8da3f;
  color: var(--color-navy);
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-6);
  }

  .cookie-actions {
    flex-direction: column;
    min-width: 220px;
  }

  .cookie-btn {
    width: 100%;
    flex: 0 0 auto;
  }
}

