@font-face {
    font-family: Geist;
    src: url('fonts/Geist-Light.ttf')
    format("opentype");
    }

    @font-face {
        font-family: GeistSemiBold;
        src: url('fonts/Geist-SemiBold.ttf')
        format("opentype");
        }

        @font-face {
            font-family: GeistBlack;
            src: url('fonts/Geist-Black.ttf')
            format("opentype");
            }
/*fade in */

.menu {
    animation: fadeIn 6s ease-in;
    -webkit-animation: fadeIn 6s ease-in;
    -moz-animation: fadeIn 6s ease-in;
    -o-animation: fadeIn 6s ease-in;
    -ms-animation: fadeIn 6s ease-in;
}

.content {
    animation: fadeIn 3s ease-in;
    -webkit-animation: fadeIn 3s ease-in;
    -moz-animation: fadeIn 3s ease-in;
    -o-animation: fadeIn 3s ease-in;
    -ms-animation: fadeIn 3s ease-in;
}
    
    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
      }
      
      @-moz-keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
      }
      
      @-webkit-keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
      }
      
      @-o-keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
      }
      
      @-ms-keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
      }
    
/* fade in ende */


body, html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: 'Geist';
}

.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 10;
    text-transform: uppercase;
}

.menu-item:hover {
    font-family: 'GeistBlack';
}

.menu-item {
    cursor: pointer;
    margin-bottom: 5px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    line-height: 0.9rem;
}

.menu-item a:active {
    font-family: 'GeistBlack';
}


.logo {
        max-width: 55px;
        max-height: 30px;
        padding: 17px 0 0 10px;
        margin-right: 0%;
        position: absolute;
}

p {
    font-size: 0.7rem;
    margin-left:35px;
    padding-top:15px;
    margin-bottom:-10px;
    white-space: wrap!important;
    
}

h1 {
    font-family: 'GeistBlack';
    align-items: flex-start;
    padding-top:40%;
    margin-left:30px;
    font-size: 4rem; /* Standardgröße für die Überschrift */
    line-height: 3.8rem; /* Zeilenhöhe für besseren Lesefluss */
    text-transform: uppercase;
}

h2 {
    font-weight:500;
    letter-spacing: 1.5px;
    overflow: hidden;
}

h3 {
    font-size:0.9rem;
    margin-left:4%;
}

li {
    list-style-type: none;
}

.text-container {
    align-items: flex-end;
    width: 30vw;/* Jede Sektion nimmt die gesamte Ansichtsbreite ein */
    color: black;
    padding: 0 20px; /* Innenabstand */
    margin:-30px;
    padding-bottom:50px;
}

.img-container {
    display:flex;
    gap: 20px; /* Abstand zwischen den Bildern */
    justify-content: center;
    align-items: center;
    padding:20px;
}

.img-container img {
    width: 50%;
    height: auto;
}


.text-container h2 {
    align-items: flex-start;
    padding-top:5%;
    font-size: 2rem; /* Standardgröße für die Überschrift */
    text-align: right;
    line-height: 1.2; /* Zeilenhöhe für besseren Lesefluss */
    margin:0;
    float:right;
}

.section {
    width: 30vw; /* Jede Sektion nimmt die gesamte Ansichtsbreite ein */
    display: flex;
    justify-content: left;
    font-size: 2rem;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}


#section1 {
    width: 33vw;
}

#section2 {
    background-image: url("img/tabu_online.gif");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
    box-sizing: border-box;
}

#section3 {
    background-image: url("img/tabu_online_menu.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26%;
    box-sizing: border-box;
}


a {
    text-decoration: none;
    font-weight: normal;
    text-transform: uppercase;
    color: #000000;
    display: block;
    transition: 0.3s;
  }

a:hover {
    font-family: 'GeistBlack';
  }


a:link, a:active, a:visited {
    color:black;
}


  .buttonback {
    width: 26px;
    height: auto;
    position: fixed;
    bottom: 7%;
    left: 5%;
    z-index: 99;
  }

  .buttonback {
    animation: fadeIn 4s ease-in;
    -webkit-animation: fadeIn 4s ease-in;
    -moz-animation: fadeIn 4s ease-in;
    -o-animation: fadeIn 4s ease-in;
    -ms-animation: fadeIn 4s ease-in;
  }

  .buttonback:hover {
    font-weight: bold;
  }


@media screen and (max-width: 680px) {

.img-container {
    display:contents;
    gap: 20px; /* Abstand zwischen den Bildern */
    justify-content: center;
    align-items: center;
    margin-top:20%;
}

.img-container img {
    width: 94%;
    height: auto;
    padding:20px;
}

.text-container {
    align-items: flex-end;
    width: 100vw; /* Jede Sektion nimmt die gesamte Ansichtsbreite ein */
    color: black;
    padding: 0 20px; /* Innenabstand */
    margin:-30px;
    padding-bottom:50px;
}

.text-container h2 {
    align-items: flex-start;
    padding-top:5%;
    font-size: 2rem; /* Standardgröße für die Überschrift */
    text-align: right;
    line-height: 1.2; /* Zeilenhöhe für besseren Lesefluss */
    margin:0;
    float:right;
}


.section {
    width: 100vw; /* Jede Sektion nimmt die gesamte Ansichtsbreite ein */
    display: flex;
    justify-content: left;
    font-size: 2rem;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

#section1 {
    width: 100vw;
}

#section2 {
    background-color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section3 {
    background-image: url("img/tabu_online_menu.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 104%;
    box-sizing: border-box;
}

#section4 {
    background-color:white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section5 {
    background-color: white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section6 {
    background-color:white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section7 {
    background-color:white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section8 {
    background-color:white;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}


#section9 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

#section10 {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    font-weight: bold;
}


  .buttonback {
    width: 26px;
    height: auto;
    position: fixed;
    bottom: 7%;
    left: 5%;
    z-index: 99;
  }

  .buttonback {
    animation: fadeIn 4s ease-in;
    -webkit-animation: fadeIn 4s ease-in;
    -moz-animation: fadeIn 4s ease-in;
    -o-animation: fadeIn 4s ease-in;
    -ms-animation: fadeIn 4s ease-in;
  }

  .buttonback:hover {
    font-weight: bold;
  }

}

footer {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    padding:50px 10px 50px 200px;
}


.reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

#daynight {
    display: flex; /* Links nebeneinander anordnen */
    justify-content: flex-end;
    gap:4px; /* Abstand zwischen den Links */
    position: sticky;
    bottom:22px;
    padding-right:10px;
}

@media screen and (max-width: 600px) {

    #contact {
        margin-left:10px;
    }

    footer {
        letter-spacing: 0.5px;
        text-transform: uppercase;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    footer a {
        margin: 5px 0;
    }
}
