/*
 * Seelische Seilschaft – Custom CSS für WordPress/Elementor
 * Einbinden via: Elementor > Site Settings > Custom CSS
 * ODER: Darstellung > Zusätzliches CSS
 * ODER: Als separate Datei via wp_enqueue_style() in functions.php
 */

/* Google Fonts: Work Sans + Noto Serif
 * DSGVO-Hinweis: Laden Sie diese Schriften lokal!
 * Empfehlung: Plugin "OMGF | Host Google Fonts Locally" installieren
 * Das Plugin lädt Fonts automatisch herunter und bindet sie lokal ein.
 */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Noto+Serif:ital,wght@0,300;0,400;1,300;1,400&display=swap");

:root {
    --bg: #F0F0F0;
    --bg-card: #FFFFFF;
    --forest: #4A773C;
    --stone: #42464B;
    --moss: #55B046;
    --accent: #4A773C;
    --light-moss: #E8F2E6;
    --warn-bg: #FDF6EE;
    --text: #42464B;
    --muted: #6B7280;
    --border: #D8D8D8;
    --serif: 'Noto Serif', Georgia, serif;
    --body: 'Work Sans', system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 241, 235, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }

  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-brand {
    font-family: var(--body);
    font-size: 18px;
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--stone);
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--forest); }

  .nav-cta {
    background: var(--forest);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px !important;
    font-weight: 500;
  }

  .nav-cta:hover { background: var(--moss); color: white !important; }

  /* HERO */
  .seil-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2E5A22;
  }

  .seil-hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.8;
  }

  .seil-hero-texture {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  }

  .seil-hero-lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
  }

  .seil-hero-content {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: center;
  }

  .seil-hero-left {}

  .seil-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 24px;
    font-family: var(--body);
    font-weight: 400;
  }

  .seil-hero h1 {
    font-family: var(--body);
    font-size: clamp(42px, 5vw, 68px);
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  .seil-hero h1 em {
    font-family: var(--serif);
    font-style: italic;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
  }

  .seil-hero h2 {
    font-family: var(--body);
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .seil-hero-lead {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
  }

  .seil-hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-block;
    background: #FFFFFF;
    color: var(--forest);
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s;
  }

  .btn-primary:hover { background: var(--light-moss); color: var(--forest); transform: translateY(-1px); }

  .seil-hero-micro {
    font-size: 13px;
    color: rgba(255,255,255,0.95);
    font-style: italic;
  }

  .seil-hero-card {
    background: var(--forest);
    border: 2px solid var(--moss);
    border-radius: 4px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  }

  .seil-hero-card-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    font-family: var(--body);
    font-weight: 500;
  }

  .seil-hero-date {
    font-family: var(--body);
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
  }

  .seil-hero-time {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 20px;
  }

  .seil-hero-seats {
    display: inline-block;
    background: var(--moss);
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
  }

  .seil-hero-trust {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
  }

  /* SECTIONS */
  section { padding: 88px 0; }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 16px;
    font-family: var(--body);
  }

  h2.section-title {
    font-family: var(--body);
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--forest);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
  }

  /* RESONANZ */
  .resonanz { background: var(--bg-card); }

  .resonanz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
  }

  .resonanz-card {
    background: var(--bg);
    padding: 40px 32px;
    position: relative;
  }

  .resonanz-card::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--moss);
    margin-bottom: 24px;
  }

  .resonanz-card h3 {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--forest);
    margin-bottom: 16px;
    font-weight: 400;
    font-style: italic;
  }

  .resonanz-card p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.8;
    font-family: var(--body);
  }

  /* EINORDNUNG */
  .einordnung {
    background: var(--forest);
    color: white;
  }

  .einordnung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .einordnung h2 { color: white; }

  .einordnung-text {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.9;
    margin-bottom: 32px;
    font-family: var(--body);
    font-weight: 300;
  }

  .zitat {
    border-left: 3px solid var(--moss);
    padding-left: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
  }

  .einordnung-visual {
    position: relative;
    background-image: url('/wp-content/uploads/seelische-seilschaft/hero.jpg');
    background-size: cover;
    background-position: center 30%;
    border-radius: 4px;
    padding: 48px 40px;
    text-align: center;
    overflow: hidden;
  }

  /* ════════════════════════════════════════════════════
     FILTER ANPASSEN: Ändere die Zahl 0.55 (0 = kein Filter,
     1 = vollständig grün). Aktuell: 55% grüner Overlay.
     ════════════════════════════════════════════════════ */
  .einordnung-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 82, 32, 0.2);
  }

  .einordnung-visual > * {
    position: relative;
    z-index: 1;
  }

  .mountain-symbol {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    opacity: 0.0;
  }

  .einordnung-visual p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
  }

  /* VERTRAUEN */
  .vertrauen { background: var(--bg); }

  .vertrauen-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
    align-items: start;
  }

  .portrait-placeholder {
    background: var(--light-moss);
    border-radius: 4px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--moss);
  }

  .credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .credential-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--stone);
  }

  .credential-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--moss);
    margin-top: 8px;
    flex-shrink: 0;
  }

  /* ABLAUF */
  .ablauf { background: var(--bg-card); }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
  }

  .step {
    background: var(--bg);
    padding: 36px 28px;
    position: relative;
  }

  .step-num {
    font-family: var(--body);
    font-size: 44px;
    color: var(--light-moss);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
  }

  .step h3 {
    font-family: var(--body);
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
  }

  .step p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.75;
  }

  .steps-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--stone);
    font-style: italic;
    padding-left: 2px;
  }

  /* PASSUNG */
  .passung { background: var(--bg); }

  .passung-intro {
    max-width: 680px;
    color: var(--stone);
    margin-bottom: 48px;
    font-size: 16px;
  }

  .passung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }

  .passung-col {
    padding: 40px 36px;
  }

  .passung-col.yes { background: var(--light-moss); }
  .passung-col.no { background: #EBEBEB; }

  .passung-col h3 {
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .passung-col.yes h3 { color: var(--forest); }
  .passung-col.no h3 { color: var(--stone); }

  .passung-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .passung-col ul li {
    font-size: 15px;
    color: var(--text);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--body);
  }

  .passung-col.yes ul li::before {
    content: '→';
    color: var(--forest);
    flex-shrink: 0;
    font-weight: 600;
  }

  .passung-col.no ul li::before {
    content: '–';
    color: var(--stone);
    flex-shrink: 0;
  }

  .passung-note {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    font-size: 14px;
    color: var(--stone);
    font-style: italic;
  }

  /* SCHUTZ */
  .schutz { background: var(--forest); color: white; }
  .schutz h2 { color: white; }

  .schutz-text {
    max-width: 700px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
    margin-bottom: 24px;
  }

  .schutz-note {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    max-width: 700px;
  }

  /* TERMINE */
  .termine { background: var(--bg-card); }

  .termine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .preis-box {
    background: var(--light-moss);
    padding: 36px;
    border-radius: 2px;
    margin-bottom: 32px;
  }

  .preis-zahl {
    font-family: var(--serif);
    font-size: 48px;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 8px;
  }

  .preis-label {
    font-size: 14px;
    color: var(--moss);
    margin-bottom: 16px;
  }

  .preis-vergleich {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.7;
  }

  .termin-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .termin-item {
    background: var(--bg);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .termin-datum {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--forest);
  }

  .termin-uhr {
    font-size: 14px;
    color: var(--stone);
  }

  .termin-btn {
    font-size: 13px;
    color: var(--forest);
    text-decoration: none;
    letter-spacing: 0.03em;
    padding: 7px 16px;
    border: 1.5px solid var(--forest);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
  }

  .termin-btn:hover {
    background: var(--forest);
    color: white;
  }

  .info-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .info-row {
    display: flex;
    gap: 16px;
    font-size: 14px;
  }

  .info-label {
    color: var(--stone);
    min-width: 100px;
    flex-shrink: 0;
  }

  .info-val { color: var(--text); }

  .warteliste-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--stone);
    font-style: italic;
  }

  /* FAQ */
  .faq-section { background: var(--bg); }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 48px;
  }

  .faq-item {
    background: var(--bg-card);
    border-radius: 2px;
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--body);
    font-size: 16px;
    color: var(--forest);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .faq-icon {
    font-size: 20px;
    color: var(--stone);
    transition: transform 0.3s;
    flex-shrink: 0;
    font-style: normal;
  }

  .faq-item.open .faq-icon { transform: rotate(45deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-item.open .faq-answer { max-height: 300px; }

  .faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--stone);
    line-height: 1.8;
  }

  /* FORMULAR */
  .formular { background: var(--bg-card); }

  .formular-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
  }

  .formular-intro {
    font-size: 16px;
    color: var(--stone);
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .form-group {
    margin-bottom: 20px;
  }

  label {
    display: block;
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
  }

  input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: var(--body);
    font-size: 16px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--moss);
  }

  textarea { min-height: 100px; resize: vertical; }

  #termin-group { display: none; }

  .dsgvo-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 20px 0;
  }

  .dsgvo-row input[type="checkbox"],
  .warteliste-dsgvo input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border);
    border-radius: 3px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .dsgvo-row input[type="checkbox"]:hover,
  .warteliste-dsgvo input[type="checkbox"]:hover {
    border-color: var(--moss);
  }

  .dsgvo-row input[type="checkbox"]:checked,
  .warteliste-dsgvo input[type="checkbox"]:checked {
    background: var(--forest);
    border-color: var(--forest);
  }

  .dsgvo-row input[type="checkbox"]:checked::after,
  .warteliste-dsgvo input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
  }

  .dsgvo-row label {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 0;
  }

  .dsgvo-row a { color: var(--moss); }

  .btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--forest);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.02em;
  }

  .btn-submit:hover { background: var(--moss); }

  .submit-promise {
    text-align: center;
    font-size: 13px;
    color: var(--stone);
    margin-top: 12px;
    font-style: italic;
  }

  /* WARTELISTE */
  .noch-nicht {
    background: var(--forest);
    padding: 72px 0;
  }

  .noch-nicht-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 32px;
  }

  .noch-nicht h3 {
    font-family: var(--body);
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
  }

  .noch-nicht p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .warteliste-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }

  .warteliste-form input {
    flex: 1;
    background: white;
    border-color: white;
  }

  .btn-secondary {
    background: var(--forest);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
  }

  .btn-secondary:hover { background: var(--moss); }

  .warteliste-dsgvo {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
  }

  /* warteliste checkbox – see .dsgvo-row rules above */

  /* KRISE */
  .krise {
    background: var(--warn-bg);
    border-top: 1px solid #E8D9C8;
    padding: 32px 0;
  }

  .krise-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .krise p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.7;
  }

  .krise strong { color: var(--text); }

  /* FOOTER */
  footer {
    background: #42464B;
    color: rgba(255,255,255,0.55);
    padding: 40px 0;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    font-family: var(--body);
  }

  .footer-logo-wrap {
    background: white;
    border-radius: 4px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
  }

  .footer-logo-wrap img {
    height: 64px;
    width: auto;
    display: block;
  }

  .footer-links {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    border-right: 1px solid rgba(255,255,255,0.18);
  }

  .footer-links a:last-child { border-right: none; }
  .footer-links a:hover { color: white; }

  .footer-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: right;
    line-height: 1.8;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .seil-hero-content { grid-template-columns: 1fr; gap: 40px; }
    .seil-hero-card { max-width: 400px; }
    .resonanz-grid { grid-template-columns: 1fr; }
    .einordnung-grid { grid-template-columns: 1fr; }
    .einordnung-visual { display: none; }
    .vertrauen-grid { grid-template-columns: 1fr; }
    .portrait-placeholder { max-width: 200px; aspect-ratio: 1; }
    .steps { grid-template-columns: 1fr 1fr; }
    .passung-grid { grid-template-columns: 1fr; }
    .termine-grid { grid-template-columns: 1fr; }
    .formular-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .warteliste-form { flex-direction: column; }
  }

  @media (max-width: 600px) {
    section { padding: 56px 0; }
    .steps { grid-template-columns: 1fr; }
    .termin-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .seil-hero-eyebrow { animation: fadeUp 0.6s ease both; }
  .seil-hero h1 { animation: fadeUp 0.6s 0.1s ease both; }
  .seil-hero h2 { animation: fadeUp 0.6s 0.2s ease both; }
  .seil-hero-lead { animation: fadeUp 0.6s 0.3s ease both; }
  .seil-hero-cta-group { animation: fadeUp 0.6s 0.4s ease both; }
  .seil-hero-card { animation: fadeUp 0.6s 0.3s ease both; }