/* === Caesars Service – Modernes Design CSS === */

body {
  font-family: 'Roboto', sans-serif;
  background: #f8f9f5;
  color: #222;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HERO-BEREICH */
header.hero {
  background: url('https://www.deine-domain.de/wp-content/uploads/2025/06/gartenbild.jpg') center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin: 0 0 0.5rem 0;
}

.hero-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #cdeac0;
}

.hero-overlay p {
  font-size: 1.1rem;
}

/* BUTTON */
.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.6rem;
  background: #2e7d32;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #1b5e20;
}

/* ABSCHNITTE */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

.services h2,
.why h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.subheading {
  text-align: center;
  color: #777;
  margin-bottom: 2rem;
}

/* LEISTUNGEN */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* UNTERSEITEN */
.sub-hero {
  background: #e0ebe4;
  padding: 4rem 2rem;
  text-align: center;
}

.sub-hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.service-detail ul,
.service-detail ol {
  max-width: 800px;
  margin: 2rem auto;
  padding-left: 1.2rem;
}

.service-detail li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.service-detail p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}

/* WHATSAPP BUTTON */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  font-size: 16px;
  transition: background 0.3s ease;
}
.whatsapp-button:hover {
  background: #1ebd5a;
}
@media (min-width: 768px) {
  .whatsapp-button {
    display: none;
  }
}

/* FORMULAR */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form label {
  font-weight: bold;
}
