/* style.css */

/* Body und Grundlayout (verhindert "Springen" des Footers, sorgt fÃ¼r sticky Footer) */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  /* Damit der Inhalt den kompletten viewport-HÃ¶he beansprucht,
     wenn wenig Content vorhanden ist. */
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

/* Haupt-Container, der den Content umschlieÃŸt */
main {
  flex: 1 0 auto; /* Damit der Footer ans Ende rutscht */
}

/* Footer wird am Ende des Inhalts â€žstickyâ€œ,
   d.h. er bleibt bei wenig Inhalt unten,
   verschiebt sich aber bei viel Inhalt weiter */
footer {
  flex-shrink: 0;
  background-color: #343a40;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Cookie-Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f9fa;
  padding: 1rem;
  border-top: 1px solid #ccc;
  display: none; /* per JS eingeblendet, wenn nicht akzeptiert */
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
  display: inline-block;
}

#cookie-banner button {
  margin-left: 1rem;
}

/* Hero Section */

.hero {
  background: url('../gfx/bg_hero2.png') center center no-repeat;
  background-size: cover;
  color: #fff;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 500px;
  padding-bottom: 200px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Navigation (optional Anpassungen) */
.navbar-brand {
  font-weight: bold;
}

/* Optionale weitere Anpassungen ... */

