/* ========= Look A: Clean / medizinisch ========= */
:root{
  --bg:#ffffff;
  --bg-soft:#f7fbf9;           /* sehr helles Grün */
  --text:#0f172a;
  --muted:#334155;
  --line:#e2e8f0;

  --primary:#1b8f5a;           /* ruhiges Klinik-Grün */
  --primary-dark:#15724a;
  --accent:#0ea5e9;            /* dezentes Blau */
  --focus:#2563eb;

  --card:#ffffff;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.05);
  --radius: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
}
a{ color:inherit; }
a:focus, button:focus, input:focus, textarea:focus{
  outline: 3px solid rgba(37,99,235,0.25);
  outline-offset: 2px;
}
img{ max-width:100%; height:auto; display:block; }

.container{ width:min(1120px, 92%); margin:0 auto; }
.section{ padding:56px 0; }
.grid{ display:grid; gap:22px; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 920px){ .grid-2,.grid-3{ grid-template-columns:1fr; } }

/* Header / Nav */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 0; gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}

.brand-title{ font-weight:800; letter-spacing:.2px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:-3px; }

.nav-toggle{
  display:none;
  padding:8px 10px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:800;
}
.nav{ display:flex; align-items:center; gap:10px; }
.nav a{
  text-decoration:none;
  font-size:14px; font-weight:800;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{ background:#f1f5f9; }
.nav a.active{ background: rgba(14,165,233,.12); color:#075985; }

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }
  .nav{ display:none; flex-direction:column; align-items:flex-start; padding:10px 0 14px; }
  .nav.open{ display:flex; }
}


/* logo */


.brand-logo{ height:100px; max-width:300px; }

@media (max-width: 480px){
  .brand-logo{ height:44px; max-width:180px; }
}





/* Hero */
.hero{
  padding:70px 0 56px;
  background:
    radial-gradient(900px 320px at 18% 8%, rgba(27,143,90,.16), transparent 60%),
    radial-gradient(900px 320px at 82% 0%, rgba(14,165,233,.12), transparent 55%),
    linear-gradient(var(--bg), var(--bg-soft));
  border-bottom:1px solid var(--line);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:center;
}
@media (max-width: 920px){ .hero-inner{ grid-template-columns:1fr; } }

h1{ font-size: clamp(30px, 3.4vw, 46px); line-height:1.08; margin-bottom:12px; }
.lead{ font-size:16px; color:var(--muted); max-width:64ch; }

.kicker{
  font-weight:900;
  color:var(--primary);
  letter-spacing:.3px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:8px;
}

.hero-card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:var(--card);
  box-shadow: var(--shadow);
}
.hero-media{
  height:180px;
  background: linear-gradient(135deg, rgba(27,143,90,.95), rgba(14,165,233,.78));
}
.hero-card .pad{ padding:16px; }

.badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
}

.quote{
  margin-top:14px;
  padding:12px 14px;
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:14px;
  color:var(--muted);
  font-style:italic;
  box-shadow: var(--shadow-soft);
}

/* Cards */
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background:var(--card);
  padding:18px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.02);
}
.card h3{ font-size:16px; margin-bottom:8px; }
.card p{ color:var(--muted); font-size:14px; }

ul.clean{ margin-left:18px; color:var(--muted); }
ul.clean li{ margin:8px 0; }

/* Buttons */
.btn-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:900;
  font-size:14px;
}
.btn-primary{
  background: var(--primary);
  border-color: var(--primary);
  color:#fff;
}
.btn-primary:hover{ background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-ghost{ background:#fff; }
.btn-ghost:hover{ background:#f1f5f9; }

/* Page header */
.page-header{
  padding:40px 0;
  background: var(--bg-soft);
  border-bottom:1px solid var(--line);
}
.page-header h1{ font-size:32px; }
.page-header p{ color:var(--muted); max-width:72ch; }

/* Forms */
form{ display:grid; gap:12px; max-width:720px; }
label{ font-weight:900; font-size:14px; }
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  font:inherit;
  background:#fff;
}
textarea{ min-height:140px; resize:vertical; }

/* Footer */
.site-footer{ border-top:1px solid var(--line); padding:26px 0; }
.footer-inner{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:#475569; font-size:13px;
}
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer-links a{ text-decoration:none; color:#475569; }


/* ===== Page banner images (Leistungen / Kontakt) ===== */


.image-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}







/* ===== Kontakt page layout ===== */
.kontakt-layout {
  display: grid;
  grid-template-columns: 120px 1fr; /* small image + text */
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .kontakt-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Very small, professional photo */
.kontakt-photo {
  width: 200px;
  height: auto;
  border-radius: 14px;
  display: block;
}

/* Contact text */
.kontakt-details h3 {
  margin-bottom: 12px;
}

.kontakt-details p {
  margin-bottom: 10px;
}


/* Kontakt links – different colors */
.phone-link {
  color: #1b8f5a;          /* medical green */
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.email-link {
  color: #0ea5e9;          /* calm blue */
  font-weight: 600;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}


/* ===== Leistungen page image (reduced size) ===== */
.leistungen-image {
  max-height: 260px;     /* ✅ reduce height (try 220–300px) */
  width: 100%;
  object-fit: cover;     /* crops nicely, no stretching */
  display: block;
  border-radius: 14px;
}

.leistungen-image-wrap {
  padding: 0;
  overflow: hidden;
}



/* ===== Florence Nightingale quote box ===== */
.quote-box {
  display: grid;
  grid-template-columns: 80px 1fr;   /* small image + text */
  gap: 16px;
  align-items: center;

  margin-top: 16px;
  padding: 14px 16px;

  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* Small portrait */
.quote-photo {
  width: 80px;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Quote text */
.quote-text .quote {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 6px;
}

.quote-author {
  font-size: 13px;
  color: #475569;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .quote-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .quote-photo {
    margin: 0 auto;
  }
}

