@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    scroll-behavior: smooth;
}

.toggle {
    animation-name: translateX;
    animation-duration: 1s;
    animation-timing-function: linear;
}

@keyframes translateX {
    0%      {opacity:0; margin-left: -8%;}
    25%     {opacity:0.25; margin-left: -6%;}
    50%     {opacity:0.5; margin-left: -4%;}
    75%     {opacity:0.75; margin-left: -2%;}
    100%    {opacity:1; margin-left: 0;}
}

/* Mobile toggler */
.sidebar, .openbtn, .mobile-slide, .galerie-text-mobile {
    display: none;
}

/* Navbar */
.info-text {
    line-height: 20%;
    letter-spacing: normal;
    margin-top: 10px;
}

.navbar {
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.nav-item {
    padding-right: 8%;
}

.navbar button:hover {
    cursor: pointer;
}

.nav-link {
    transition: 0.3s;
}

.nav-link:active {
    text-decoration: underline;
}

/* Header */
.header {
    height: 90vh;
}

h1 {
    font-size: 10vw;
}

.header p {
    font-size: 4vw;
    margin-bottom: 5%;
}

.header-img {
    background-image: url('../images/header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
}

.header-text-div {
    text-align: center;
    width: 100%;
    padding: 2%;
    position: absolute;
    bottom: 0;
    letter-spacing: 5px;
}

/* Social icons */
.container-social {
    position: fixed;
    width: 50px;
    padding: 10px;
    height: 150px;
    right: 0;
    top: 40%;
    z-index: 1;
}

.container-social img {
    width: 25px;
    height: 25px;
    margin: 10px 5px;
    opacity: 0.7;
    -webkit-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
   
}

.container-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.container-social a {
    cursor: pointer;
}

/* Galerie */
#galerie {
    background-color: #5fe6ff;
    background-image: -webkit-linear-gradient(150deg, #5fe6ff 50%, #ffffff 50%);
    padding: 2% 2% 8%;
}

#galerie img {
    width: 100%;
    margin-bottom: 10%;
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

#galerie img:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.galerie-text {
    font-size: 6vw;
    margin-bottom: 0;
    margin-top: 5%;
    letter-spacing: 15px;;
}

.galerie-divider-1 {
    border-bottom: 1px solid black;
    margin-bottom: 6%;
}

.galerie-divider-2 {
    border-bottom: 1px solid black;
    margin-bottom: 5%;
}

.instagram-text {
    font-size: 4vw;
    line-height: 80%;
    text-align: right;
}

.instagram-text a {
    font-size: 7vw;
    color: black;
}

.instagram-text a:hover {
    text-decoration: none;
    opacity: 0.7;
}

/* Leistungen */
#leistungen {
    background-color: rgba(95, 230, 255, 0.5);
    background-image: url(../images/kontakt-background.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8% 5%;
}

#leistungen h2 {
    text-align: center;
    font-size: 6vw;
    letter-spacing: 15px;
    height: 13%;
    width: 100%;
    margin-bottom: 1%;
    color: white;
    opacity: 0.8;
}

.leistung-preis {
    background-color: white;
    padding: 5%;
    margin: auto;
    margin-top: 0;
    border-radius: 20px;
    text-align: center;
}

.leistung-preis p {
    margin: auto;
}

h3 {
    text-align: center;
    margin-bottom: 5%;
    font-size: 3vw;
}

h4 {
    text-align: center;
    margin-top: 3%; 
}

.diva-nails {
    padding-right: 5%;
    border-right: 1px solid black;
}

.diva-beauty {
    padding-left: 5%;
}

/* Kontakt */
#kontakt {
    background-color: #5fe6ff;
    background-image: -webkit-linear-gradient(60deg, #5fe6ff 50%, #ffffff 50%);
    padding: 5%;
    position: relative;
}

#kontakt h2 {
    margin: 0;
    font-size: 6vw;
}

.kontakt-text {
    font-size: 1.5vw;
    padding: 5%;
}

.kontakt-text img {
    width: 2vw;
    margin-right: 3%;
}

.kontakt-text a {
    color: black;
}

.kontakt-text a:hover {
    cursor: pointer;
    opacity: 0.8;
    text-decoration: none;
}

.map {
    padding: 2%;
    margin: auto;
}

.copyright {
    position: absolute;
    bottom: 0;
    left: 2%;
    margin-top: 2%;

}

#myBtn {
    width: 40px;
    height: 40px;
    position: fixed;
    right: 2%;
    bottom: 2%;
    opacity: 0.5;
    border: 1px solid black;
    border-radius: 10px;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

#myBtn img {
    max-width: 100%;
}

#myBtn:hover{
    opacity: 2;
}

@media only screen and (max-width: 1024px) {
    .header {
        height: 50vh;
    }
}

@media only screen and (max-width: 768px) {
    .openbtn, .sidebar, .mobile-slide, .galerie-text-mobile {
        display: block;
    }
    
    .desktop-images, .galerie-divider-1, .galerie-desktop, .galerie-text {
        display: none;
    }   
    
    /* Sidebar */
    .sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 4;
        top: 0;
        left: 0;
        background-color: white;
        overflow-x: hidden;
        padding-top: 10%px;
        transition: 0.5s;
        font-size: 5vw;
        opacity: 0;
    }
    
    .active {
        color: black;
    }
    
    .sidebar-text {
        padding: 20% 10%;
    }
    
    .sidebar-menu {
        padding: 0;
    }
    
    .sidebar-menu li {
        list-style: none;
        padding: 10px 0;
    }
    
    .sidebar a {
        color: lightskyblue;
    }
    
    .sidebar a:hover {
        color: black;
        text-decoration: none;
    }
    
    .sidebar p {
        font-size: 4vw;
    }
    .sidebar p a {
        color: black;
    }
    
    .sidebar .closebtn {
        position: absolute;
        top: 0;
        right: 6%;
        font-size: 10vw;
    }
    
    .closebtn {
        opacity: 0.5;
    }
    
    .closebtn: hover {
        opacity: 1 .5s;
    }
    
    .openbtn {
        font-size: 10vw;
        opacity: 0.5;
        cursor: pointer;
        border-radius: 0 !important;
        background-color: transparent !importsnt;
        box-shadow: 0 !important;
    }
    
    .openbtn:hover {
        opacity: 1;
    } 
    
    .navbar-nav {
        display: none;
    }
    
    .sidebar img {
        width: 10%;
        margin: 10px 10px 20px;
        padding: 2px;
    }
    
    .navbar-mobile a {
        color: black;
    }
    
    .container-social {
        width: 7%;
        height: auto;
        margin-right: 3%;

    }
    
    .container-social img {
        width: 100%;
        height: auto;
    }
    
    /* Header */
    .header {
        height: 90vh;
    }
    
    .header-text-div {
        bottom: 10%;
        left: 0;
    }
    
    h1 {
        font-size: 20vw;
    }
    
    .header-text-div p {
        font-size: 8vw;
    }
    
    /* Galerie */
    #galerie {
        background-image: none;
        padding: 5% 5% 20%;
        position: relative;
    }
    
    #galerie p {
        font-size: 12vw;
        margin: 0;
    }
    
    .galerie-text-mobile {
        position: absolute;
        top: 50px;
        z-index: 1;
        letter-spacing: 5px;
    }
    
    #galerie a {
        font-size: 10vw;
        line-height: 80%;
    }
    
    .mobile-slide{
        margin-top: 15%;
        padding: 20% 0 0;
        background-color: white;
    }
    
    .mySlides {
        margin-bottom: 0 !important;
    }
    
    #stage img:nth-of-type(1) {
        animation-name: fader;
        animation-delay: 3s;
        animation-duration: 1s;
        z-index: 20;
    }
    
      #stage img:nth-of-type(2) {
        z-index: 10;
      }
    
      #stage img:nth-of-type(n+2) {
        display: none;
      }

      @keyframes fader {
        from { opacity: 1.0; }
        to   { opacity: 0.0; }
      }
    
    /* Leistungen */
    #leistungen {
        padding: 15% 5%;
    }
    
    #leistungen h2 {
        font-size: 10vw;
    }
    
    .diva-nails {
        border-right: none;
        padding-bottom: 10%;
    }
    
    .leistung-preis {
        padding: 10%;
    }
    
    h3 {
        font-size: 6vw;
    }
    
    h4 {
        font-size: 4vw;
    }
    
    p {
        font-size: 3vw;
    }
    
    /* Kontakt */
    #kontakt {
        padding: 12%;
    }
    
    #kontakt h2 {
        font-size: 10vw;
    }
    
    .kontakt-text {
        text-align: center;
    }
    
    .kontakt-text p {
        font-size: 4vw; 
    }
    
    iframe {
        width: 100%;
    }
    
    #myBtn {
        right: 4%;
    }
    
    .info-text {
        line-height: 40%;
    }
}

@media only screen and (max-width: 414px) {
    .header {
        height: 70vh;
    }
    
    .info-text {
        display: none;
    }
    
    .header-text-div {
        bottom: 5%;
        left: 0;
    }
    
    .container-social {
        width: 10%;
    }
    
    .galerie-text-mobile {
        top: 60px;
    }
    
    .mobile-slide {
        margin-top: 85px;
    }
    #leistungen h3 {
        font-size: 8vw;
        border-bottom: 1px solid black;
    }
    
    #leistungen h4 {
        font-size: 6vw;
        margin-top: 20px;
    }
    
    #leistungen p {
        font-size: 5vw;
    }
    
    #kontakt p {
        font-size: 5vw;
    }