@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
    background-color: white;
    font-family: 'Libre Bodoni', serif;
}

body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.impressum{
    background-color: white;
    overflow: auto;
    padding: 3rem 0;
    min-height: 60vh;
    padding-bottom: 8rem;
}

.container-header {
    font-size: 3rem; /* Default Schriftgröße für größere Bildschirme */
    text-align: center;
    padding-top: 5vh;  
  }

  .about-us__text {
    max-width: 1100px;
    margin: 0 auto;
    font-family: sans-serif;
    line-height: 1.8;
    width: 100%;
    text-align: center;
    padding: 0 2rem;
  }

  .about-us__text p {
    text-align: justify;
    text-justify: inter-word;
    text-align-last: center;
  }



  .feature:hover .material-symbols-outlined {
    animation: rotate 1s forwards;
  }
   
   header {
    background-color: rgb(247, 247, 247);
    color: black;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 2.5rem 0;
    opacity: 1;
  }
  
  header a {
    text-transform: unset;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 1s ease;
    cursor: pointer;
    color: black;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
  }
  
  .logo a {
    all: unset;
    padding-right: 2rem;
    font-size: 2rem;
    font-family: cursive;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
  }
  
  .menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .menu li {
    margin: 0 20px;
    position: relative;
  }
  
  .close-icon {
    display: none;
  }
  
  .menu.active .close-icon {
    display: block;
  }
  
  .menu-icon.hidden {
    display: none;
  }
  
  @media screen and (max-width: 768px) {
    .menu-icon {
      display: block;
    }
  
    .menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.9);
      z-index: 999;
      text-align: center;
      padding-top: 60px;
    }
  
    .menu.active {
      display: block;
    }
  
    .menu ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding-top: 5rem;

    }
  
    .menu li {
      margin: 10px 0;
      position: relative;
    }
  
    .menu a {
      color: black;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 2rem;
    }
  }
  
  .material-symbols-outlined {
    font-variation-settings:
      'FILL' 0,
      'wght' 400,
      'GRAD' 0,
      'opsz' 48
  }

  .black.material-symbols-outlined {
    color: #000; /* Schwarz */
  }
  
  .material-symbols-outlined {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    color: white;
    font-size: 2.5;
}
.material-symbols-outlinedone{
    color: black;
}

.menu-icon.active .material-symbols-outlined:nth-of-type(1) {
transform: rotate(45deg) translate(4px, 4px);
}

.menu-icon.active .material-symbols-outlined:nth-of-type(2) {
opacity: 0;
}

.menu-icon.active .material-symbols-outlined:nth-of-type(3) {
transform: rotate(-45deg) translate(4px, -4px);
}

.close-icon {
position: absolute;
top: 25px;
right: 25px;
font-size: 24px;
cursor: pointer;
display: none;
}



@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@media screen and (min-width: 769px) {
    .menu.active {
      display: none;
    }
    .menu-icon {
        display: none;
      }
      .close-icon{
        display: none;
      }
  }



  footer {
    background-color: #f7f7f7;
    padding: 3rem 0;
    width: 100%;
    bottom: 0;
    position: absolute;
    
  }
  .impr.footer {
    background-color: #f7f7f7;
    padding: 3rem 0;
    width: 100%;
    bottom: 0;
    position: absolute;
  }
  
  footer nav {
    text-align: center;
    justify-content: center;
  }
  
  footer nav ul {
    list-style: none;
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  
  footer nav ul li {
    display: inline-block;
    font-size: 16px;
    margin: 0 10px;
    padding: 0;
  }
  
  footer nav ul li:not(:last-child) {
    margin-right: 60px;
  }
  
  footer nav ul li a {
    text-decoration: none;
    color: #333;
  }
  
  footer nav ul li a:hover {
    color:rgba(132,7,169,0.95);
  }
  @media (max-width: 768px) {
    footer{
        padding: 1rem 0;
    }
    .impr.footer{
      padding: 1rem 0;
    }
    footer nav ul li:not(:last-child) {
      margin-right: 0;
      margin-bottom: 10px;
      
    }
    
    footer nav ul li {
      margin-right: 0;
      display: block;
    }
  }