/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    background-image: url("./lib/LSV_75.jpg");
    background-size: cover;
    background-position: center;
    min-height: 250px;
    max-height: 250px;
    padding: 1rem 0;
  }
  
  header nav ul {
    display: flex;
    justify-content: center;
    margin-top: 205px;
    list-style: none;
  }
  
  header nav ul li {
    margin: 0 1rem;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  header nav ul li a:hover {
    text-decoration: underline;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
  }
  
  main {
    flex: 1;
    padding: 2rem 0;
  }
  
  .hero {
    text-align: center;
    padding: 4rem 0;
  }
  
  h2 {
    margin-bottom: 1.5rem;
  }
  
  button,
  .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #B30000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
  }
  
  button:hover,
  .button:hover {
    background-color: #cc0000;
  }
  
  /* Email Style */
  .email-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0d72c4;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .email-button:hover {
    background-color: #1089ec;
  }
  
  /* Footer Stile */
  footer {
    background-color: #333;
    color: white;
    width: 100%;
    position: relative;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background-color: #333;
    width: 80%;
    margin: 0 auto;
  }
  
  .footer-left,
  .footer-right,
  .footer-center {
    flex: 1; /* Alle 3 Bereiche nehmen den gleichen Platz ein */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Links und Icons bleiben links und rechts ausgerichtet */
  .footer-left {
    justify-content: flex-start;
  }
  
  .footer-right {
    justify-content: flex-end;
  }
  
  .footer-left ul,
  .footer-right ul {
    list-style: none;
    display: flex;
  }
  
  .footer-left ul li,
  .footer-right ul li {
    margin-right: 1.5rem;
  }
  
  .footer-left ul li a,
  .footer-right ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-left ul li a:hover,
  .footer-right ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-center img {
    height: 80px;
    width: auto;
  }
  
  .footer-right ul li a {
    font-size: 1.5rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1rem 0;
    background-color: #444;
    color: #bbb;
  }
  
  /* Sicherstellen, dass der Footer immer unten bleibt */
  html {
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  html::-webkit-scrollbar {
    display: none;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex-grow: 1;
  }
  