/* ============================================
   Momente im Leben – Redesigned Stylesheet
   ============================================ */

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


:root {
  --color-bg: #f8f6f1;
  --color-bg-alt: #b8c8c2;
  --color-bg-warm: #e6eaef;
  --color-text: #2a4a7a;
  --color-text-light: #3d5a7e;
  --color-text-muted: #6a7f96;
  --color-accent: #7fa07f;
  --color-accent-dark: #2a4a7a;
  --color-accent-green: #4a6b5a;
  --color-border: #ddd8cc;
  --color-white: #ffffff;
  --color-footer-bg: #162d6b;
  --color-footer-text: #c8cde0;
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 920px;
  --nav-height: 52px;
  --radius: 4px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background-color var(--transition-slow), color var(--transition-slow), border-color var(--transition-slow);
}

html {
  scroll-behavior: smooth;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 90;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-accent-green);
  transform: translateY(-2px);
}

/* ── PAGE TRANSITIONS ── */
.theme-toggle {
  background: none;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  width: 36px;
  height: 36px;
  font-size: 15px;
  cursor: pointer;
  color: var(--color-text-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--color-accent-dark);
  color: var(--color-accent-dark);
  background: rgba(0,0,0,0.03);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle:hover {
    border-color: var(--color-accent-green);
    color: var(--color-accent-green);
    background: rgba(255,255,255,0.05);
  }
}

[data-theme="dark"] .theme-toggle:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background: rgba(255,255,255,0.05);
}

.theme-toggle--mobile {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  border-bottom: none;
}

body {
  animation: pageIn 0.35s ease;
}

body.page-leaving {
  animation: pageOut 0.25s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pageOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--color-accent-green);
}

::selection {
  background: var(--color-accent-dark);
  color: var(--color-text);
}

/* ── HEADER & NAV ── */

header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.logo img {
  height: 38px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-group {
  position: relative;
}

.nav-group > .nav-label {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2c3e;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.nav-group > .nav-label::after {
  content: '▾';
  font-size: 9px;
  opacity: 0.6;
}

.nav-group:hover > .nav-label {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 6px;
}

.nav-group:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
  border-radius: 0px;
  transition: background var(--transition);
}

.dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

nav > a {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2c3e;
  border-radius: var(--radius);
  transition: all var(--transition);
}

nav > a:hover,
nav > a.active {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

nav > a.nav-cta {
  background: var(--color-accent-dark);
  color: var(--color-white);
  font-weight: 600;
  padding: 8px 20px;
  margin-left: 6px;
}

nav > a.nav-cta:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.burger:hover {
  background: rgba(0,0,0,0.04);
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  display: block;
  transition: all 0.3s;
  border-radius: 1px;
}

/* Mobile nav */
.mobile-nav {
  display: flex;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 32px;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;
}

.mobile-nav.open {
  max-height: 800px;
  opacity: 1;
  padding: 12px 32px 28px;
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 400;
  color: #1a2c3e;
}

.mobile-nav .mobile-group-label {
  padding: 18px 0 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  border-bottom: none;
}

.mobile-nav a.nav-cta {
  margin-top: 16px;
  background: var(--color-accent-dark);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  border-bottom: none;
}

/* ── HERO (Homepage) ── */

.hero {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
  padding: 120px 32px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(127,160,127,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(30,58,138,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 600;
  color: var(--color-text-light);
  max-width: 740px;
  margin: 0 auto 36px;
  line-height: 1.35;
  position: relative;
}

.hero .btn {
  position: relative;
}

.hero-credit {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-light);
  position: relative;
}

/* ── PAGE HEADER (inner pages) ── */

.page-header {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-warm) 100%);
  padding: 88px 32px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--color-text-light);
  max-width: 740px;
  margin: 0 auto 16px;
  line-height: 1.3;
}

.page-header .subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 20px;
  text-align: center;
  color: var(--color-text-light);
}

.tagline {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 10px;
}

.page-header .lead {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  text-justify: inter-word;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--color-accent-dark);
  color: var(--color-white);
  border-radius: 0px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* ── CONTENT AREA ── */

.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px;
}

.content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 20px;
  margin-top: 52px;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  margin-top: 36px;
}

.content p {
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.content ul {
  margin: 12px 0 24px 24px;
}

.content ul li {
  margin-bottom: 10px;
  color: var(--color-text-light);
}

.content blockquote {
  border-left: 3px solid var(--color-accent-green);
  margin: 36px 0;
  padding: 20px 28px;
  background: var(--color-bg-warm);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.content blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.content blockquote cite {
  font-size: 13px;
  color: var(--color-text-light);
}

.content img {
  border-radius: var(--radius);
  margin: 36px auto;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.content img.portrait {
  max-height: none;
  object-fit: contain;
  width: auto;
  max-width: 100%;
}

/* ── WELCOME SECTION (Homepage) ── */

.welcome {
  background: var(--color-bg);
  padding: 80px 32px;
}

.welcome-inner {
  max-width: 720px;
  margin: 0 auto;
}

.welcome-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.welcome-text p {
  margin-bottom: 18px;
  color: var(--color-text-light);
}

/* ── OFFERS GRID ── */

.offers {
  background: var(--color-bg-alt);
  padding: 88px 32px;
}

.offers h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 56px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 820px) {
  .offers-grid > :last-child:nth-child(3n + 1) {
    grid-column: 2 / 3;
  }
}

.offer-card {
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-green));
  opacity: 0;
  transition: opacity var(--transition);
}

.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.offer-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.offer-card a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.offer-card a::after {
  content: '→';
  font-size: 14px;
}

.offer-card a:hover {
  color: var(--color-accent-green);
  gap: 10px;
}

/* ── QUOTE BLOCK ── */

.quote-section {
  padding: 96px 32px;
  text-align: center;
  background: var(--color-white);
}

.quote-section blockquote {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ── EVENTS ── */

.events {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px;
}

.events h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.events p {
  color: var(--color-text-light);
}

.events-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 24px auto 0;
}

.events-card p {
  margin-bottom: 8px;
}

.events-card .btn {
  margin-top: 16px;
}

/* ── HIGHLIGHTS BOX ── */

.highlights {
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin: 36px 0;
  border: 1px solid var(--color-border);
}

.highlights h2 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.highlights ul {
  margin-left: 20px;
}

.highlights ul li {
  margin-bottom: 12px;
  color: var(--color-text-light);
}

/* ── PRICING ── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.pricing-box {
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.pricing-box:hover {
  box-shadow: var(--shadow-sm);
}

.pricing-box h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 12px;
}

.pricing-box p {
  color: var(--color-text-light);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
}

/* ── PERSON PROFILE ── */

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin: 36px 0;
}

.profile-img img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trait {
  background: var(--color-bg-warm);
  border: 1px solid var(--color-border);
  border-radius: 0px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.cv-list {
  margin-left: 20px;
}

.cv-list li {
  margin-bottom: 12px;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.6;
}

/* ── CONTACT ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 36px 0;
}

.contact-info h3 {
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--color-text-light);
  margin-bottom: 12px;
}

/* ── FOOTER ── */

footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 64px 32px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  align-items: start;
}

footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 18px;
}

footer p,
footer address {
  font-size: 14px;
  line-height: 1.9;
  font-style: normal;
}

footer a {
  color: var(--color-footer-text);
  transition: color var(--transition);
}

footer a:hover {
  color: var(--color-text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: var(--color-text-muted);
}

.footer-logo img {
  height: 128px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s;
  margin-top: 4px;
}

.footer-logo img:hover {
  opacity: 1;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .welcome {
    padding: 56px 24px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-logo-col {
    justify-content: center;
  }

  .footer-logo img {
    height: 80px;
  }

  .highlights {
    padding: 28px 24px;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 80px 24px 72px;
  }

  .hero-slider {
    height: 50vh;
    min-height: 300px;
    max-height: 480px;
  }

  .hero-overlay h1 {
    font-size: clamp(20px, 5vw, 32px);
  }

  .page-header {
    padding: 64px 24px 48px;
  }

  .content {
    padding: 52px 24px;
  }

  .offers {
    padding: 64px 24px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .mobile-nav.open {
    padding: 12px 18px 24px;
  }
}

.quote-author { font-size: 14px; color: var(--color-text-muted); margin-top: 16px; letter-spacing: 0.05em; font-style: italic; }

/* ── PODCAST TEASER ── */
.podcast-teaser {
  background: var(--color-bg);
  padding: 64px 32px;
  text-align: center;
}

.podcast-inner {
  max-width: 580px;
  margin: 0 auto;
}

.podcast-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 16px;
}

.podcast-inner h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.podcast-inner p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.podcast-inner .btn {
  font-size: 12px;
  padding: 12px 28px;
}

@media (max-width: 768px) {
  .podcast-teaser {
    padding: 48px 24px;
  }
}

/* ── MICRO-POLISH ── */

.content h2,
.welcome-text h2,
.page-header h1,
.offers h2,
.events h2 {
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.offer-card h3,
.memberships h2,
.memberships h3 {
  color: var(--color-text);
}

/* Scroll-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NATURE QUOTE (second block on homepage) ── */
.quote-section--nature {
  background: var(--color-bg-alt);
  padding: 48px 32px;
}
.quote-nature-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
}
.quote-section--nature blockquote {
  font-size: clamp(16px, 2vw, 20px);
}
.quote-section--nature img {
  border-radius: var(--radius);
  margin: 24px auto 32px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.membership-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto !important;
  width: auto !important;
  max-height: none !important;
  max-width: 240px;
  object-fit: contain !important;
  margin-bottom: 12px;
}

/* ── UTILITIES ── */
.pricing-note {
  font-size: 13px;
  color: var(--color-text-light);
}

.section-memberships {
  margin-top: 40px;
}

.section-profile {
  margin-top: 0;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.disclaimer {
  color: var(--color-text-light);
  font-size: 14px;
  margin-top: 40px;
}

/* ── TIMELINE LIST (CV, Ausbildungen) ── */
.timeline-list {
 list-style: none;
 margin: 20px 0 28px 0;
 padding: 0;
 position: relative;
 max-width: 700px;
}

.timeline-list::before {
 content: '';
 position: absolute;
 left: 28px;
 top: 8px;
 bottom: 8px;
 width: 2px;
 background: repeating-linear-gradient(
 to bottom,
 var(--color-accent-dark) 0,
 var(--color-accent-dark) 4px,
 transparent 4px,
 transparent 10px
 );
}

.timeline-list li {
 padding: 12px 24px 12px 68px;
 position: relative;
}

.timeline-list li::before {
 content: '';
 position: absolute;
 left: 12px;
 top: 18px;
 width: 34px;
 height: 34px;
 border-radius: 50%;
 background: var(--color-accent-dark);
 box-shadow: 0 2px 8px rgba(42, 74, 122, 0.3);
}

.timeline-list li strong {
 color: var(--color-text);
 font-weight: 600;
}

@media (max-width: 500px) {
 .timeline-list::before,
 .timeline-list li::before {
 left: 8px;
 }
 .timeline-list {
 padding-left: 8px;
 }
 .timeline-list li {
 padding-left: 48px;
 }
 .timeline-list li::before {
 width: 24px;
 height: 24px;
 top: 16px;
 left: 4px;
 font-size: 10px;
 }
}

/* ── VALUES GRID (Menschenbild) ── */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Vertical dotted timeline line */
.values-grid::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-accent-green) 0,
    var(--color-accent-green) 4px,
    transparent 4px,
    transparent 10px
  );
}

.value-card {
  padding: 24px 28px 24px 68px;
  position: relative;
  transition: all var(--transition);
}

.value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  opacity: 0;
  transition: opacity var(--transition), box-shadow var(--transition);
  z-index: 0;
}

.value-card:hover::before {
  opacity: 1;
  box-shadow: var(--shadow-md);
}

.value-icon {
  position: absolute;
  left: 12px;
  top: 26px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-accent-dark);
  color: var(--color-white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(42, 74, 122, 0.3);
}

.value-card:hover {
  transform: translateX(4px);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px 0;
  position: relative;
  z-index: 1;
}

.value-card p {
  font-size: 15px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.membership-logos img {
  display: block;
  margin: 12px auto;
  height: auto !important;
  width: auto !important;
  max-height: none !important;
  max-width: 180px;
  object-fit: contain !important;
  filter: contrast(1.1);
}

/* ── FRAUENKREIS QUOTE BOX ── */
.frauenkreis-quote-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}
.frauenkreis-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.frauenkreis-quote {
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 17px;
  color: var(--color-accent-dark);
  max-width: 600px;
  margin: 0 auto 28px;
}
.frauenkreis-img {
  border-radius: var(--radius);
  margin: 0 auto;
  height: 280px;
  width: 280px;
  object-fit: cover;
}

/* ── MEMBERSHIPS ── */
.memberships {
  margin: 48px 0;
}
.memberships h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  margin-top: 14px;
}
.memberships h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0px;
  margin-top: 6px;
}
.memberships p {
  margin-bottom: 0;
  margin-top: 0;
}
.membership-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin: 0;
  padding: 40px 48px;
  background: var(--color-bg-warm);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  flex-direction: column;
  align-items: center;
}
.membership-logos img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.membership-logos img:hover {
  opacity: 1;
}

/* ── PAGE GALLERY SLIDER ── */
.page-gallery {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 32px 0;
  overflow: hidden;
}
.page-gallery-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.page-gallery-slide.active {
  opacity: 1;
}
.page-gallery-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #f5f2ec;
}
.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}
.page-gallery:hover .gallery-prev,
.page-gallery:hover .gallery-next {
  opacity: 1;
}
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.gallery-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.gallery-dot.active {
  background: rgba(255,255,255,1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: var(--color-text);
  font-size: 36px;
  cursor: pointer;
  z-index: 1001;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text);
  font-size: 36px;
  cursor: pointer;
  padding: 20px;
  z-index: 1001;
  user-select: none;
}
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ── DARK MODE ── */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #1a1f2e;
    --color-bg-alt: #252d3a;
    --color-bg-warm: #222838;
    --color-text: #c8d4e8;
    --color-text-light: #a8b8d0;
    --color-text-muted: #7a8aa0;
    --color-accent: #7fa07f;
    --color-accent-dark: #8fb8c8;
    --color-accent-green: #7faa8f;
    --color-border: #333d50;
    --color-white: #252d3a;
    --color-footer-bg: #121828;
    --color-footer-text: #8892a8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
  }
}

[data-theme="dark"] {
  --color-bg: #1a1f2e;
  --color-bg-alt: #252d3a;
  --color-bg-warm: #222838;
  --color-text: #c8d4e8;
  --color-text-light: #a8b8d0;
  --color-text-muted: #7a8aa0;
  --color-accent: #7fa07f;
  --color-accent-dark: #8fb8c8;
  --color-accent-green: #7faa8f;
  --color-border: #333d50;
  --color-white: #252d3a;
  --color-footer-bg: #121828;
  --color-footer-text: #8892a8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.35);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    .nav-group > .nav-label::after { opacity: 0.5; }
    .slider-dot { border-color: rgba(255,255,255,0.4); }
    .slider-dot.active { background: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.7); }
    .gallery-prev, .gallery-next { background: rgba(26,31,46,0.7); color: #fff; }
    .gallery-dot { background: rgba(255,255,255,0.3); }
    .gallery-dot.active { background: rgba(255,255,255,0.9); }
    .lightbox { background: rgba(0,0,0,0.95); }
    footer a { color: #a8c4e0; }
    footer a:hover { color: #fff; }
    footer h4 { color: #d0dce8; }
    .offer-card { background: #2a3348; border-color: #3a4560; }
    .offer-card::before { opacity: 1; }
    .offers { background: #1e2536; }
    .offers h2 { color: #d0dce8; }
    header { background: rgba(255,255,255,0.97); border-bottom-color: rgba(0,0,0,0.08); }
    .mobile-nav { background: rgba(255,255,255,0.97); border-top-color: rgba(0,0,0,0.08); }
    .mobile-nav a { color: var(--color-text); border-bottom-color: rgba(0,0,0,0.08); }
    .mobile-nav a:hover { color: var(--color-accent-green); }
    .mobile-nav .mobile-group-label { color: var(--color-accent-green); }
    .burger span { background: var(--color-text); }
    .theme-toggle { color: var(--color-text); border-color: var(--color-border); }
  }
}

[data-theme="dark"] {
  .nav-group > .nav-label::after { opacity: 0.5; }
  .slider-dot { border-color: rgba(255,255,255,0.4); }
  .slider-dot.active { background: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.7); }
  .gallery-prev, .gallery-next { background: rgba(26,31,46,0.7); color: #fff; }
  .gallery-dot { background: rgba(255,255,255,0.3); }
  .gallery-dot.active { background: rgba(255,255,255,0.9); }
  .lightbox { background: rgba(0,0,0,0.95); }
  footer a { color: #a8c4e0; }
  footer a:hover { color: #fff; }
  footer h4 { color: #d0dce8; }
  .offer-card { background: #2a3348; border-color: #3a4560; }
  .offer-card::before { opacity: 1; }
  .offers { background: #1e2536; }
  .offers h2 { color: #d0dce8; }
  .page-header { background: linear-gradient(135deg, #252d3a 0%, #222838 100%); }
  .page-header h1, .page-header .lead, .page-header .subtitle { color: #d0dce8; }
  .events-card { background: #2a3348; border-color: #3a4560; }
  .value-card::before { background: #2a3348; border-color: #3a4560; }
  .highlights { background: #222838; border-color: #333d50; }
  .divider { background: #1e2536; }
  .quote-section--nature { background: #252d3a; }
  header { background: rgba(255,255,255,0.97); border-bottom-color: rgba(0,0,0,0.08); }
  .mobile-nav { background: rgba(255,255,255,0.97); border-top-color: rgba(0,0,0,0.08); }
  .mobile-nav a { color: var(--color-text); border-bottom-color: rgba(0,0,0,0.08); }
  .mobile-nav a:hover { color: var(--color-accent-green); }
  .mobile-nav .mobile-group-label { color: var(--color-accent-green); }
  .burger span { background: var(--color-text); }
  .theme-toggle { color: var(--color-text); border-color: var(--color-border); }
}
