/* ==========================================================================
   CSS Variablen & Setup
   ========================================================================== */ :root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #EDE8EA;
  --accent-light: #D1B4BF;
  --accent-dark: #913359;
  --secondary-color: #464684;
  --text-main: #323047;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --transition-standard: 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px default */
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0rem;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}
/* ==========================================================================
   Typografie & Basis-Klassen
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: normal;
  font-stretch: semi-condensed;
  color: var(--text-main);
}
section h1 {
  font-size: 2.8rem;
  line-height: 1.0;
}
section h2 {
  font-size: 2.0rem;
  line-height: 1.2;
}
section h3 {
  font-size: 1.6rem;
  line-height: 1.2;
}
section h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0rem;
  line-height: 1.6;
  color: var(--text-main);
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-standard);
}
a.exlink:link {
  text-decoration: normal;
  color: var(--accent-dark);
  transition: var(--transition-standard);
}
a.exlink:visited {
  text-decoration: normal;
  color: var(--accent-dark);
  transition: var(--transition-standard);
}
a.exlink:hover {
  text-decoration: underline;
  color: var(--text-main);
  transition: var(--transition-standard);
}
a.exlink:active {
  text-decoration: normal;
  color: var(--accent-dark);
  transition: var(--transition-standard);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a:hover .logo {
 transform: scale(1.1);
 transition: transform 0.3s ease-in-out;
}

.rund {
  border-radius: 50px;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}
.section {
  padding: 120px 0;
}
.bg-secondary {
  background-color: var(--bg-secondary);
}
.divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent-dark);
  margin: 20px 0 40px 0;
}
/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.btn-primary {
  background-color: var(--accent-dark);
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: var(--text-main);
  transform: translateY(-2px);
}
.btn-outline {
  background-color: transparent;
  border-color: var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
}
/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-standard);
}
.header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 5px 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-link {
  font-size: 16px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-dark);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle .bar {
  width: 100%;
  height: 1px;
  background-color: var(--text-main);
  transition: var(--transition-standard);
}
/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: 180px; /* Offset for fixed header */
  padding-bottom: 120px;
}
.hero-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-content {
  flex: 1;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.hero-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 90%;
  color: #555;
}
.hero-image {
  flex: 1;
}
.hero-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
/* ==========================================================================
   Zur achtsamkeit Section
   ========================================================================== */
.achtsamkeit-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.achtsamkeit-image, .achtsamkeit-content {
  flex: 1;
}
.achtsamkeit-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.achtsamkeit-content .subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 30px;
}
.achtsamkeit-content p {
  margin-bottom: 20px;
  color: #555;
}
/* ==========================================================================
   Kurse Section
   ========================================================================== */
.kurse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.kurs-card {
  background-color: var(--bg-primary);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s ease;
}
.kurs-card:hover {
  transform: translateY(-5px);
}
.card-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.card-text {
  margin-bottom: 30px;
  flex-grow: 1;
  color: #555;
}
/* ==========================================================================
   Zur Person Section
   ========================================================================== */
.person-container {
  display: flex;
  align-items: center;
  gap: 80px;
}
.person-image, .person-content {
  flex: 1;
}
.person-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.person-content .subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--accent-dark);
  margin-bottom: 30px;
}
.person-content p {
  margin-bottom: 20px;
  color: #555;
}
/* ==========================================================================
   Kontakt Section
   ========================================================================== */
.kontakt-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.form-group {
  margin-bottom: 24px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-main);
}
input, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  background-color: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  transition: border-color 0.3s ease;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
}
.kontakt-daten h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.kontakt-daten p {
  margin-bottom: 30px;
  color: #555;
}
.contact-info p {
  margin-bottom: 15px;
}
.captcha-box {
  margin-bottom: 18px;
}
.captcha-question {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
}
.consent-field input[type="checkbox"] {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.consent-field label {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}
.consent-field a {
  color: #1a1a1a;
  text-decoration: underline;
}
/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--text-main);
  color: #D1B4BF;
  padding: 40px 0;
  font-size: 1.0rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links a {
  color: #D1B4BF;
  margin-left: 30px;
  opacity: 1;
}
.footer-links a:hover {
  color: #EDE8EA;
}
/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--bg-primary);
  border: 1px solid var(--text-main);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
}
/* ==========================================================================
   Animationen (Intersection Observer)
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media screen and (max-width: 992px) {
  .hero-container, .achtsamkeit-container, .person-container, .kontakt-container {
    flex-direction: column;
    gap: 40px;
  }
  .kontakt-container {
    grid-template-columns: 1fr;
  }
  .kurse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .main-nav.active {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .nav-link {
    font-size: 20px;
    background-color: #ede8ea;
    padding: 10px;
  }
  /* Hamburger Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .kurse-grid {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-links a {
    margin: 0 15px;
  }
  .section {
    padding: 80px 0;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}