/* ================================================================
   Physio Kirkel – styles.css
   Shared stylesheet for index, impressum, datenschutz
   ================================================================ */

/* ── LOCAL FONTS (self-hosted, no Google) ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v37-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-dark: #4F8A3A; 
  --green-mid: #6AA84F; 
  --green-light: #93C47D;
  --green-pale: #D9EAD3;
  --green-mist: #F4FAF1;
  --gray-900: #1a1a1a;
  --gray-700: #3d3d3d;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 580px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,106,79,0.35);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-green-outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn-green-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
}
header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}
/* Subpages: header always white */
header.static-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.6));
}
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.3s;
}
.logo-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-mid);
  letter-spacing: 0.04em;
}
header:not(.scrolled):not(.static-header) .logo-name { color: var(--white); }
header:not(.scrolled):not(.static-header) .logo-sub { color: var(--green-pale); }

nav ul {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s;
  color: var(--white);
}
header.scrolled nav a,
header.static-header nav a { color: var(--gray-700); }
nav a:hover,
header.scrolled nav a:hover,
header.static-header nav a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
nav .nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 9px 20px;
}
nav .nav-cta:hover {
  background: var(--green-mid) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
header.scrolled .hamburger span,
header.static-header .hamburger span { background: var(--gray-700); }

/* ── HERO ── */
#home {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #3E6F2E 0%,
    #4F8A3A 45%,
    #6AA84F 100%
  );
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  right: -100px; top: -100px;
  width: 700px; height: 700px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(255,255,255,0.08);
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  left: -50px; bottom: -80px;
  width: 500px; height: 500px;
  border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
  background: rgba(255,255,255,0.04);
  animation: blobFloat 10s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(20px, -20px) rotate(5deg); }
  66% { transform: translate(-10px, 15px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-title em {
  font-style: normal;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  opacity: 0.7;
}
.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.35s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.5s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  animation: fadeInUp 0.8s 0.65s ease both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 2px;
}
.hero-image-wrap {
  position: relative;
  animation: fadeInRight 1s 0.3s ease both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-img-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-svg-scene { width: 85%; max-width: 340px; }
.hero-float-card {
  position: absolute;
  bottom: -20px; left: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-icon {
  width: 42px; height: 42px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-float-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}
.hero-float-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

/* ── LEISTUNGEN ── */
#leistungen { padding: 100px 0; background: var(--white); }
.leistungen-header { text-align: center; margin-bottom: 60px; }
.leistungen-header .section-sub { margin: 0 auto; }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.leistung-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.leistung-card:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.leistung-card:hover::before { opacity: 1; }
.leistung-icon {
  width: 58px; height: 58px;
  background: var(--green-mist);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.leistung-card:hover .leistung-icon { background: var(--green-pale); }
.leistung-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.leistung-card p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.65; }

/* ── ÜBER UNS ── */
#ueber-uns { padding: 100px 0; background: var(--green-mist); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber-visual { position: relative; }
.ueber-img-main {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-light) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.ueber-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--green-dark);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.ueber-img-accent strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1;
}
.ueber-img-accent span { font-size: 0.82rem; opacity: 0.8; }
.ueber-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.ueber-value {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ueber-value-icon {
  width: 38px; height: 38px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ueber-value h4 { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.ueber-value p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* ── KARRIERE ── */
#karriere {
  padding: 100px 0;
  background: linear-gradient(135deg, #4F8A3A 0%, #6AA84F 100%);
  position: relative;
  overflow: hidden;
}

#karriere::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.karriere-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.karriere-left .section-label { 
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.karriere-left h2 { color: var(--white); }
.karriere-left .section-sub { color: rgba(255,255,255,0.75); }
.karriere-left p.body-text { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.7; margin: 20px 0 36px; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.benefit-item {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: all 0.25s ease;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefit-item:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.benefit-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.benefit-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.benefit-item p { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

.karriere-form-wrap {
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.karriere-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.karriere-form-wrap > p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 28px; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e53e3e; }
.form-group .field-error {
  display: none;
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 5px;
}
.form-group .field-error.show { display: block; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: none;
  background: none;
  appearance: auto;
  -webkit-appearance: checkbox;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--green-mid);
}
.form-group input[type="checkbox"]:focus {
  box-shadow: none;
  outline: 2px solid var(--green-mid);
  outline-offset: 2px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dsgvo-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 12px; line-height: 1.5; }
.dsgvo-note a { color: var(--green-mid); }

.form-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  background: var(--green-mist);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-top: 16px;
}
.form-error-msg {
  display: none;
  background: #fff5f5;
  border: 1.5px solid #fed7d7;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #c53030;
  margin-top: 16px;
}

/* ── KONTAKT ── */
#kontakt { padding: 100px 0; background: var(--white); }
.kontakt-header { text-align: center; margin-bottom: 60px; }
.kontakt-header .section-sub { margin: 0 auto; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.kontakt-info { display: flex; flex-direction: column; gap: 20px; }
.kontakt-card { background: var(--gray-100); border-radius: var(--radius-md); padding: 28px; }
.kontakt-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-300);
}
.kontakt-item:last-child { border-bottom: none; padding-bottom: 0; }
.kontakt-item-icon {
  width: 36px; height: 36px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.kontakt-item-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 2px; }
.kontakt-item-text span,
.kontakt-item-text a { font-size: 0.9rem; color: var(--gray-500); text-decoration: none; }
.kontakt-item-text a:hover { color: var(--green-mid); }

.oeffnungszeiten-table { width: 100%; }
.oz-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-300);
}
.oz-row:last-child { border-bottom: none; }
.oz-day { font-weight: 600; color: var(--gray-700); }
.oz-time { color: var(--gray-500); }
.oz-closed { color: var(--gray-300); }

.map-card { background: var(--gray-100); border-radius: var(--radius-md); overflow: hidden; }
.map-embed { width: 100%; height: 320px; border: none; display: block; }
.map-caption { padding: 16px 20px; font-size: 0.85rem; color: var(--gray-500); }

.kontakt-form-box {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.kontakt-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.kontakt-form-box > p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 32px; line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--gray-900); color: rgba(255,255,255,0.65); padding: 60px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: var(--green-light); }
.footer-tagline { font-size: 0.9rem; line-height: 1.65; margin: 16px 0 24px; color: rgba(255,255,255,0.5); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--green-light); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--green-light); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,71,49,0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green-light); }
.mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── LEGAL PAGES (Impressum / Datenschutz) ── */
.legal-hero {
  background: linear-gradient(135deg, #1a4731 0%, #2d6a4f 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.legal-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; position: relative; }
.legal-content {
  padding: 80px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gray-900);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.legal-content a { color: var(--green-mid); }
.legal-content ul { margin: 12px 0 16px 24px; }
.legal-content ul li { font-size: 0.95rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 6px; }
.legal-box {
  background: var(--green-mist);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-box p { margin: 0; color: var(--gray-700); }
.legal-toc {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.legal-toc h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); margin-bottom: 16px; }
.legal-toc ol { margin-left: 20px; }
.legal-toc ol li { margin-bottom: 8px; }
.legal-toc ol li a { font-size: 0.9rem; color: var(--green-dark); text-decoration: none; }
.legal-toc ol li a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }

  .ueber-visual {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 8px auto 24px;
    position: static;
  }
  .ueber-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
  }
  .ueber-img-main .team-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .ueber-img-accent {
    position: static;
    margin: 16px auto 0;
    width: fit-content;
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .karriere-inner { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
}

@media (max-width: 600px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ueber-values { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .kontakt-form-box { padding: 28px 20px; }
  .karriere-form-wrap { padding: 28px 20px; }
}

/* Logo image styles */
.logo-icon {
  overflow: hidden;
  background: none;
  width: 50px;   
  height: 50px;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;   
  border-radius: 8px;  
  display: block;
}
 
    /* Hero image styles */
    .hero-img-placeholder {
      position: relative;
      overflow: hidden;
    }
    .hero-img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: inherit;
    }
    .hero-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(20,60,40,0.3) 100%);
      pointer-events: none;
    }
 
    /* Über uns image styles */
    .ueber-img-main {
      overflow: hidden;
    }
    .ueber-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

/* =========================
   TEAM PAGE
========================= */

/* SECTION */
.team-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8faf9, #eef4f1);
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

/* CARD */
.team-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Hover */
.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* FOTO */
.team-photo {
  width: 115px;
  height: 115px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #7bbf8e, #4f9c6d);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
}

/* NAME */
.team-card h3 {
  font-size: 19px;
  margin-bottom: 6px;
  color: #1e2a24;
}

/* JOB */
.team-card span {
  font-size: 14px;
  color: #6f7d75;
}

/* TOP LINE */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #7bbf8e;
  border-radius: 0 0 8px 8px;
}

/* HIGHLIGHT CHEFIN */
.team-card.highlight {
  border: 2px solid #7bbf8e;
  transform: scale(1.03);
}

.team-card.highlight::after {
  content: "Leitung";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #7bbf8e;
  color: white;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
}

.team-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #4F8A3A 0%, #6AA84F 100%);
  position: relative;
  overflow: hidden;
}

.team-hero-text {
  max-width: 700px;
}

/* LABEL */
.section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* Punkt unter Label */
.section-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  margin: 8px auto 0;
}

/* ÜBERSCHRIFT */
.team-hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

/* TEXT */
.team-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.team-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(123, 191, 142, 0.15);
  border-radius: 50%;
}

.team-hero::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(79, 156, 109, 0.12);
  border-radius: 50%;
}

/* ── TEAM PHOTO SLIDER (Über uns) ── */
.team-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.team-slide-img.active { opacity: 1; }

.team-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--green-dark);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}
.team-photo-nav:hover {
  background: var(--green-dark);
  color: var(--white);
}
.team-photo-nav.prev { left: 16px; }
.team-photo-nav.next { right: 16px; }

/* SECTION */
.rooms-modern {
  padding: 100px 0;
  background: #ffffff;
}

/* ROW */
.room-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

/* ALTERNIEREND */
.room-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.room-text {
  flex: 1;
}

.room-text h2 {
  font-size: 32px;
  margin: 16px 0;
  color: #1e2a24;
}

.room-text p {
  color: #5f6f67;
  line-height: 1.6;
  max-width: 500px;
}

/* BILD */
.room-image {
  flex: 1;
}

.room-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

/* HOVER */
.room-image img:hover {
  transform: scale(1.03);
}

/* LABEL */
.rooms-modern .section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--green-mid);
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .room-row {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 70px;
  }

  .room-row.reverse {
    flex-direction: column;
  }

  .room-text h2 {
    font-size: 26px;
  }
}