/* Grundlayout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #000000;

  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, sans-serif;

  display: flex;
  flex-direction: column;
}

/* Hauptinhalt */
.container {
  flex: 1;
  max-width: 800px;
  width: 100%;

  margin: 0 auto;
  padding: 4rem 1.5rem 100px;

  text-align: center;
}

.logo {
    width: 300px;   /* gewünschte Breite */
    height: auto;   /* Seitenverhältnis beibehalten */
    display: block;
    margin: 20px auto; /* zentriert */
}


/* Überschriften */
h1,
h2,
h3 {
  color: #ff9800;
}

h1 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

/* Normaler Text */
p {
  line-height: 1.6;
  color: #000000;
}

/* Kontaktbereich */
.contact {
  color: #000000;
}

.contact a {
  color: #ff9800;
}

.contact a:hover {
  color: #e65100;
}

/* Öffnungszeiten */
.open {
  color: #000000;
}

/* Download-Button */
.download-button {
  display: inline-block;

  margin-bottom: 2rem;
  padding: 1rem 2rem;

  background: #ff9800;
  color: #111;

  text-decoration: none;
  font-weight: 700;

  border-radius: 10px;

  transition: all 0.2s ease;
}

.download-button:hover {
  background: #ffb74d;
  transform: translateY(-2px);
}

.download-button:active {
  transform: translateY(0);
}

/* Alle Links */
a {
  color: #ff9800;
  text-decoration: none;
}

a:hover {
  color: #e65100;
}

/* Fester Footer */
footer {
  position: fixed;

  bottom: 0;
  left: 0;

  width: 100%;

  padding: 1rem;

  text-align: center;

  border-top: 1px solid #ddd;
  background: #000000;

  z-index: 1000;
}

footer a {
  color: #ff9800;
}

footer a:hover {
  color: #ffb74d;
}

footer span {
  margin: 0 0.5rem;
  color: #777;
}
