/* === CUSTOM THEME: LEN ERHATIČ HAUSMEISTERSERVICE ===
   Visitenkarte: Forest Green #2e6b2e | Near Black #1a1a1a | White #ffffff
   Website: Dark hero #1c2b1c | Green #2e6b2e | Light green #4a944a
*/

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

:root {
  --navy:      #1c2b1c;
  --navy-dark: #121e12;
  --green:     #2e6b2e;
  --green-lt:  #4a944a;
  --bg-light:  #f5f5f3;
  --bg-white:  #ffffff;
  --text-dark: #1a1a1a;
  --text-mid:  #4a5568;
  --border:    #e2e8e0;
  --radius:    8px;
  --shadow:    0 4px 20px rgba(46,107,46,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(30,58,95,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green-lt) !important; color: white !important; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #254e7a 100%);
  color: white;
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: rgba(76,175,130,0.12);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(76,175,130,0.2);
  border: 1px solid rgba(76,175,130,0.4);
  color: #a8f0cc;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: #4cdf9a; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green-lt);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, background .2s;
  box-shadow: 0 4px 16px rgba(76,175,130,0.4);
}
.btn-primary:hover { background: #3ecf7e; transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item span:first-child { font-size: 18px; }

/* ── SECTION GENERIC ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 52px;
}

/* ── SERVICES ── */
#leistungen { background: var(--bg-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(30,58,95,0.15);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── ABOUT ── */
#ueber-uns {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: white;
}
#ueber-uns .section-label { color: #4cdf9a; }
#ueber-uns .section-title { color: white; }
#ueber-uns .section-sub { color: rgba(255,255,255,0.75); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}
.about-points { display: flex; flex-direction: column; gap: 20px; }
.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-point-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(76,175,130,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.about-point-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.about-point-text p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #4cdf9a;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ── EINZUGSGEBIET ── */
#gebiet { background: var(--bg-light); }
.gebiet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .gebiet-inner { grid-template-columns: 1fr; }
}
.gebiet-map {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.gebiet-map-icon { font-size: 56px; }
.gebiet-map-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.gebiet-map-sub { font-size: 0.9rem; color: var(--text-mid); }
.gebiet-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.gebiet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.gebiet-list li::before {
  content: '✓';
  background: var(--green);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── KONTAKT ── */
#kontakt { background: var(--bg-white); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
}
.kontakt-info { display: flex; flex-direction: column; gap: 20px; }
.kontakt-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.kontakt-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.kontakt-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.kontakt-item p, .kontakt-item a { font-size: 0.95rem; color: var(--text-mid); text-decoration: none; }
.kontakt-item a:hover { color: var(--green); }
.contact-form {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.contact-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--green); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 16px; font-weight: 700; color: white; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: white; }
.footer-bottom { font-size: 13px; text-align: center; }

/* ── IMPRESSUM ── */
#impressum {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
}
#impressum h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
#impressum h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
#impressum p, #impressum address { font-size: 0.9rem; color: var(--text-mid); font-style: normal; line-height: 1.7; }
#impressum a { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav .nav-links { display: none; }
  section { padding: 56px 20px; }
  .hero { padding: 72px 20px 60px; }
}
