/* ========== Basisstyles ========== */
html {
  font-size: 130%; /* Standard 16px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.4;
  font-size: 1.6rem; /* 16px */
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f9f9f9;
}

/* ========== Überschriften ========== */
h1 {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.5rem);
  margin-bottom: 0.6rem;
}

/* ========== Fließtext ========== */
p {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  margin-bottom: 1rem;
}

/* ========== Kleine Hilfselemente ========== */
small, .small-text {
  font-size: 0.8rem;
}

/* ========== Media Queries für Feintuning ========== */
@media (max-width: 1200px) {
  body {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1.2rem;
  }
}

/* ========== Layout-Container ========== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* ========== Beispiel-Buttons ========== */
button {
  font-size: 1.6rem !important;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  color: #333;
  cursor: pointer;
  background-color: #F2B705;
  transition: background-color 0.3s ease;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #F2B705;
max-width: 500px !important;
font-size: 1.6rem !important;
}
input[type=submit]:hover
{
  background-color: #D0A204;
}
button:hover {
  background-color: #D0A204;
}
input {
  font-size: 1.8rem;
  text-align: center;
  padding: 0.6rem 1.2rem;
  border: 1px solid #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  width: 90%;
  max-width: 400px;
}

input.small {
  font-size: 1.0rem;
  text-align: center;
  padding: 0.2rem 0.4rem;
  border: 1px solid #333;
  border-radius: 2px;
  transition: background-color 0.3s ease;
  width:90%;
  max-width: 400px;
}
.center
{
text-align:center;
width:90%;
}
.imprint
{
font-size: 0.8rem;
text-align:center;

}
.content-full
{
  text-align:left;
  width: clamp(300px, 80vw, 1300px);
    margin: 0 auto;
    padding: 2rem 1rem;
}
/* Banner-Container */
.hero-banner {
  width: 100%;
  /* height: 45vh;  relative Höhe für responsives Verhalten */
  min-height: 35vh;
  max-height: none;
  /*min-height: 300px;
  max-height: 600px;*/

  background-image: url('logoheader.webp'); /* dein Bannerbild */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  position: relative;
}

/* Halbtransparente Ebene für Lesbarkeit (optional) */
/*
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1); /* Abdunkelung */
}


/* Text über dem Bild */
.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
}
