body { margin: 0; font-family: 'Open Sans', sans-serif; background: #ffffff; color: #063C27; }

/* TOPBAR – Kontaktleiste oben */ .topbar { background: #063C27; color: white; padding: 10px 0; font-size: 14px; }

.topbar-content { width: 90%; margin: auto; display: flex; justify-content: space-between; align-items: center; }

.callback-btn { background: #095A38; padding: 6px 12px; color: white; text-decoration: none; border-radius: 4px; font-size: 14px; }

/* HEADER – Menü und Logo */ header { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(4px); padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; }

.logo { height: 70px; }

nav a { margin-left: 25px; text-decoration: none; color: #063C27; font-weight: 600; font-size: 18px; }

nav a.active { border-bottom: 2px solid #063C27; padding-bottom: 5px; }

/* HERO-BEREICH – Startseitenbild */ .hero { height: 90vh; background-image: url('img/pflaster.jpg'), url('img/garten.jpg'); background-position: left, right; background-size: 50% 100%, 50% 100%; background-repeat: no-repeat; position: relative; }

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.4); }

.hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #063C27; }

.hero-text h1 { font-size: 60px; line-height: 1.1; font-weight: 800; margin-bottom: 20px; }

.hero-text p { font-size: 26px; color: #095A38; margin-bottom: 30px; }

/* Buttons im Hero */ .hero-buttons a { padding: 12px 26px; margin: 0 10px; border-radius: 6px; text-decoration: none; font-size: 18px; }

.btn-green { background: #063C27; color: white; }

.btn-white { background: white; color: #063C27; border: 2px solid #063C27; }

/* Content-Bereich */ .content { width: 85%; margin: 60px auto; }

.content h1 { font-size: 42px; color: #063C27; margin-bottom: 30px; }

/* Leistungsseite – Grid */ .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.service-box { background: #ffffff; border: 2px solid #e7e7e7; padding: 25px; border-radius: 6px; }

.service-box h2 { font-size: 26px; color: #063C27; margin-bottom: 10px; }

.service-box p { font-size: 18px; color: #333333; }

/* Referenzen-Grid */ .ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }

.ref-box img { width: 100%; height: auto; border-radius: 6px; border: 3px solid #e7e7e7; }

.ref-box p { margin-top: 10px; text-align: center; font-size: 16px; color: #063C27; }

/* Über-uns */ blockquote { margin-top: 30px; padding: 20px; border-left: 5px solid #095A38; background: #f0f7f3; color: #063C27; font-style: italic; font-size: 20px; }

/* Kontaktseite */ #kontakt p { font-size: 20px; margin-bottom: 15px; }

/* Responsive */ @media(max-width: 900px) { .service-grid, .ref-grid { grid-template-columns: 1fr; }

.hero-text h1 { font-size: 40px; }

.hero-text p { font-size: 20px; }

header { flex-direction: column; }

nav a { margin-left: 10px; font-size: 16px; }

.topbar-content { flex-direction: column; font-size: 12px; } }
footer {
  background: #063C27;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}
footer a {
  color: #ffffff;
  text-decoration: underline;
  margin: 0 6px;
}
.footer-content {
  font-size: 14px;
}