body {
    font-family: "Century Gothic", "Lato", sans-serif;
  }
  
  a {
    text-decoration: none;
  }
  
  p, li {
    font: 1.1em sans-serif;
    line-height: 1.5;
    text-align: justify;
    text-align: justify;
      }

  .phero {
    color: #5b5b5b;
    font-size: 1.4rem;
  }

  .plogo {
    color: #000000;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;  
    line-height: 1.0;
  }

  .plogosub {
    color: #5b5b5b;
    font-size: 1.2rem;
    text-align: center;  
    line-height: 1.0;

  }

  
  .et-hero-tabs {
 
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      position: relative;
      text-align: center;
      padding: 0px 1em;
    
    }

  .logo {
    display: flex;
    justify-content: center;
    width: 15%;
  }
  
  .et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    background: #ffffff;
    text-align: center;
    padding: 0px 1em;
  }
  
  .et-hero-tabs h1,
  .et-slide h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
  }
  
  .et-hero-tabs h3,
  .et-slide h3 {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    opacity: 0.6;
  }
  
  .et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    box-shadow: 0 0 20px #00000057;
    background: #fff;
    z-index: 10;
    border-top: solid 1px;
    border-bottom: solid 1px;
  }
  
  .et-hero-tabs-container--top {
    position: fixed;
    top: 0;
  }
  
  .et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.9s ease;
  }
  
  .et-hero-tab:hover {
    color: #000000;
    background:  0 20px orange;
    transition: all 0.7s ease;
  }
  
  .et-hero-tab:active {
    color: #ff3c00;
    background:  0 20px #ff3c00;
  }

  .et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: orange;
    transition: left 0.5s ease;
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
  }
  
  .grid-container .left,
  .grid-container .right {
    padding: 20px;
  }
  
  @media (min-width: 800px) {
    .et-hero-tabs h1,
    .et-slide h1 {
      font-size: 3rem;
    }
    .et-hero-tabs h3,
    .et-slide h3 {
      font-size: 1rem;
    }
    .et-hero-tab {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 799px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }
  
  .circle-navigation {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ein hoher z-index-Wert, damit es im Vordergrund bleibt */
  }
  
  .circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: darkgrey;
    margin: 5px;
    transition: background-color 0.3s;
  }
  
  .circle.active {
    background-color: orange;
  }

  .footer {
        padding: 2px;
        text-align: center;
        bottom: 0;
        border-top: solid 1px;
        border-color: #868686;
        background-color: #ffffff;
        z-index: 500;
  }

  /* Responsive Design für kleine Viewports */
@media (max-width: 799px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
    
    .grid-container .right {
      order: 2;
    }
  }
  

  #projectlist {
    list-style-type: none;
    padding: 0;
    text-align: left; /* Sicherstellen, dass der Text linksbündig ist */
}
  
.project-description {
    text-align: justify; 
    margin-left: 20px; /* Optional: Einrückung für die Beschreibung */
}

  #projectlist li {
    margin-bottom: 10px;
  }
  
  #projectlist li a {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  #contactlist {
    list-style-type: none;
    padding: 0;
    text-align: left; /* Sicherstellen, dass der Text linksbündig ist */
}


  #contactlist li {
    margin-bottom: 10px;
  }
  
  #contactlist li a {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }


  #gallery img {
    width: 150px; /* Größe der Thumbnails */
    height: auto;
    cursor: pointer;
    margin: 5px;
  }
  
  #gallery img:hover {
    opacity: 0.8;
  }

  .gallery {

    text-align: left;

  }
  
  @media (max-width: 799px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
    
    .grid-container .right {
      order: 2;
    }
  }
  
  /* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Flexbox Layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Media Queries for Small Screens */
@media (max-width: 768px) {
  .header, .content, .footer {
    padding: 15px;
  }

  .content {
    font-size: 1rem;
  }
}
  
