/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Theme: Springfeder */
:root {
  --brand-green-600: #16a34a;
  --brand-green-500: #22c55e;
  --brand-green-700: #15803d;
  --brand-orange-500: #f97316;
  --brand-orange-600: #ea580c;
  /* Beauty Bush Palette (Logo-Familie) */
  --color-beauty-bush-50: #fcf5f4;
  --color-beauty-bush-100: #fae8e6;
  --color-beauty-bush-200: #f4cac5;
  --color-beauty-bush-300: #efb8b2;
  --color-beauty-bush-400: #e48f85;
  --color-beauty-bush-500: #d66a5d;
  --color-beauty-bush-600: #c14f41;
  --color-beauty-bush-700: #a23f33;
  --color-beauty-bush-800: #87372d;
  --color-beauty-bush-900: #71322b;
  --color-beauty-bush-950: #3c1713;
  /* Aliase für bestehende Styles */
  --brand-rose-300: var(--color-beauty-bush-300);
  --brand-rose-400: var(--color-beauty-bush-400);
  --brand-rose-500: var(--color-beauty-bush-500);
  --brand-rose-600: var(--color-beauty-bush-600);
  --ink-900: #1f2937;
  --ink-700: #374151;
  --ink-600: #4b5563;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--ink-900);
  background-color: var(--surface);
}

/* Coming Soon Layout */
.soon-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(
      920px 520px at 85% -10%,
      rgba(214, 106, 93, 0.12),
      transparent 60%
    ),
    radial-gradient(
      780px 520px at -10% 110%,
      rgba(239, 184, 178, 0.22),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.coming-soon {
  text-align: center;
  padding: 40px 24px;
}

.soon-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.coming-soon h1 {
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.soon-subtitle {
  color: var(--ink-600);
  margin-bottom: 24px;
}

.soon-actions {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.soon-links a {
  color: var(--color-beauty-bush-600);
  text-decoration: none;
}
.soon-links a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
}

h2 {
  font-size: 2.5rem;
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
}

h3 {
  font-size: 1.5rem;
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--brand-rose-500) 0%,
    var(--brand-rose-600) 100%
  );
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(204, 144, 152, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-beauty-bush-600);
  border-color: var(--color-beauty-bush-600);
}

.btn-secondary:hover {
  background: var(--color-beauty-bush-600);
  color: white;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
}

.logo-full {
  height: 100px;
  width: auto;
  display: block;
}

.brand-feather {
  height: 38px;
  width: 38px;
  margin-right: 10px;
}

.brand-text {
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--ink-900);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--color-beauty-bush-600);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-beauty-bush-600),
    var(--brand-orange-500)
  );
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #2d3748;
  transition: all 0.3s ease;
}
/* Mobile nav sliding panel */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  background: radial-gradient(
      920px 520px at 85% -10%,
      rgba(214, 106, 93, 0.18),
      transparent 60%
    ),
    radial-gradient(
      780px 520px at -10% 110%,
      rgba(239, 184, 178, 0.28),
      transparent 55%
    ),
    radial-gradient(
      620px 380px at 10% 15%,
      rgba(228, 143, 133, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-family: 'Fredoka', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink-900);
}

/* kleine Badge über der Headline */
.hero-badge {
  display: inline-flex;
  font-family: 'Caveat', 'Inter', system-ui, -apple-system, Segoe UI, Roboto,
    sans-serif;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-900);
  background: linear-gradient(
    180deg,
    var(--brand-rose-300),
    var(--brand-rose-400)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 16px rgba(205, 144, 152, 0.25);
  margin-bottom: 14px;
}

.badge-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.06);
  align-items: center;
  justify-content: center;
}

.badge-icon img {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}

.badge-text {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
}

.highlight {
  background: linear-gradient(
    135deg,
    var(--brand-rose-600) 0%,
    var(--brand-orange-500) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--ink-600);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink-900);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--ink-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Mission Section */
.mission {
  background: linear-gradient(
    180deg,
    #fff 0%,
    var(--color-beauty-bush-50) 100%
  );
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-text {
  font-size: 1.125rem;
  line-height: 1.8;
}

.rounded-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Why Important Section */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reason-card {
  background: white;
  padding: 24px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--color-beauty-bush-100);
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.reason-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--brand-rose-500),
    var(--brand-orange-500)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reason-card:hover .reason-icon {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.reason-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1f2937;
}

.reason-card p {
  color: #4b5563;
  line-height: 1.65;
}

/* Psychomotorik Section */
.psychomotorik {
  background: linear-gradient(
    180deg,
    var(--color-beauty-bush-50) 0%,
    #fff 100%
  );
}

.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: radial-gradient(
      90px 80px at 25% 20%,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0) 60%
    ),
    conic-gradient(
      from 200deg,
      var(--brand-orange-500),
      var(--brand-rose-500),
      var(--brand-rose-600)
    );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.benefits-image .rounded-image {
  height: 340px;
}

.benefit-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2d3748;
}

.benefit-content p {
  color: #4a5568;
  margin: 0;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-inline {
  flex-direction: row;
  gap: 48px;
  justify-content: center;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: radial-gradient(
      90px 70px at 20% 20%,
      rgba(255, 255, 255, 0.4),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      135deg,
      var(--brand-rose-500) 0%,
      var(--brand-rose-600) 100%
    );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2d3748;
}

.contact-item p {
  color: #4a5568;
  margin: 0;
}

.contact-link {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  position: relative;
  padding-left: 28px;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--brand-rose-500),
    var(--brand-orange-500)
  );
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2d3748;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-beauty-bush-600);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    var(--color-beauty-bush-700) 0%,
    var(--color-beauty-bush-500) 100%
  );
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  text-align: center;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-logo-full {
  height: 44px;
  width: auto;
}

.badge-feather {
  height: 22px;
  width: 22px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: -4px;
}

.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Links im Footer stets gut lesbar */
.footer a {
  color: #fff;
  opacity: 0.95;
  text-decoration: none;
}
.footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    height: 96px;
  }

  .logo-full {
    height: 72px;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-img {
    height: 300px;
  }

  .hero-actions {
    justify-content: center;
  }

  /* Stack contact items vertically on mobile */
  .contact-inline {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .mission-content,
  .benefits-container,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  .hero {
    padding: 130px 0 60px;
  }

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

/* Gallery */
.gallery {
  background: var(--color-beauty-bush-50);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* SVG-Polish für Inline-Icons */
.reason-icon svg,
.benefit-icon svg,
.contact-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dekorative, langsam animierte Blobs im Hero */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-decor .blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.38;
  mix-blend-mode: multiply;
  animation: float 16s ease-in-out infinite;
}
.blob-1 {
  width: 320px;
  height: 320px;
  left: -140px;
  top: -80px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--brand-rose-300),
    transparent 60%
  );
  animation-delay: 0s;
}
.blob-2 {
  width: 280px;
  height: 280px;
  right: -120px;
  top: 120px;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(34, 197, 94, 0.35),
    transparent 60%
  );
  animation-delay: 3s;
}
.blob-3 {
  width: 220px;
  height: 220px;
  left: 40%;
  bottom: -60px;
  background: radial-gradient(
    circle at 60% 60%,
    rgba(249, 115, 22, 0.35),
    transparent 60%
  );
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(8px) scale(1.03);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-img {
    height: 240px;
  }

  .benefits-image .rounded-image {
    height: 260px;
  }

  .gallery-item img {
    height: 220px;
  }

  .reason-card,
  .contact-form {
    padding: 24px;
  }
}
