/* Kugelkutsche Pastel Ice-Cream Theme */

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #faf8f2;
  /* Eiswaffel-Pattern */
  background-image:
    linear-gradient(45deg, rgba(183,156,100,0.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(183,156,100,0.12) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(183,156,100,0.12) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(183,156,100,0.12) 75%);
  background-size: 28px 28px;
  background-color: #fff8ec; /* soft vanilla */
  color: #3a2e2a;
  font-family: "Poppins", sans-serif;
}



header {
  text-align: center;
  padding: 30px 0;
}

.logo {
  max-width: 200px;
  width: 100%;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 60px 20px;
position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffe6f1; /* rosa pastell */
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
}

.hero::before {
  top: -80px;
  left: -80px;
}

.hero::after {
  bottom: -80px;
  right: -80px;
  background: #d9f2ff; /* baby blue */
}

.hero h1 {
  font-size: 2.6rem;
  color: #e48aa6; /* pastel pink headline */
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #2d4c62;
}

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px auto;
  padding: 0 20px;
  max-width: 1200px;
}

.feature-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 2px solid #b79c64; /* soft caramel border */
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
}

.feature-box h2 {
  color: #83b8d8; /* ice blue */
  margin-bottom: 10px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #e48aa6; /* pink button */
  color: white;
  padding: 14px 28px;
  border-radius: 32px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #d2b04c; /* gold accent */
}

.btn:hover {
  background: #83b8d8; /* hover becomes ice blue */
}

/* IMAGE GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  border-radius: 14px;
  border: 3px solid #e48aa6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* FORM */
.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #83b8d8;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.2s;
  background: #fff;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #e48aa6;
  outline: none;
  box-shadow: 0 0 6px rgba(228,138,166,0.4);
}

.contact button {
  width: 100%;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #83b8d8;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  color: #fff;
  border-top: 4px solid #d2b04c;
  margin-top: 40px;
}

/* Cookie Banner */
#cookie-banner {
  font-family: inherit;
  font-size: 0.9rem;
}
