/*
Theme Name: Inklusionskreis
Theme URI: https://inklusionskreis.de
Author: Sara Sadki
Author URI: https://inklusionskreis.de
Description: Professionelle Website für Inklusionskreis UG – Kinder- und Jugendhilfe
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: inklusionskreis
*/

:root {
  --green-50: #EAF3DE;
  --green-100: #C0DD97;
  --green-200: #97C459;
  --green-600: #3B6D11;
  --green-800: #27500A;
  --teal-50: #E1F5EE;
  --teal-200: #5DCAA5;
  --teal-600: #0F6E56;
  --teal-800: #085041;
  --amber-50: #FAEEDA;
  --amber-200: #EF9F27;
  --amber-600: #854F0B;
  --gray-50: #F1EFE8;
  --gray-100: #D3D1C7;
  --gray-200: #B4B2A9;
  --gray-600: #5F5E5A;
  --gray-800: #444441;
  --gray-900: #2C2C2A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.7;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--teal-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: white; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--gray-900); line-height: 1.1; }
.logo-text span { display: block; font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 0.7rem; color: var(--gray-600); letter-spacing: 0.08em; text-transform: uppercase; }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav ul a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: color 0.2s; }
nav ul a:hover { color: var(--teal-600); }
.nav-cta { background: var(--teal-600); color: white !important; padding: 0.5rem 1.25rem; border-radius: 100px; }
.nav-cta:hover { background: var(--teal-800); color: white !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 2rem 4rem;
  background: linear-gradient(135deg, #fff 55%, var(--green-50) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--teal-50) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-50) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); color: var(--green-600);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: 1.5rem; border: 1px solid var(--green-100);
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--green-200); border-radius: 50%; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gray-900); margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--teal-600); }
.hero p { font-size: 1.1rem; color: var(--gray-600); font-weight: 300; margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--teal-600); color: white; }
.btn-primary:hover { background: var(--teal-800); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal-600); border: 1.5px solid var(--teal-200); }
.btn-outline:hover { background: var(--teal-50); }

.hero-card-stack { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: white; border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  animation: slideIn 0.6s ease both;
}
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.25s; margin-left: 2rem; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-icon.green { background: var(--green-50); }
.stat-icon.teal { background: var(--teal-50); }
.stat-icon.amber { background: var(--amber-50); }
.stat-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gray-900); margin-bottom: 2px; }
.stat-info p { font-size: 0.85rem; color: var(--gray-600); font-weight: 300; margin: 0; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--gray-900); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); font-weight: 300; max-width: 580px; line-height: 1.75; }

/* ── LEISTUNGEN ── */
#leistungen { background: var(--gray-50); }
.leistungen-header { max-width: 640px; margin-bottom: 3rem; }
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.leistung-card { background: white; border: 1px solid var(--gray-100); border-radius: 16px; padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.leistung-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.leistung-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }
.leistung-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--gray-900); }
.leistung-card p { font-size: 0.95rem; color: var(--gray-600); font-weight: 300; line-height: 1.7; }
.leistung-tag { display: inline-block; margin-top: 1rem; font-size: 0.75rem; font-weight: 500; color: var(--teal-600); background: var(--teal-50); padding: 0.25rem 0.75rem; border-radius: 100px; }

/* ── ÜBER UNS ── */
#ueber-uns { background: white; }
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ueber-blob { background: var(--green-50); border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-dot { width: 10px; height: 10px; background: var(--teal-200); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 4px; color: var(--gray-900); }
.value-item p { font-size: 0.9rem; color: var(--gray-600); font-weight: 300; }

/* ── TEAM ── */
#team { background: var(--teal-50); }
.team-header { text-align: center; max-width: 540px; margin: 0 auto 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.team-card { background: white; border-radius: 16px; padding: 2rem; text-align: center; border: 1px solid var(--gray-100); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: white; }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--gray-600); font-weight: 300; }
.team-role { display: inline-block; margin-top: 0.75rem; font-size: 0.75rem; font-weight: 500; color: var(--teal-600); background: var(--teal-50); padding: 0.2rem 0.75rem; border-radius: 100px; }

/* ── VORGEHEN ── */
#vorgehen { background: white; }
.vorgehen-header { max-width: 560px; margin-bottom: 3.5rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.step { padding: 0 2rem 0 0; position: relative; }
.step-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--green-50); line-height: 1; margin-bottom: 0.5rem; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gray-900); }
.step p { font-size: 0.9rem; color: var(--gray-600); font-weight: 300; }
.step::after { content: ''; position: absolute; top: 1.5rem; right: 0; width: 2px; height: 80px; background: var(--gray-100); }
.step:last-child::after { display: none; }

/* ── KONTAKT ── */
#kontakt { background: var(--gray-900); }
.kontakt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.kontakt-info h2 { color: white; margin-bottom: 1rem; }
.kontakt-info p { color: var(--gray-200); font-weight: 300; margin-bottom: 2rem; }
.kontakt-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.kontakt-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.kontakt-item-info h4 { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--gray-200); margin-bottom: 4px; }
.kontakt-item-info p, .kontakt-item-info a { font-size: 0.95rem; color: white; text-decoration: none; font-weight: 400; }
.kontakt-item-info a:hover { color: var(--teal-200); }
.kontakt-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; }
.kontakt-form h3 { color: white; font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; color: var(--gray-200); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 0.7rem 1rem; font-size: 0.95rem; font-family: 'DM Sans', sans-serif; color: white; transition: border 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-200); }
.form-group select option { background: var(--gray-900); color: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
#success-msg { display: none; background: rgba(93,202,165,0.15); border: 1px solid var(--teal-200); border-radius: 10px; padding: 1rem; color: var(--teal-200); font-size: 0.9rem; text-align: center; margin-top: 1rem; }

/* ── FOOTER ── */
footer { background: #1a1a18; padding: 2.5rem 2rem; text-align: center; color: var(--gray-200); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
footer p { font-size: 0.85rem; color: var(--gray-200); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--gray-200); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-200); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--gray-100); padding: 1rem 2rem; gap: 1rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ueber-grid { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step::after { display: none; }
  .footer-inner { justify-content: center; flex-direction: column; }
}
