

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

.haus-image {
  width: 100%;                    /* volle Breite */
  max-width: 700px;              /* optional: maximale Breite */
  aspect-ratio: 4 / 3;           /* Höhe richtet sich automatisch */
  margin: 0 auto;                 /* zentriert */
  background: url("../images/hausansicht.jpg") no-repeat center/cover;
  border-radius: 8px;             /* optional: abgerundet */
}





h2{
    margin-bottom:0.5em;
    font-weight:600;
    text-align:center;
    margin-top:2rem;
}
form{
    max-width:400px;
    margin:2rem auto;
    background:#fff;
    padding:1rem;
    border-radius:8px;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    display:grid;
    gap:0.75rem;
}

input,textarea,button{
    padding:0.6rem;
    font-size:1rem;
    border:1px solid #ccc;
        border:1px solid red;
    border-radius:6px;
}

button{
    background:#0077cc;
    color:#fff;
    border:none;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#005fa3;
}
.honeypot{
    display:none;
}


html {
  scroll-behavior: smooth;
}



/*******************************
 Kopfzeile  mit responsivem Hintergrundbild
********************************/

/* Header */
header {
  position: relative;
  text-align: center;
  color: #fff;
  background: url("../images/banner-800.jpg") no-repeat center/cover;
  aspect-ratio: 5 / 1;         /* automatische Höhe nach Bildformat */
  /*max-width: 1000px;            /* maximale Breite des Headers */
  margin: 0 auto;               /* zentriert den Header auf der Seite */
  border-radius: 0.5rem;        /* optional: leicht abgerundete Ecken */
  overflow: hidden;             /* falls was übersteht */
}


/* Text im Vordergrund */
header h1,
header p {
  position: relative;
  z-index: 1;
  color: #fad100;    /* goldgelb  */
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
  padding: 0 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* Nur Größenunterschied */
header h1 {
  margin-top: 0%; /* vertikale Ausrichtung der h1 Schrift */
  font-size: clamp(1rem, 6vw, 3rem);
}

header p {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600; /* optional etwas leichter, wirkt harmonischer */
  line-height: 1.1;   /* Zeilenabstand, standard: 1.2-1.5  */
}









/*******************************
 Fusszeile
******************************* */

footer {
  background-color: #111; /* dunkler Hintergrund */
  color: #fff;            /* Standardtext weiß */
  padding: 1rem;
  text-align: center;
  font-size:0.9rem;
  margin-top:2rem;
}

footer a.footer-link {
  color: #ffffff;           /* weiß */
  text-decoration: underline;
  font-weight: normal;
  transition: color 0.3s, text-shadow 0.3s;
}

footer a.footer-link:hover {
  color: #ffd700;           /* goldgelb beim Hover */
}
footer strong {
  color: white;
}

.phone-img {
  display: inline;
  vertical-align: middle;
  height: 1em; /* passt sich an Textgröße an */
}







