/*
Theme Name: GrünWerk Hausmeisterservice
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: WordPress Theme für Hausmeisterservice, Objektbetreuung, Gebäudereinigung, Gartenpflege und Winterdienst.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: gruenwerk
*/

:root{
  --bg:#f5f3ee;
  --bg-soft:#e9eee8;
  --white:#ffffff;
  --text:#2d3b34;
  --muted:#5a655f;
  --green:#2f6d58;
  --green-dark:#17362b;
  --green-mid:#214d40;
  --gold:#f1c14f;
  --shadow:0 12px 30px rgba(0,0,0,.08);
  --radius:28px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
.site-header{
  position:sticky;top:0;z-index:1000;
  backdrop-filter: blur(10px);
  background:rgba(23,54,43,.88);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 0;
  gap:20px;
}
.brand{
  font-size:1.35rem;font-weight:700;letter-spacing:.2px;
}
.nav-menu{
  display:flex;gap:20px;flex-wrap:wrap;align-items:center;
}
.nav-menu a{color:#fff;opacity:.92}
.nav-menu a:hover{opacity:1}
.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:18px;
  font-weight:700;
  transition:transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 10px 22px rgba(0,0,0,.15)}
.btn-secondary{background:#fff;color:var(--green-dark);box-shadow:0 10px 22px rgba(0,0,0,.10)}
.btn-outline{border:2px solid var(--green);color:var(--green)}
.hero{
  position:relative;overflow:hidden;color:#fff;
  background:
    linear-gradient(90deg, rgba(19,57,45,.9) 0%, rgba(19,57,45,.74) 40%, rgba(19,57,45,.18) 74%),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-inner{
  min-height:760px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  align-items:center;
  padding:80px 0;
}
.eyebrow{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.22);
  margin-bottom:18px;
  font-size:.92rem;
}
.hero h1{
  font-size:clamp(2.5rem, 5vw, 4.5rem);
  line-height:1.05;
  margin:0 0 18px;
}
.hero p.lead{
  font-size:clamp(1.1rem, 2vw, 1.45rem);
  max-width:720px;
  color:rgba(255,255,255,.92);
  margin:0 0 14px;
}
.hero .highlight{
  color:var(--gold);
  font-size:1.35rem;
  font-weight:700;
  margin:10px 0 0;
}
.hero-actions{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-top:34px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
  max-width:720px;
}
.stat{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  padding:18px;
  backdrop-filter:blur(8px);
}
.stat strong{
  display:block;
  font-size:2rem;
  line-height:1.1;
}
.hero-figure{
  display:flex;justify-content:flex-end;align-items:flex-end;height:100%;
}
.hero-figure img{
  max-height:640px;width:auto;object-fit:contain;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.32));
  border-radius:24px;
}

section{padding:88px 0}
.section-head{
  max-width:860px;margin:0 auto 50px;text-align:center;
}
.section-head h2{
  margin:0 0 16px;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.1;
}
.section-head p{
  margin:0;color:var(--muted);font-size:1.08rem;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
  display:grid;
  grid-template-columns:1.1fr .9fr;
  min-height:310px;
}
.service-content{padding:26px}
.service-icon{
  font-size:2rem;
  color:var(--green);
  margin-bottom:14px;
}
.service-card h3{
  margin:0 0 12px;
  font-size:2rem;
  line-height:1.1;
  color:var(--green-mid);
}
.service-card p{
  margin:0;
  color:var(--muted);
  font-size:1rem;
}
.service-media{
  position:relative;
  min-height:310px;
  background-size:cover;
  background-position:center;
}
.service-media::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(270deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.58) 100%);
}

.center-cta{text-align:center;margin-top:42px}
.center-cta h3{font-size:2rem;margin:0 0 20px;color:var(--green-dark)}

.features-wrap{background:rgba(255,255,255,.65)}
.features-grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:40px;
  align-items:start;
}
.feature-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.feature-card{
  background:#fff;
  border-radius:24px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.feature-card .check{
  font-size:1.6rem;
  color:var(--green);
  margin-bottom:8px;
  font-weight:700;
}

.banner{
  position:relative;color:#fff;overflow:hidden;
  background:
    linear-gradient(90deg, rgba(19,57,45,.92) 0%, rgba(19,57,45,.84) 44%, rgba(19,57,45,.28) 78%),
    url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.banner-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  min-height:420px;
  align-items:center;
}
.banner h2{font-size:clamp(2rem, 4vw, 3.2rem);line-height:1.1;margin:0 0 16px}
.banner p{font-size:1.08rem;color:rgba(255,255,255,.88);max-width:720px}
.banner-figure{
  display:flex;justify-content:flex-end;
}
.banner-figure img{
  max-height:340px;border-radius:30px;box-shadow:0 16px 40px rgba(0,0,0,.26)
}

.steps-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:start;
}
.steps-list{
  display:grid;gap:16px;margin-top:26px;
}
.step{
  background:#fff;
  border-radius:26px;
  padding:24px;
  box-shadow:0 10px 28px rgba(0,0,0,.07);
}
.step h3{margin:0 0 8px;color:var(--green-mid);font-size:1.5rem}
.step p{margin:0;color:var(--muted)}
.image-panel{
  background:#fff;padding:14px;border-radius:32px;box-shadow:0 16px 40px rgba(0,0,0,.10)
}
.image-panel img{
  width:100%;height:460px;object-fit:cover;border-radius:24px
}

.support-section{background:var(--bg-soft)}
.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:36px;
}
.support-item{
  background:#fff;
  padding:22px;
  border-radius:24px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  color:#44514b;
  font-size:1.02rem;
}

.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:32px;
  align-items:center;
}
.contact-cards{
  display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:26px;
}
.contact-card{
  background:#fff;padding:24px;border-radius:24px;box-shadow:0 10px 28px rgba(0,0,0,.07)
}
.contact-card.full{grid-column:1 / -1}
.contact-card h3{margin:0 0 8px;color:var(--green-mid)}
.contact-card p{margin:0;color:var(--muted)}
.footer{
  background:var(--green-dark);
  color:#fff;
  padding:56px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.footer p, .footer li{color:rgba(255,255,255,.82)}
.footer h3, .footer h4{margin-top:0}
.footer ul{list-style:none;padding:0;margin:0}
.footer li+li{margin-top:8px}

.simple-page{padding:60px 0}
.simple-page .entry{
  background:#fff;border-radius:24px;padding:28px;box-shadow:var(--shadow)
}

@media (max-width: 1100px){
  .hero-inner, .banner-inner, .features-grid, .steps-grid, .contact-grid{
    grid-template-columns:1fr;
  }
  .services-grid{grid-template-columns:1fr 1fr}
  .hero-figure, .banner-figure{justify-content:center}
}
@media (max-width: 760px){
  .nav-menu{display:none}
  .hero-inner{min-height:auto;padding:70px 0 60px}
  .hero-stats{grid-template-columns:1fr}
  .services-grid, .feature-cards, .support-grid, .contact-cards{grid-template-columns:1fr}
  .service-card{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .service-media{min-height:220px}
  .image-panel img{height:320px}
  section{padding:72px 0}
  .hero h1{font-size:2.5rem}
}
