body {
    font-family: 'Inter', sans-serif;;
    margin: 0;
    /* background: #7691be; */
    /* background: linear-gradient(to right, #0e1741, #2575fc); */
    /* background-color: #466395;
    background-image: url("https://www.transparenttextures.com/patterns/60-lines.png"); */
    background-image:  linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 18, 32, 0.85)), url("/images/Download.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background: linear-gradient(-45deg,rgba(247, 208, 92, 0.7), rgba(247, 208, 92, 0.9),  rgba(25, 47, 86, 0.9), rgba(34, 55, 90, 0.8));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite; */
    background-color: #f9f9f9;
    color: #fff;
    height: 100%;
  }
  
  html {
    min-height: 100%;
  }


  :root {
    --radius: 24px;
    --yellowt: rgba(248, 214, 115, 0.6);
    --yellow: rgba(255, 180, 50, 0.9);
    --yellow-light: rgba(247, 208, 92, 0.9);
    --bluet: rgba(34, 55, 90, 0.3);
    --blue: rgba(25, 47, 86, 0.7);
    --bluetn: rgba(34, 55, 90, 0.8);
    --bluetnn: rgba(34, 55, 90, 0.99);
  }
  header, footer {
    padding: 2rem;
    text-align: center;
  }
  header.cover {
    padding-top: 0rem;
    padding-bottom: 1rem;
    margin-top: 0;
  }
  .dark-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--bluet) 100%);
    color: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(2px);
  }
  .dark-dark-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--bluet) 100%);
    color: rgba(255,255,255,0.9);
    padding: 2rem 4rem 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(2px);
  }
  .dark-dark-section h2 {
    color: rgba(255,255,255,0.9);
  }
  .highlight-button {
    background-color: var(--yellow);
    color: rgba(30, 30, 30, 0.9);
    padding: 1rem 2rem;
    margin: 1rem auto;
    display: inline-block;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.1s ease-in-out, background-color 0.3s;
  }
  .highlight-button:hover {
    transform: translateY(-2px);
    background-color: #ffe79f;
  }

  .highlight-button-dark {
    background-color: var(--blue);
    color: rgba(255,255,255,0.9);
    padding: 1rem 2rem;
    margin: 1rem auto;
    display: inline-block;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.1s ease-in-out, background-color 0.3s;
  }
  .highlight-button-dark:hover {
    transform: translateY(-2px);
    background-color: #ffe79f;
  }
  h1, h2, h3, h4 {
    font-weight: 600;
  }
  h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }
  h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
  p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
  }
  .light-yellow {
    background: linear-gradient(135deg, #f7d97683 0%, #f0b4293c 100%);
    color: rgba(0,0,0,0.9);
    padding: 2rem;
    border-radius: var(--radius);
    backdrop-filter: blur(2px);
  }
  .button-row {
    width: 60%;
    display: flex;
    flex-wrap: wrap;      /* ➜ erlaubt Zeilenumbruch */
    justify-content: center; /* ➜ zentriert auch bei Umbruch */
    margin: 0 auto;
    gap: 1rem; /* Abstand zwischen den Buttons */
  }
   .navbar {
    background-color: var(--bluetn);
    color: white;
    position: sticky;
    top: 0;
    width: calc(100% - 2rem);
    margin: 1rem auto;
    z-index: 1000;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    backdrop-filter: blur(2px);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
  
  .nav-logo-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .nav-logo {
    color: var(--yellow);
    text-decoration: none;
    font-weight: bold;
  }
  
  .logo-img {
    max-height: 40px;
  }
  
  .logo-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
  }
  
  .nav-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
  }
  
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .nav-menu li {
    margin-left: 1.5rem;
  }
  
  .nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover,
  .nav-menu a:focus {
    color: var(--yellow);
  }
  
  /* Mobile Navigation */
  @media (max-width: 909px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-menu {
      position: absolute;
      top: calc(100% + 1rem);
      left: 0;
      right: 0;
      background-color: var(--bluetnn);
      flex-direction: column;
      display: none;
      border-radius: var(--radius) var(--radius) var(--radius) var(--radius);
      transition: transform 0.3s ease, opacity 0.3s ease;
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
    }
  
    .nav-menu.active {
      display: flex;
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }
  
    .nav-menu li {
      margin: 1rem 0;
      text-align: center;
    }
  
    .nav-menu a {
      padding: 1rem;
      display: block;
    }
  }

  .page-content section { margin-bottom: 3rem; }
  .page-content section.hero {
    margin-bottom: 0; /* oder 0, wenn du gar keinen Abstand willst */
  }
  .download-button {
    display: inline-block;
    background-color: var(--yellow);
    color: #000000;
    padding: 1rem 2rem;
    margin-top: 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  

  main {
    margin-top: 0;
  }

  .download-button:hover {
    background-color: #ffe79f;
  }

  .page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }
  
  .button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .button-group .highlight-button {
    min-width: 160px;
  }
  
  .plakat-img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  @media (min-width: 909px) {
    .plakat-img {
      width: 50%;
    }
  }
  
  .termine {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
  }
  
  .termin {
    background: linear-gradient(135deg, #f7d9766a 0%, #f0b4293c 100%);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .termin:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }
  
  .termin h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
  }

  .page-content ul {
    list-style-type: none;   /* entfernt die Aufzählungspunkte */
    padding-left: 0;         /* entfernt den linken Einzug */
    margin-left: 0;          /* optional, um auch den Außenabstand zu entfernen */
  }

  .nav-logo-content {
    display: flex;
    align-items: center; /* vertikal zentrieren */
    gap: 0.8rem;          /* Abstand zwischen Logo und Text */
  }
  
  .logo-img {
    max-height: 32px;     /* Höhe passend zur Navbar */
  }

  .social-icons { text-align:center; padding: 1rem; }
.social-icons a { margin: 0 0.5rem; font-size:1.5rem; color: var(--blue); }
.social-icons a:hover { color: #f8d673; }

.hero {
  /* background: linear-gradient(135deg, #f7d976 0%, #f0b429 100%); */
  background-color: #fdd18400;
  padding: 0rem 0rem 2rem;
  text-align: center;
  border-radius:  var(--radius)  var(--radius) var(--radius) var(--radius);
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3); */
  margin: 0rem auto;
  margin-bottom: 0rem;
  max-width: 1000px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: rgba(255, 251, 240, 0.9);
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 3rem;
  color: #939393;
}

.hero-button {
  background-color: var(--blue);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #43516b;
}

footer a {
  color: var(--blue); /* Beispiel: ein Gelbton */
  text-decoration: none; /* Optional: keine Unterstreichung */
}

footer a:hover {
  color: #FFA500; /* Beispiel: dunkleres Gelb/Orange beim Hover */
}

.left-align-text {
  text-align: left;
}

.left-align-text ul,
.left-align-text ol {
  padding-left: 1.5em;
}