@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --col-dark:    #3d5252;
  --col-accent:  #e05a3a;
  --col-light:   #f7f5f2;
  --col-white:   #ffffff;
  --col-text:    #2c2c2c;
  --col-muted:   #4e6060;
  --col-border:  #dde4e4;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --transition:  0.3s ease;
  --fs-body:     19px;
  --fs-small:    0.92rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--col-text);
  background: var(--col-white);
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; }
a { color: var(--col-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--col-dark); }
img { display: block; max-width: 100%; height: auto; }
p { font-size: var(--fs-body); line-height: 1.75; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(61,82,82,0.97);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-logo img {
  height: 44px; width: auto; object-fit: contain;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--col-accent); }
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: white; border-radius: 2px; transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--col-dark) 0%, #2a3d3d 100%);
  padding: 90px 2rem 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(224,90,58,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 800px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--col-accent);
  color: white;
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--col-accent); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: var(--fs-body);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.hero-region {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin-bottom: 2.2rem;
}
.hero-region::before { content: '📍'; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: var(--col-accent);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.btn:hover { background: #c94828; color: white; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: white; border-color: white; }

/* ===== LEISTUNGEN OVERVIEW ===== */
#leistungen .section-inner {
  text-align: center;
}
.leistungen-teaser {
  background: var(--col-light);
  padding: 80px 2rem;
}
.section-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--col-accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--col-dark);
  margin-bottom: 0.8rem;
}
.section-intro {
  max-width: 680px;
  color: var(--col-muted);
  margin: 20px auto 3rem;
  font-size: var(--fs-body);
}
.cards-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--col-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--col-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--col-dark); margin-bottom: 0.6rem; }
.card p { font-size: var(--fs-small); color: var(--col-muted); line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--col-accent);
}
.card-link::after { content: ' →'; }

/* ===== SERVICE SECTIONS ===== */
.section { padding: 90px 2rem; }
.section.alt { background: var(--col-light); }
.section-inner { max-width: 1400px; margin: 0 auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

.service-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 300px;
}
.service-img-wrap:hover { transform: scale(1.015); box-shadow: 0 8px 36px rgba(0,0,0,0.16); }
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--col-dark);
  margin-bottom: 1rem;
}
.service-content p {
  color: var(--col-muted);
  margin-bottom: 1rem;
  font-size: var(--fs-body);
  line-height: 1.75;
}
.bullet-list { list-style: none; margin: 0.5rem 0 1.4rem; }
.bullet-list li {
  padding: 0.45rem 0 0.45rem 1.8rem;
  position: relative;
  color: var(--col-muted);
  font-size: var(--fs-body);
  line-height: 1.65;
  border-bottom: 1px solid var(--col-border);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--col-accent);
  font-weight: 700;
}
.price-box {
  background: var(--col-dark);
  color: rgba(255,255,255,0.85);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
  font-size: var(--fs-small);
  line-height: 1.7;
}
.price-box strong { color: #f4a98a; }
.partner-note {
  margin-top: 0.8rem;
  font-size: var(--fs-small);
  color: var(--col-muted);
  font-style: italic;
}
.partner-note a { font-weight: 600; }

/* ===== REGIONAL ===== */
.regional {
  background: var(--col-dark);
  padding: 70px 2rem;
  text-align: center;
}
.regional h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.regional p { color: rgba(255,255,255,0.75); max-width: 680px; margin: 0 auto 1.5rem; font-size: var(--fs-body); }
.region-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin: 1.5rem 0;
}
.region-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 600;
}

/* ===== ÜBER UNS ===== */
.ueber-uns-intro {
  width: 30%;
  margin: 0 0 0px 40px;
  display: inline-table;
  vertical-align: middle;
}
.ueber-uns-intro p { color: var(--col-muted); font-size: var(--fs-body); }

.team-photo-banner {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition);
  margin-bottom: 3.5rem;
  max-height: 420px;
  width: 60%;
  display: inline-table;
  vertical-align: middle;
}
.team-photo-banner:hover { transform: scale(1.01); }
.team-photo-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
}

.person-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.person-block {
  background: var(--col-light);
  border-top: 4px solid var(--col-accent);
  border-radius: 10px;
  padding: 1.6rem 1.8rem;
}
.person-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--col-dark); margin-bottom: 0.8rem; }
.person-block p { font-size: var(--fs-body); color: var(--col-muted); line-height: 1.7; margin-bottom: 0.5rem; }

.partner-box {
  background: var(--col-dark);
  color: white;
  border-radius: 10px;
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.partner-box h3 { color: white; font-size: 1.1rem; margin-bottom: 0.8rem; grid-column: 1 / -1; }
.partner-box p { font-size: var(--fs-body); color: rgba(255,255,255,0.72); line-height: 1.7; }
.partner-box a { color: #f4a98a; font-weight: 600; }
.partner-features { list-style: none; }
.partner-features li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.partner-features li::before { content: '→'; position: absolute; left: 0; color: var(--col-accent); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--col-accent) 0%, #c94828 100%);
  padding: 90px 2rem;
  text-align: center;
}
.cta-section h2 { color: white; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 2.5rem; font-size: var(--fs-body); }
.cta-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: white;
  color: var(--col-accent);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-white:hover { background: var(--col-dark); color: white; transform: translateY(-2px); }
.btn-white svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-whatsapp:hover { background: #1aaa52; color: white; transform: translateY(-2px); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: #1e2d2d;
  color: rgba(255,255,255,0.7);
  padding: 60px 2rem 30px;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--fs-small); line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--col-accent);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: var(--fs-small); transition: color var(--transition); }
.footer-col a:hover { color: var(--col-accent); }
.footer-address { font-size: var(--fs-small); color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 0.5rem; }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--col-accent); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  color: white; font-size: 2.2rem; cursor: pointer;
  font-family: var(--font-head);
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--col-accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col, .two-col.reversed { grid-template-columns: 1fr; direction: ltr; }
  .two-col.reversed .service-img-wrap { order: -1; }
  .service-img-wrap { min-height: 260px; max-height: 320px; }
  .person-grid { grid-template-columns: 1fr; }
  .partner-box { grid-template-columns: 1fr; }
  .partner-box h3 { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.team-photo-banner {
  width: 100%;
  margin-bottom:25px;
}
.ueber-uns-intro {
  width: 100%;
  margin:0 0 25px 0;
}
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--col-dark);
    padding: 1rem 2rem;
  }
  .nav-links.open a { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 1.5rem; }
  .hero { padding: 60px 1.5rem 60px; }
  .team-photo-banner img { height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
