/* Gemeinschaftspraxis Dr. Lüdecke & Dr. Rösler
   Ruhige, gut lesbare Gestaltung – auch für ältere Patientinnen und Patienten */

:root{
  --gruen:      #2E6E5A;   /* Praxis-Grün */
  --gruen-tief: #1F4B3E;
  --mint:       #E7F0EB;   /* helle Flächen */
  --papier:     #FBFBF8;
  --tinte:      #22302C;
  --linie:      #D5DFD9;
  --akzent:     #B9762A;   /* warmes Bernstein, sparsam */
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}

body{
  margin:0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--tinte);
  background: var(--papier);
}

.wrap{ max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }

h1,h2,h3{ font-family: Georgia, "Times New Roman", serif; line-height:1.25; color: var(--gruen-tief); }
h1{ font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: .4rem 0 1rem; }
h2{ font-size: clamp(1.35rem, 2.6vw, 1.7rem); margin-top: 0; }
h3{ font-size: 1.12rem; margin: 0 0 .35rem; }

a{ color: var(--gruen); }
a:focus-visible{ outline: 3px solid var(--akzent); outline-offset: 2px; }

/* Kopfzeile */
.site-header{
  background:#fff;
  border-bottom: 4px solid var(--gruen);
}
.header-inner{
  display:flex; flex-wrap:wrap; gap:1rem;
  align-items:center; justify-content:space-between;
  padding-top:.9rem; padding-bottom:.9rem;
}
.brand{ display:flex; align-items:center; gap:.7rem; text-decoration:none; color:var(--tinte); }
.brand-caduceus{
  display:grid; place-items:center;
  width:2.6rem; height:2.6rem; border-radius:50%;
  background:var(--gruen); color:#fff; font-size:1.5rem;
}
.brand-text strong{ display:block; font-size:1.05rem; }
.brand-text small{ color:#5c6b66; }

.main-nav{ display:flex; flex-wrap:wrap; gap:.25rem; }
.main-nav a{
  padding:.5rem .8rem; border-radius:.4rem;
  text-decoration:none; color:var(--gruen-tief); font-weight:600;
}
.main-nav a:hover{ background:var(--mint); }
.main-nav a[aria-current="page"]{ background:var(--gruen); color:#fff; }

/* Hero */
.hero{ background: linear-gradient(180deg, var(--mint), var(--papier)); padding: 2.5rem 0 2.8rem; }
.hero-grid{
  display:grid; grid-template-columns: 1.4fr 1fr; gap:2.2rem; align-items:start;
}
.eyebrow{
  margin:0; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  font-size:.82rem; color:var(--akzent);
}
.lede{ font-size:1.13rem; max-width:34rem; }
.hero-contact{ display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1.4rem; }

.btn{
  display:inline-block; padding:.7rem 1.15rem; border-radius:.5rem;
  background:var(--gruen); color:#fff; text-decoration:none; font-weight:700;
  border:2px solid var(--gruen);
}
.btn:hover{ background:var(--gruen-tief); border-color:var(--gruen-tief); }
.btn-ghost{ background:transparent; color:var(--gruen-tief); }
.btn-ghost:hover{ background:var(--mint); }

/* Sprechzeiten-Karte */
.hours-card{
  background:#fff; border:1px solid var(--linie); border-top:5px solid var(--akzent);
  border-radius:.6rem; padding:1.2rem 1.3rem 1rem;
  box-shadow: 0 6px 18px rgba(31,75,62,.08);
}
.hours-card h2{ margin:.1rem 0 .7rem; font-size:1.25rem; }
table.hours{ width:100%; border-collapse:collapse; }
table.hours th, table.hours td{
  text-align:left; vertical-align:top; padding:.5rem .2rem;
  border-bottom:1px solid var(--linie); font-size:.98rem;
}
table.hours tr:last-child th, table.hours tr:last-child td{ border-bottom:none; }
table.hours th{ font-weight:700; color:var(--gruen-tief); width:42%; }
.hours-note{ font-size:.9rem; color:#5c6b66; margin:.7rem 0 .2rem; }

/* Leistungen */
.services{ padding: 2.6rem 0; }
.service-list{
  list-style:none; margin:1.4rem 0 0; padding:0;
  display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:1rem;
}
.service-list li{
  background:#fff; border:1px solid var(--linie); border-left:5px solid var(--gruen);
  border-radius:.5rem; padding:1rem 1.1rem;
}
.service-list p{ margin:.2rem 0 0; font-size:.96rem; color:#3c4a45; }

/* Hinweis / Notfall */
.notice{ background:var(--mint); padding:2.4rem 0; }
.notice-grid{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.notice address{ font-style:normal; }

/* Inhaltsseiten */
.page{ padding:2.4rem 0 3rem; }
.page .wrap{ max-width:820px; }
.kontakt-grid{ display:grid; grid-template-columns:1fr 1fr; gap:2rem; margin-top:1.4rem; }
.card{
  background:#fff; border:1px solid var(--linie); border-radius:.6rem; padding:1.2rem 1.3rem;
}
.card address{ font-style:normal; line-height:1.7; }
.platzhalter{
  background:#FFF7E8; border:1px dashed var(--akzent); border-radius:.5rem;
  padding: .8rem 1rem; color:#6b4e1c;
}

/* Fußzeile */
.site-footer{ background:var(--gruen-tief); color:#dfe9e4; margin-top:0; }
.footer-inner{
  display:flex; flex-wrap:wrap; gap:1rem; align-items:center; justify-content:space-between;
  padding-top:1.1rem; padding-bottom:1.1rem; font-size:.95rem;
}
.site-footer a{ color:#fff; text-decoration:none; margin-left:1rem; }
.site-footer a:hover{ text-decoration:underline; }

/* Mobil */
@media (max-width: 760px){
  .hero-grid, .notice-grid, .kontakt-grid{ grid-template-columns:1fr; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .site-footer a{ margin-left:0; margin-right:1rem; }
}

/* Logo in der Kopfzeile */
.brand-logo{
  display:block;
  height:auto;
  width:min(340px, 70vw);
  max-height:88px;
  object-fit:contain;
}


/* Zusätzliche Feinabstimmung für kleine Bildschirme */
@media (max-width: 480px){
  body{ font-size:1rem; }
  .hero{ padding:1.6rem 0 2rem; }
  .hero-contact .btn{ width:100%; text-align:center; }
  .brand-logo{ width:min(280px, 82vw); }
  .main-nav{ width:100%; justify-content:space-between; }
  .main-nav a{ padding:.45rem .55rem; font-size:.95rem; }
  table.hours th{ width:38%; }
}
