/* Reset & Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f9fd; /* Hellblauer Hintergrund */
    color: #222;
  }
  
  /* Layout */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    background: #012c45; /* Dunkelblau passend zum Logo */
    color: white;
    padding: 2.5rem 1rem;
    text-align: center;
  }
  
  header img {
    height: 100px; /* Logo größer */
    margin-bottom: 1.2rem;
  }
  
  nav {
    margin-top: 1rem;
  }
  
  nav a {
    color: #aad8f0;
    margin: 0 1.2rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
  }
  
  nav a:hover {
    color: #ffffff;
  }
  
  nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }
  
  /* Inhalt */
  .container {
    flex: 1;
    max-width: 1000px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
  }
  
  .center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Posts */
  .post {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.2s ease;
  }
  
  .post:hover {
    transform: translateY(-2px);
  }
  
  .post h2 {
    margin-bottom: 0.5rem;
  }
  
  .post small {
    color: #888;
    font-size: 0.9em;
  }
  
  .post img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 1rem 0;
    object-fit: cover; /* Bild wird auf die Größe des Containers angepasst */
    max-height: 500px; /* Optional: Begrenze die maximale Höhe */
  }
  
  /* Modifizierte Buttons */
  .contact-link {
    text-decoration: none;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 50px;  /* Abgerundete Ecken */
    display: inline-block;
    width: auto;
    max-width: 300px; /* Optionale Maximalbreite */
    transition: all 0.3s ease;
    background-color: #007bff; /* Blau */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-link:hover {
    background-color: #0056b3; /* Dunkleres Blau für den Hover-Effekt */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-link:active {
    background-color: #004085; /* Noch dunkleres Blau beim Klicken */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  /* Entfernt Aufzählungspunkte bei der Kontakt-Liste */
  .contact-list {
    list-style: none; /* Entfernt die Aufzählungszeichen */
    padding: 0;
    margin: 0;
  }
  
  .contact-list li {
    margin: 1.5rem 0;
  }
  
  /* Footer */
  footer {
    background: #012c45;
    color: #aad8f0;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9em;
    margin-top: auto;
  }
  