/* Schriftarten */
.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  
  /* Schriftdesign */
  h1 {
      text-align: center;
      border: 10px #000000 solid;
      background-color: #CEF191;
      color: #000000;
      padding: 20px;
      margin: 0;
  }
  
  .center-container {
      background-color: #ffffff;
      width: 80%;
      margin-left: 10%;
  }
  
  .Überschriften,
  .Schriften,
  .Werke {
      background-color: #ffffff;
      margin: auto;
      border-radius: 10px;
  }
  
  .Überschriften {
      color: #000000;
      text-align: center;
      font-size: 2rem;
  }
  
  .Schriften,
  .Werke {
      width: 80%;
  }
  
  .Indexschrift {
      width: 60%;
      text-align: center;
  }
  
  p {
      text-align: center;
      font-size: larger;
  }
  
  /* Hintergrundgestaltung */
  body {
      margin: 0;
      padding: 0;
      background-image: url(images/Firefly\ kleine\ grüne\ Blätter\ fallen\ von\ oben\ nach\ untern\ mit\ hellgrünem\ Hintergrund\ mit\ verlauf\ 1450.jpg);
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      font-size: large;
  }
  
  /* Allgemeines Layout und Stilelemente */
  .navbar {
      background-color: #e5e5e5;
      height: 50px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 25px;
      box-sizing: border-box;
  }
  
  .navbar img {
      width: 60px;
  }
  
  nav {
      background-color: #e5e5e5;
      width: auto;
  }
  
  nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
  }
  
  nav li {
      margin: 0 15px;
  }
  
  nav a {
      color: #000000;
      text-decoration: none;
      display: inline-block;
      padding-top: 15px;
  }
  
  nav a:hover {
      color: #00b2b2;
  }
  
  nav a:active {
      font-weight: bold;
  }
  
  nav ul li a.Dunkelgrau {
      background-color: #cfcfcf;
      padding: 14px 16px;
      margin: 0;
      height: 100%;
      box-sizing: border-box;
  }
  
  h2 {
      text-align: center;
      color: #333;
  }
/*Css Icon*/
  .gg-instagram {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(2);
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
}
.gg-instagram::after,
.gg-instagram::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
}
.gg-instagram::after {
    border: 2px solid;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    top: 3px;
}
.gg-instagram::before {
    border-radius: 3px;
    width: 2px;
    height: 2px;
    background: currentColor;
    right: 1px;
    top: 1px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-links a {
    margin: 5px 0;
}

  /* Tabelle */
  table {
      width: 70%;
      border-collapse: collapse;
      margin: auto;
  }
  
  th,
  td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: left;
  }
  
  th {
      background-color: #f2f2f2;
  }
  
  tr:nth-child(even) {
      background-color: #f9f9f9;
  }
  
  /* Footer */
  footer {
      background-color: #000000;
      color: #ffffff;
      text-align: center;
      padding: 5px;
      left: 0;
      bottom: 0;
      width: 100%;
      font-size: 20px;
  }
  
  footer a {
      color: #ffffff;
      text-decoration: none;
  }
  
  footer a:hover,
  footer a:link,
  footer a:visited,
  footer a:focus,
  footer a:active {
      color: #ffffff;
  }
  
  
  /* Bild-Styling */
  .images {
      display: block;
      margin: auto;
      width: 70%;
      border: 2px solid #000000;
  }
  
  .pictures {
      display: flex;
      justify-content: center;
  }
  
  .picture {
      width: 600px;
      height: 500px;
      margin: 10px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }
  
  .picture:hover {
      transform: translateY(-5px) scale(1.1);
  }
  
  .picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px;
  }
  
  /* Slider */
  .Slider-wrapper {
      position: relative;
      max-width: 60rem;
      margin: 0 auto;
  }
  
  .Slider {
      display: flex;
      aspect-ratio: 16/9;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      box-shadow: 0 1.5rem -0.75rem hsla(0, 0%, 0%, 0.25);
      border-radius: 0.5rem;
  }
  
  .Slider img {
      flex: 1 0 100%;
      scroll-snap-align: start;
      object-fit: cover;
  }
  
  .Slider-nav {
      display: flex;
      column-gap: 1rem;
      position: absolute;
      bottom: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
  }
  
  .Slider-nav a {
      width: 1rem;
      height: 1rem;
      border-radius: 50%;
      background-color: #ffffff;
      opacity: 0.75;
      transition: opacity ease 250ms;
  }
  
  .Slider-nav a:hover {
      opacity: 1;
  }
  .Slider-nav a.active {
    background-color: #555; /* Dunkelgraue Farbe für den aktiven Punkt */
}
  /* Flexbox-Container */
  .Wandern {
      display: flex;
      margin: auto;
      border-radius: 10px;
      width: 70%;
  }
  
  .Container {
      padding: 2rem;
  }
  
/* CSS für die Navigation */

.menu-icon {
    display: none; /* Anfangs nicht anzeigen */
    font-size: 30px;
    cursor: pointer;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    padding-top: 15px;
}

nav a:hover {
    color: #00b2b2;
}

nav a:active {
    font-weight: bold;
}

nav ul li a.Dunkelgrau {
    background-color: #cfcfcf;
    padding: 14px 16px;
    margin: 0;
    height: 100%;
    box-sizing: border-box;
}

/* Hamburger-Schaltfläche und Dropdown-Menü für kleinere Bildschirme */
@media screen and (max-width: 700px) {
    .menu-icon {
        display: block;/* Bei kleinen Bildschirmen anzeigen */
    }
   
    nav {
        position: relative; /* Relative Positionierung */
    }

    nav ul {
        width: 100%;
        background-color: #e5e5e5;
        padding: 0;
        display: none; /* Dropdown-Menü standardmäßig ausblenden */
        flex-direction: column;
        position: absolute; /* Absolute Positionierung */
        top: 100%; /* Position unterhalb des Navigationsbereichs */
        left: 0;
        z-index: 1; /* Z-Index anpassen, um über anderen Inhalten zu bleiben */
    }

    nav li {
        text-align: center;
        margin: 0;
    }

    nav a {
        display: block;
        padding: 15px 0;
    }

    nav ul.show {
        display: flex; /* Dropdown-Menü anzeigen, wenn die Klasse 'show' angewendet wird */
    }

    .content {
        margin-top: 50px; /* Inhalte nach unten schieben, um Platz für die Navigation zu machen */
    }
}


  /* Responsive Design */
  @media screen and (max-width: 1024px) {
      .Werke {
          width: 70%;
      }
  }
  
  @media screen and (max-width: 700px) {
      nav {
          width: 100%;
          margin-top: -5px;
      }
  
      nav li {
          display: block;
          background-color: #e5e5e5;
          text-align: center;
      }
  
      .Überschriften {
          width: 50%;
          font-size: 1.8rem; /* Beispielgröße für kleinere Bildschirme */
      }
  }
  
  @media screen and (max-width: 500px) {
      .Werke {
          width: 70%;
      }
  
      .Überschriften {
          width: 60%;
          font-size: 1.5rem; /* Beispielgröße für noch kleinere Bildschirme */
      }
  }
  
  @media screen and (max-width: 400px) {
      .Überschriften {
          width: 100%;
          font-size: 1.2rem; /* Beispielgröße für sehr kleine Bildschirme */
      }
  }
  
  @media screen and (max-width: 800px) {
      .pictures {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: auto;
      }
  
      .picture {
          width: 100%;
          margin: 0;
      }
  }
  
  @media screen and (orientation: landscape) {
      .Werke {
          width: 50%;
      }
  
      .Überschriften {
          width: 20%;
      }
  }
  
  @media screen and (max-width: 1200px) {
      .center-container {
          width: 90%;
          margin-left: 5%;
      }
  }
  
  @media screen and (max-width: 600px) {
      .Indexschrift {
          width: 80%;
      }
  
      .pictures {
          display: grid;
          grid-template-columns: 1fr;
      }
  
      .picture {
          width: 100%;
      }
  }
  
  @media screen and (max-width: 350px) {
      nav ul {
          flex-direction: column;
      }
  
      nav li {
          margin: 0;
      }
  
      nav a {
          padding-top: 10px;
      }
  }
  