/* ============================================================
   AUFBRUCHSMOMENT – Systemisches Coaching | Tabea Schomann
   style.css – Mobile-First, Zero-Cookie, System-Fonts
   ============================================================ */

/* --- RESET & BASE ----------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Farbsystem 70-20-10 */
  --color-offwhite:   #FDF6EC;
  --color-beige:      #F5EDD8;
  --color-petrol:     #244F63;
  --color-petrol-dark:#1a3a4a;
  --color-orange:     #E8821A;
  --color-orange-dark:#c96d0e;
  --color-text:       #2D2D2D;
  --color-muted:      #6B7280;
  --color-border:     #E8C99A;

  /* Typografie */
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          Helvetica, Arial, sans-serif;

  /* Abstände */
  --section-padding: 5rem 1.5rem;
  --max-width: 780px;
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-offwhite);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-orange-dark);
}

/* --- LAYOUT HELPER ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.30s; }
.fade-up.delay-3 { animation-delay: 0.45s; }
.fade-up.delay-4 { animation-delay: 0.60s; }

/* Intersection Observer class - starts hidden, then reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION / HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 1.5rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-wrap img {
  height: 44px;
  width: auto;
}

.logo-wrap .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-petrol);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-wrap .brand-sub {
  font-size: 0.7rem;
  color: var(--color-muted);
  font-weight: 400;
  display: block;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-orange);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(232, 130, 26, 0.3);
}

.header-cta:hover {
  background: var(--color-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 130, 26, 0.4);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-petrol);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: var(--color-orange);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(165deg, var(--color-offwhite) 0%, var(--color-beige) 100%);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,130,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(36,79,99,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.hero-logo--large {
  width: 220px;
  height: 220px;
}

@media (min-width: 640px) {
  .hero-logo--large {
    width: 280px;
    height: 280px;
  }
}

.hero-tag {
  display: inline-block;
  background: rgba(36, 79, 99, 0.08);
  color: var(--color-petrol);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(36, 79, 99, 0.15);
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 800;
  color: var(--color-petrol);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: var(--color-orange);
}

.hero-claim {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
}

@media (min-width: 480px) {
  .cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* --- PRIMARY BUTTON --------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-orange);
  color: #fff !important;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(232, 130, 26, 0.35);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 130, 26, 0.45);
}

/* --- SECONDARY BUTTON ------------------------------------- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-petrol) !important;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.97rem;
  border: 2px solid var(--color-petrol);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  background: var(--color-petrol);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ============================================================
   SECTION: WOFÜR ICH STEHE (Pain & Lösung)
   ============================================================ */
.section-pain {
  padding: var(--section-padding);
  background: var(--color-offwhite);
}



.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 800;
  color: var(--color-petrol);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.pain-quote {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--color-text);
  line-height: 1.75;
  border-left: 4px solid var(--color-orange);
  padding: 1rem 1.25rem;
  background: var(--color-beige);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pain-text {
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credential-pill {
  background: var(--color-beige);
  border: 1px solid var(--color-border);
  color: var(--color-petrol);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   SECTION: DAS PAKET
   ============================================================ */
.section-package {
  padding: var(--section-padding);
  background: var(--color-beige);
}

.package-card {
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(36, 79, 99, 0.07);
  margin-top: 2rem;
}

.package-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-petrol);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.package-tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.package-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.package-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.package-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(36, 79, 99, 0.08);
  color: var(--color-petrol);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-top: 0.1rem;
}

.package-item-text strong {
  display: block;
  color: var(--color-petrol);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.package-item-text span {
  color: var(--color-muted);
  font-size: 0.87rem;
}

.package-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.5rem 0;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.price-intro {
  display: inline-block;
  background: rgba(232, 130, 26, 0.1);
  color: var(--color-orange-dark);
  border: 1px solid rgba(232, 130, 26, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.price-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-petrol);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-main sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}

.price-regular {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.price-regular del {
  margin-right: 0.25rem;
}

/* ============================================================
   SECTION: DAS ERSTGESPRÄCH
   ============================================================ */
.section-talk {
  padding: var(--section-padding);
  background: var(--color-petrol);
  text-align: center;
}

.section-talk .section-label {
  color: rgba(232, 130, 26, 0.9);
}

.section-talk .section-title {
  color: #fff;
}

.talk-text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-size: 1.02rem;
}

.talk-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem;
}

.talk-detail-pill {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--color-petrol) !important;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================================
   SECTION: ÜBER MICH
   ============================================================ */
.section-about {
  padding: var(--section-padding);
  background: var(--color-offwhite);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.about-logo-wrap {
  text-align: center;
}

.about-logo-wrap img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto;
}

.about-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-petrol);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.about-role {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}

.about-text {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.about-highlight::before {
  content: '✓';
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-petrol-dark);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-brand {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-claim {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}

.footer-contact {
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--color-orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  color: rgba(255,255,255,0.2);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 479px) {
  .hero {
    padding: 3rem 1.25rem 4rem;
  }

  .package-card {
    padding: 1.5rem 1.25rem;
  }

  .price-main {
    font-size: 1.75rem;
  }
}

/* ============================================================
   UTILITY – für Impressum & Datenschutz Seiten
   ============================================================ */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  background: linear-gradient(165deg, var(--color-offwhite) 0%, var(--color-beige) 100%);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-petrol);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--color-orange);
}

.legal-logo {
  height: 38px;
  width: auto;
  margin-left: auto;
}

.legal-content {
  flex: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.legal-content h1 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-petrol);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.legal-content .legal-intro {
  color: var(--color-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-petrol);
  margin: 2rem 0 0.6rem;
}

.legal-content p,
.legal-content ul {
  color: var(--color-text);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

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

.legal-footer {
  background: var(--color-petrol-dark);
  color: rgba(255,255,255,0.5);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
}

.legal-footer a {
  color: rgba(255,255,255,0.6);
}

.legal-footer a:hover {
  color: #fff;
}

.widerspruch-box {
  font-weight: 600;
  background-color: var(--color-beige);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-petrol);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 1.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.65;
}
