/* ============================================================
   SEELENEINKLANG - Daniela Rolfes
   Spiritueller Coach & Energetische Heilerin
   ============================================================ */

/*
  DSGVO-HINWEIS: Google Fonts darf NICHT extern via @import eingebunden werden.
  Der EuGH (Schrems II, 2020) und das LG München I (Az. 3 O 17493/20, 2022)
  haben entschieden, dass die Uebermittlung der IP-Adresse des Seitenbesuchers
  an Google-Server in den USA ohne Einwilligung einen DSGVO-Verstoss darstellt
  (Art. 44 ff. DSGVO – unzulaessige Drittlandsuebermittlung).

  LOESUNG: Fonts lokal hosten. Anleitung:
  1. Fonts herunterladen unter: https://gwfh.mranftl.com/fonts
     - "Cormorant Garamond" (Styles: 300, 400, 500, 600 + italic)
     - "Quicksand" (Styles: 300, 400, 500, 600)
  2. Heruntergeladene .woff2-Dateien in den Ordner /fonts/ ablegen
     (Pfad: seeleneinklang/fonts/)
  3. Den @import unten durch @font-face-Deklarationen ersetzen, z.B.:

     @font-face {
       font-family: 'Cormorant Garamond';
       font-style: normal;
       font-weight: 400;
       font-display: swap;
       src: url('../fonts/cormorant-garamond-v22-latin-regular.woff2') format('woff2');
     }
     @font-face {
       font-family: 'Quicksand';
       font-style: normal;
       font-weight: 400;
       font-display: swap;
       src: url('../fonts/quicksand-v31-latin-regular.woff2') format('woff2');
     }
     (und entsprechend fuer alle weiteren Gewichte und Styles)

  BIS ZUR LOKALEN EINBINDUNG: Die nachfolgende @import-Zeile ist auskommentiert
  und durch systemseitige Fallback-Fonts ersetzt. Die Website ist damit
  DSGVO-konform, optisch jedoch mit System-Serifenschrift/Sans-Serif.
  Bitte so schnell wie moeglich auf lokale Fonts umstellen.

  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Quicksand:wght@300;400;500;600&display=swap');
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  color-scheme: only light;
  --primary: #8FA87E;
  --primary-light: #C2D9B4;
  --primary-dark: #6D7C5A;
  --accent: #9AB58A;
  --accent-light: #CCDEC0;
  --sage: #8FA87E;
  --sage-light: #C2D9B4;
  --lavender: #9AB58A;
  --lavender-light: #CCDEC0;
  --coral: #8FA87E;
  --cream: #FFFFFF;
  --cream-dark: #F5F3DC;
  --bg: #eceabf;
  --text: #4A4838;
  --text-light: #7A786A;
  --white: #FFFFFF;

  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
  --radius: 20px;
  --radius-lg: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
  color-scheme: only light;
}

body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

/* ============================================================
   SKIP NAV (Accessibility)
   ============================================================ */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  font-family: 'Quicksand', sans-serif;
  transition: top 0.3s;
}

.skip-nav:focus {
  top: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

section {
  padding: 6rem 0;
}

.text-center { text-align: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(109, 124, 90, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(109, 124, 90, 0.38);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--cream);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition);
}

.navbar.scrolled .navbar-logo {
  width: 40px;
  height: 40px;
}

.navbar-brand:hover .navbar-logo {
  transform: rotate(10deg) scale(1.05);
}

.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
}

.navbar-brand-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-nav a {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--primary-dark);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-cta {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #FFFFFF !important;
  padding: 0.3rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.navbar-cta::after { display: none; }

.navbar-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(109, 124, 90, 0.32);
  background: var(--primary-dark);
  color: #FFFFFF !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 8px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--primary-light);
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg,
    #e0de9e 0%,
    #eceabf 35%,
    #f0eecc 65%,
    #eceabf 100%);
  padding: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(236,234,191,0), #FFFFFF);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 10% 20%, rgba(180,170,80,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 90% 80%, rgba(180,170,80,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 100%, rgba(180,170,80,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 1.5rem 8rem;
}

.hero-logo-wrap {
  position: relative;
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  margin: 0 auto 2.5rem;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260%;
  height: 260%;
  background: center / contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 12px rgba(0, 0, 0, 0.05);
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Floating Petals */
.petal {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  animation: petalFloat linear infinite;
}

.petal svg {
  width: 100%;
  height: 100%;
}

.petal-1 {
  width: 60px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation-duration: 14s;
  animation-delay: 0s;
}

.petal-2 {
  width: 45px;
  height: 60px;
  top: 25%;
  right: 10%;
  animation-duration: 18s;
  animation-delay: -5s;
}

.petal-3 {
  width: 50px;
  height: 70px;
  bottom: 30%;
  left: 5%;
  animation-duration: 22s;
  animation-delay: -9s;
}

@keyframes petalFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-20px) rotate(8deg); }
  50%  { transform: translateY(-5px) rotate(-5deg); }
  75%  { transform: translateY(-15px) rotate(6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   WILLKOMMEN SECTION
   ============================================================ */
#willkommen {
  background: #FFFFFF;
  padding: 5rem 0 3rem;
  position: relative;
}

#willkommen::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eceabf);
  pointer-events: none;
  z-index: 1;
}

.willkommen-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.willkommen-inner p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.willkommen-inner p.intro-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--primary-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-item:nth-child(2) {
  background: var(--cream);
}

.feature-item:nth-child(3) {
  background: var(--cream);
}

.feature-item:nth-child(4) {
  background: var(--cream);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.willkommen-cta {
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

/* ============================================================
   ANGEBOT SECTION
   ============================================================ */
#angebot {
  background: var(--bg);
  position: relative;
}

#angebot::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(236,234,191,0), #FFFFFF);
  pointer-events: none;
  z-index: 1;
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.angebot-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.angebot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--sage) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.angebot-card:hover::before {
  transform: scaleX(1);
}

.angebot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.angebot-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--sage) 0%, var(--accent) 100%);
}

.angebot-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-dark) 100%);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--sage-light) 100%);
}

.angebot-card:nth-child(2) .card-icon {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--accent-light) 100%);
}

.angebot-card:nth-child(3) .card-icon {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--lavender-light) 100%);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-dark);
}

.angebot-card:nth-child(2) .card-icon svg {
  color: var(--sage);
}

.angebot-card:nth-child(3) .card-icon svg {
  color: var(--accent);
}

.angebot-card h3 {
  margin-bottom: 1rem;
  color: #4A4838;
}

.angebot-card p {
  font-size: 0.95rem;
  color: #7A786A;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.angebot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: var(--cream);
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  gap: 0.8rem;
  color: var(--primary);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* Hinweis Box */
.angebot-hinweis {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--cream);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.angebot-hinweis p {
  font-size: 0.88rem;
  color: #7A786A;
  font-style: italic;
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   ÜBER MICH SECTION
   ============================================================ */
#ueber-mich {
  background: #FFFFFF;
  position: relative;
}

#ueber-mich::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eceabf);
  pointer-events: none;
  z-index: 1;
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.ueber-image-wrap {
  position: relative;
}

.ueber-image-container {
  width: 100%;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.13), 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ueber-image-container:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 6px 24px rgba(91, 154, 111, 0.12);
}

.ueber-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Placeholder when no profile image */
.profile-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--sage-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.profile-placeholder .initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1;
}

.profile-placeholder .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ueber-deco {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  bottom: -15px;
  right: -15px;
  opacity: 0.35;
  z-index: -1;
}

.ueber-deco-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  top: -20px;
  left: -20px;
  opacity: 0.3;
  z-index: -1;
}

.ueber-content {
  position: relative;
  z-index: 2;
}

.ueber-content p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.ueber-content .highlight-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-dark);
  border-left: 3px solid var(--primary-light);
  padding-left: 1.25rem;
  margin: 2rem 0;
  line-height: 1.5;
}

/* Watermark */
.watermark-logo {
  position: absolute;
  pointer-events: none;
  background: center/contain no-repeat;
  opacity: 0.07;
  z-index: 1;
}

.watermark-logo-hero {
  width: min(600px, 85vw);
  height: min(600px, 85vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.watermark-logo-section {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  bottom: -100px;
  right: -100px;
}
.watermark-logo-left {
  width: min(500px, 65vw);
  height: min(500px, 65vw);
  bottom: -80px;
  left: -80px;
}
.watermark-logo-center {
  width: min(480px, 65vw);
  height: min(480px, 65vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Willkommen: half-visible flower on the left side */
.willkommen-deco-flower {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: min(920px, 100vw);
  height: min(920px, 100vw);
  top: 42%;
  left: -22%;
  transform: translateY(-50%);
  background: right center / contain no-repeat;
  opacity: 0.75;
}

/* Angebot: butterfly decoration on the right side */
.angebot-deco-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: min(560px, 70vw);
  height: min(560px, 70vw);
  top: 52%;
  right: 1%;
  transform: translateY(-50%);
  background: center / contain no-repeat;
  opacity: 0.20;
}

.angebot-card {
  position: relative;
  z-index: 1;
}

/* Über mich: butterfly decoration on the left side */
.ueber-deco-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: 50%;
  left: -20%;
  transform: translateY(-50%);
  background: right center / contain no-repeat;
  opacity: 0.20;
}

.ueber-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--primary-light);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.badge:nth-child(2) .badge-dot { background: var(--lavender); }
.badge:nth-child(3) .badge-dot { background: var(--sage); }
.badge:nth-child(4) .badge-dot { background: var(--accent); }
.badge:nth-child(5) .badge-dot { background: var(--coral); }

/* ============================================================
   KONTAKT SECTION
   ============================================================ */
#kontakt {
  background: var(--bg);
  position: relative;
}

#kontakt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(236,234,191,0), #FFFFFF);
  pointer-events: none;
  z-index: 1;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Form */
.kontakt-form-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-card);
  color: #4A4838;
  border: 1px solid var(--primary-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

label .optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.8rem;
}

/* Labels + Inputs inside white form wrap need appropriate text */
.kontakt-form-wrap label {
  color: #4A4838;
}

.kontakt-form-wrap label .optional {
  color: #9A9888;
}

.kontakt-form-wrap input:not([type="checkbox"]),
.kontakt-form-wrap textarea,
.kontakt-form-wrap select {
  color: #4A4838;
}

.kontakt-form-wrap .checkbox-group label {
  color: #7A786A;
}

.kontakt-form-wrap .checkbox-group label a {
  color: var(--primary-dark);
}

input, textarea, select {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  background: #EEF7F2;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(91, 154, 111, 0.12);
  background: var(--white);
}

input.error, textarea.error {
  border-color: #c05050;
  box-shadow: 0 0 0 3px rgba(192, 80, 80, 0.12);
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #C05050;
  font-weight: 500;
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-dark);
  border-radius: 4px;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  background: none;
  padding: 0;
  border: none;
}

.checkbox-group label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group label a {
  color: var(--primary-dark);
  font-weight: 600;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin-top: 0.5rem;
}

/* Form Status Messages */
.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.form-status.success {
  display: flex;
  background: linear-gradient(135deg, var(--sage-light) 0%, rgba(143, 168, 126, 0.3) 100%);
  color: var(--primary-dark);
  border: 1px solid var(--sage);
}

.form-status.error {
  display: flex;
  background: linear-gradient(135deg, rgba(200, 80, 80, 0.1) 0%, rgba(200, 80, 80, 0.04) 100%);
  color: #7a2020;
  border: 1px solid rgba(200, 80, 80, 0.3);
}

/* Kontakt Info */
.kontakt-info h3 {
  margin-bottom: 1.75rem;
  font-size: 1.6rem;
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.kontakt-info-item:hover {
  transform: translateX(5px);
}

.kontakt-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-info-icon svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.kontakt-info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.kontakt-info-text span, .kontakt-info-text a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.kontakt-praxis-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: #555555;
  line-height: 1.65;
  border-left: 3px solid var(--primary-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #FFFFFF;
  color: #4A4838;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: #4A4838;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: #7A786A;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: #6A6858;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--primary-dark);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #6A6858;
  margin-bottom: 0.6rem;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #6A6858;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(74, 72, 56, 0.15);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: #9A9888;
}

.footer-credit {
  font-size: 0.78rem;
  color: #9A9888;
}

.footer-credit a {
  color: #7A786A;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--primary-dark);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
  z-index: 500;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

#back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   INNER PAGES (Impressum, Datenschutz)
   ============================================================ */
.inner-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(160deg, #e0de9e 0%, #eceabf 50%, #f0eecc 100%);
  text-align: center;
  position: relative;
}

.inner-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(236,234,191,0), #FFFFFF);
  pointer-events: none;
}

.inner-hero h1 {
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #4A4838;
}

.inner-hero p {
  color: var(--text-light);
  font-size: 1rem;
}

.inner-content {
  background: var(--white);
  color: #4A4838;
  padding: 5rem 0 10rem;
  position: relative;
}

.inner-content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #eceabf);
  pointer-events: none;
}

.inner-content .container {
  max-width: 860px;
}

.inner-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #4A4838;
}

.inner-content h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.inner-content p {
  color: #7A786A;
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.inner-content a {
  color: var(--primary-dark);
  font-weight: 600;
}

.inner-content .legal-box {
  background: var(--cream);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}

.inner-content .legal-box p {
  margin-bottom: 0;
}

.inner-page footer {
  background: var(--bg);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  transition: gap var(--transition);
}

.back-link:hover {
  gap: 0.9rem;
}

/* ============================================================
   ÄUSSERES WOHLBEFINDEN SECTION
   ============================================================ */
#wohlbefinden {
  background: var(--bg);
  position: relative;
}

#wohlbefinden::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(236,234,191,0), #eceabf);
  pointer-events: none;
  z-index: 1;
}

.wohlbefinden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.wohlbefinden-card {
  display: block;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--primary-light);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.wohlbefinden-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--sage) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.wohlbefinden-card:hover::before {
  transform: scaleX(1);
}

.wohlbefinden-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--text);
}

.wohlbefinden-card .card-icon {
  margin-bottom: 1.25rem;
}

.wohlbefinden-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.wohlbefinden-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

/* Kontakt Weg-Bild */
.kontakt-weg-image {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 500px;
}

.kontakt-weg-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  max-height: 280px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ueber-image-container {
    max-width: 260px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  html { font-size: 16px; }

  section { padding: 4rem 0; }

  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .kontakt-form-wrap {
    padding: 2rem 1.5rem;
  }

  .angebot-grid {
    grid-template-columns: 1fr;
  }

  .wohlbefinden-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
  }

  .hero-logo {
    width: min(220px, 55vw);
    height: min(220px, 55vw);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ueber-badges {
    flex-direction: column;
  }
}
