:root {
  --rosa: #f6a6c9;
  --mint: #bfe9df;
  --gelb: #fff2b2;
  --blau: #cfe7ff;
  --text: #333;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fafafa;
  line-height: 1.6;
}

/* HEADER */
.hero {
  background: url("images/header.jpg") center/cover no-repeat;
  height: 320px;
  position: relative;
}

.hero-overlay {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  max-width: 140px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.8);
  padding: 12px 18px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero h1 {
  font-family: "Arial Rounded MT Bold", "Comic Sans MS", Arial, sans-serif;
}


.hero p {
  font-size: 18px;
  color: #555;
}

/* NAV */
nav {
  background: var(--mint);
  text-align: center;
}

nav a {
  display: inline-block;
  padding: 14px 18px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

nav a:hover {
  background: var(--blau);
}

/* SECTIONS */
section {
  max-width: 1000px;
  margin: auto;
  padding: 30px 18px;
}

section.alt {
  background: var(--gelb);
}

/* GALERIE */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* REVIEWS */
.reviews {
  display: grid;
  gap: 15px;
}

.review {
  background: white;
  padding: 15px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.google-link {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: var(--blau);
  padding: 14px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

/* CALL BUTTON */
.call-button {
  display: block;
  margin: 20px auto;
  max-width: 320px;
  background: var(--rosa);
  padding: 18px;
  border-radius: 50px;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

/* FORM */
form {
  max-width: 600px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-top: 6px;
}

button {
  margin-top: 20px;
  background: var(--rosa);
  border: none;
  padding: 16px;
  font-size: 18px;
  border-radius: 40px;
  cursor: pointer;
}

/* MAP & IFRAME */
iframe {
  width: 100%;
  border: none;
  border-radius: 14px;
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: var(--mint);
  text-align: center;
  padding: 15px;
}

/* COOKIE */
#cookie-banner {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  padding: 15px 20px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  display: flex;
  gap: 15px;
  z-index: 9999;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo {
    max-width: 120px;
    padding: 10px 14px;
  }

  .hero h1 {
    font-size: 30px;
  }
/* Anti-Spam Honeypot */
.hp-field {
  display: none;
}
/* Anti-Spam Honeypot */
.hp-field {
  display: none;
}
