 /* Grundlayout */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7cfe0;
  color: #4b2a33;
}

/* Header */
.header {
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-logo{
  width: 210px;
  height: auto;
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Navigation */
.nav{
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 700;
}
.nav a{
  text-decoration: none;
  color: #4b2a33;
  letter-spacing: 1px;
}

/* Hero */
.hero{
  text-align: center;
  padding: 10px 16px 22px;
}
.hero h1{
  margin: 18px 0 14px;
  font-size: 36px;
  line-height: 1.1;
}

/* Button */
.btn{
  display: inline-block;
  background: #a24f66;
  color: #fff;
  padding: 14px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

/* Bildreihe */
.hero-images{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* Karten: größer + ohne Text */
.card{
  width: 110px;
  height: 110px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.35);
}

/* Bild füllt Karte */
.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text unter den Bildern AUS */
.card p{ display:none; }

/* Kontaktbereich */
.contact-section{
  padding: 18px 16px 34px;
  max-width: 520px;
  margin: 0 auto;
}

/* Formularbox */
.contact-form{
  background: rgba(255,255,255,0.28);
  padding: 18px;
  border-radius: 22px;
}

/* Inputs */
.contact-form label{
  display: block;
  font-weight: 700;
  margin: 10px 0 6px;
}
.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 2px solid rgba(75,42,51,0.25);
  border-radius: 10px;
  padding: 12px;
  font-size: 16px;
  background: rgba(255,255,255,0.65);
}

/* Button im Formular */
.contact-form button.btn{
  width: 100%;
  margin-top: 14px;
  border: none;
}

/* WhatsApp Hinweis: UNTER das Formular */
.whatsapp{
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  display: block;
}