/*allgemeine Einstellungen*/

*{
    box-sizing: border-box;
    color: white;
    
}


html body{
    margin: 0;
    font-family: "Montserrat", sans-serif !important ;
    background-color: #0B1124;
    font-size: 18px;
    
}

p{
    text-align: justify;
}

.container-fluid{
    margin: 0;
}



/* Navbar - Einstellungen*/
.navbar-custom{
    background-color: black;
    border-bottom: 5px solid #52CFFB;
    align-items: center;
    text-wrap: nowrap;
}

.navbar-logo{
   
    text-decoration: none;
}

.navbar-menu{
    display: flex;
    justify-content: right;
    
}

.navbar-menu  > * {
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-left: 10vw;
}


/* Der Modal-Container (versteckt standardmäßig) */
.modal {
    display: none; /* Modal ist standardmäßig versteckt */
    position: fixed; 
    z-index: 1; /* Modal liegt über dem Rest der Seite */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.51); /* Hintergrund-Overlay */
  }
  
  /* Modal-Inhalt */
  div.modal-content {
    color:rgb(6, 0, 19);
    border: none;
    border-radius: 10px;
    background-color: #e1f3feda;
    box-shadow: 3px 3px 20px 2px rgb(188, 255, 251);
    backdrop-filter: blur(20px);
    padding: 10vh 20px 20px 20px;
    width: 80vw;
    height: auto;
    position: relative;
    margin: 10vh auto; /*zentriert das Modal*/

    p{
        color:#005A81;
    }
    
  }
  
  /* Schließen-Button */
  .close {
    z-index: 5;
    position: absolute;
    top: 12vh;
    right: 12vw;
    color: #00a5f7;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }





/*Class alphabetisch*/

.accordion-body{
    text-align: justify;
    color:#005A81;
}

.accordion-button{
    font-weight: bold;
    color:#020C31;
}

.align-col-vertical{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.badge-blue{
    height: 23px;
    width: 80px;
    margin-right: 10px;
    padding: 5px;
    border-radius: 20px;
    background-color: #005A81;
    font-size: 0.5rem;
    text-align: center;
}

.badge-red{
    height: 23px;
    width: 80px;
    margin-right: 10px;
    padding: 5px;
    border-radius: 20px;
    background-color:#D56D1A;
    font-size: 0.5rem;
    text-align: center;
}

.badge-green{
    height: 23px;
    width: 80px;
    padding: 5px;
    border-radius: 20px;
    background-color: rgb(105, 168, 23);  
    font-size: 0.5rem; 
    text-align: center;
   
}

.box-small{
    width: 30px;
    height: auto;
    border-radius: 10px;
    background-color: grey;
    box-shadow: 0px 0px 7px 3px lightblue;
}

.button-darkblue{
    color: white;
background-color:#005A81;
border-radius: 5px;
border-color: transparent;
font-weight: bold;
text-decoration: none;
}

.button-orange{
    color: white;
background-color: #D56D1A;
border-radius: 5px;
border-color: transparent;
font-weight: bold;
text-decoration: none;
}

.collapse-horizontal-left{
    color:#020C31;
    background-color: rgba(255, 255, 255, 0.922);
    border-radius: 7px;
    box-shadow: 0px 0px 7px 3px lightblue;
    padding: 1rem 5rem 1rem 1rem;
    width: 78%;
    height: auto;
    align-content: justify;
}

.collapse-horizontal-right{
    color:#020C31;
    background-color: rgba(255, 255, 255, 0.922);
    border-radius: 7px;
    box-shadow: 0px 0px 7px 3px lightblue;
    padding: 1rem 1rem 1rem 5rem;
    width: 78%;
    height: auto;
    align-content: justify;
}



.container-usp{
    background-image: url("img/bg-blue.png");
    width: 100%;
    height: 100vh;
    margin: auto;
    padding-top: 10vh;
   
}

.footer{
    height: 20vh;
    background-color: black;
    border-top: 5px solid #52CFFB;
}
.footer-elements{
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.frame-usp{
    width: 90%;
    height: auto;
    min-height: 40vh;
    background-color: #0B1124;
    border-radius: 10px;
    position: relative;
    padding: 1rem;
    margin-bottom: 2rem;

    white-space: normal; /* Text wird automatisch umbrochen */
    word-wrap: break-word;

}


/*gallerie styles*/

.gallery2-align{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gallery2-item{
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 180px;
    width: 180px;
    margin-right: 80px;
    border-radius: 18px;
    transform: rotate(45deg);
    border: 1px solid lightblue;
    box-shadow: 0px 0px 5px 3px lightblue;
}

.gallery2-item-außen{
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin-right: 0;
    height: 180px;
    width: 180px;
    border-radius: 18px;
    transform: rotate(45deg);
    border: 1px solid lightblue;
    box-shadow: 0px 0px 5px 3px lightblue; 
}

.gallery2-item:hover, .gallery2-item-außen:hover{
    
transition: 0.3s ease-in;
transform: rotate(45deg) scale(1.2) translateY(-5px);
z-index: 2;


}

.gap-img{
    position: relative;
    z-index: 1;
    bottom: 45px;
}


/* Bild-Modal-Styles */
.image-modal {
    display: none; /* Modal ist standardmäßig versteckt */
    position: fixed; /* Das Modal ist über dem gesamten Bildschirm */
    z-index: 1000; /* Über allen anderen Elementen */
    padding-top: 100px; /* Abstand vom oberen Rand */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Scrollen, falls nötig */
    background-color: rgba(0, 0, 0, 0.9); /* Dunkler Hintergrund */
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.image-close:hover,
.image-close:focus {
    color: #bbb;
}

/*Gallery CSS Styles zu Ende*/



.glassmorph-box{
    border-radius: 10px;
    background-color: #fcfcfc6d;
    box-shadow: 0 0.4rem 0.8rem rgba(167, 167, 167, 0.563);
    backdrop-filter: blur(3px);
}

.headline-hover-bottom{
    background-color:rgb(255, 255, 255);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 0 0 150px 150px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #0B1124;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 15vh;
    border-top: 3px solid #020C31;
}


.hero{
    background: linear-gradient(39deg, #020C31 24.89%, #005A81 60.52%);
    height: 60vh;
}

.icon_leistungsüberblick{
    height: 20vh;
    width: auto;
}


.infobox-mehrLeistungen{
    height: 23px;
    width: 150px;
    border-radius: 20px 0px 0 20px;
    background-color: white;
    color:#005A81; 
    font-size: 0.8rem;
    text-align: center;
    padding-top: 2px;
}
.infobutton-mehrLeistungen{
height: 23px;
width: 25px;
background-color:#D56D1A;
border-radius: 0px 20px 20px 0;
padding-top: 2px;
text-decoration: none;
font-size: 0.8rem;
    font-weight: bold;
    color: black;

}


.picture_50percent{
    width: auto;
    height: 55vh;
    position: relative;
    bottom: -30vh;
    left: -10vw;
    opacity: 90%;
}

.portrait{
    height: 30vh;
    width: auto;
    border-radius: 150px;
    box-shadow: 0px 0px 7px 7px lightblue; 
    position: relative;
    right: 100px;
}



.spacemaker-10{
    height:10vh;
    width: 100vw;
    }

 .spacemaker-20{
      height:20vh;
     width: 100vw;
     }

     .spacemaker-40{
        height:40vh;
       width: 100vw;
       }

       .spacemaker-50{
        height:50vh;
       width: 100vw;
       }

     .spacemaker-60{
        height:60vh;
       width: 100vw;
       }


       .white-text{
        color: white;
       }

/*id's*/

#banner-kontakt{
    margin: 0;
    color: white;
}

#bg-img-1{
    background-image: url("img/snippet_webdesign.jpg");
    height: 30vh;
    width: 30vh;
    border-radius: 150px;
   position: absolute;
   top:-50px;
    left: -270px;
    background-size: cover;
background-repeat: no-repeat;
    box-shadow: 0px 0px 7px 3px lightblue;
}
#bg-img-2{
    background-image: url("img/snippet_onlinekurs.jpg");
    height: 30vh;
    width: 30vh;
    position: relative;
    top:-50px;
    left: 270px;
    border-radius: 150px;
    background-size: contain;
background-repeat: no-repeat;
    box-shadow: 0px 0px 7px 3px lightblue;
}
#bg-img-3{
    background-image: url("img/snippet_app.jpg");
    height: 30vh;
    width: 30vh;
    position: relative;
    top:-50px;
    left: -270px;
    border-radius: 150px;
    background-size: contain;
background-repeat: no-repeat;
    box-shadow: 0px 0px 7px 3px lightblue;
}
#bg-img-4{
background-image: url("img/snippet_seo.png");
height: 30vh;
width: 30vh;
position: relative;
top:-50px;
left: 270px;
border-radius: 150px;
background-size: contain;
background-repeat: no-repeat;
box-shadow: 0px 0px 7px 3px lightblue;

}

#button1, #button2, #button3{
    font-size: 16px;
    font-weight: 1.1rem;
}


#fixed-button-scrollback{
    height: 40px;
    width: 55px;
    border-radius: 100px;
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 60px;
}

#footer-row-100-percent{
    height: 100%;
}

#hero-row-100-percent{
height: 100%;
}

#Kontakt{
    border-top: 5px solid #52CFFB;
}

#logo_nav{
    height: 80px;
    width: auto;
}


/*HTML - Selektoren*/
    
.about-me > p > a{
    text-decoration: none;
    background-color:#52cefb25;
    border: 3px solid lightblue;
    border-radius: 10px;
    color: white;
    padding: 2px;
}

.collapse-horizontal-left > p{
color:#020C31;
}

.collapse-horizontal-right > p{
    color:#020C31;
    }


/*Media Querys*/

@media screen and (max-width: 1200px){
    #bg-img-1{
        left: -220px;
    }

    #bg-img-2{
        left: 220px;
    }

    #bg-img-3{
        left: -220px;
    }

    #bg-img-4{
        left: 220px;
    }
}


/*unter 992px*/
@media screen and (max-width: 992px){
    .container-usp{
        height: auto;
        padding-bottom: 10vh;
    }

    .info-boxes-collapse{
        direction: flex;
        justify-content: center;
    }

    .portrait{
        order: 1;
    }
    .about-me{
        order: 2;
    }
}

/*unter 966px*/
@media screen and (max-width: 966px){
    .collapse-horizontal-left{
        margin-top: 2vh;
        margin-bottom: 2vh;
        margin-right: auto;
        margin-left: auto;
        padding: 10px;
    }

    .collapse-horizontal-right{
        margin-top: 2vh;
        margin-bottom: 2vh;
        margin-right: auto;
        margin-left: auto;
        padding: 10px;
    }

    #bg-img-1{
        position: relative;
        top: 0;
        left: 0;
    }

    #bg-img-2{
        position: relative;
        top: 0;
        left: 0;
    }

    #bg-img-3{
        position: relative;
        top: 0;
        left: 0;
    }

    #bg-img-4{
        position: relative;
        top: 0;
        left: 0;
    }

    .order-webdesign{
        order: 2;
    }
    .order-webdesign-img{
        order: 1;
    }

    .order-app{
        order: 4;
    }
    .order-app-img{
        order: 3;
    }

}

/*unter 768px*/
@media screen and (max-width: 768px){

    .collapse-horizontal-left{
        width: 100%;
        margin-left: 1vw;
        margin-right: 1vw;
        text-align: justify;
    }

    .collapse-horizontal-right{
        width: 100%;
        margin-left: 1vw;
        margin-right: 1vw;
        text-align: justify;
    }

    div.modal-content{
        background-color: #e1f3fef3;
    }

    #fixed-button-scrollback{
        right: 20px;
        bottom: 20px;
    }

    .footer-elements{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero{
        padding-top: 10vh;
    }

    .navbar-menu{
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
    }
    .navbar-menu > *{
        display: block;
        margin:0;
    }

   
    .picture_50percent{
        width: auto;
        height: 45vh;
        position: relative;
        bottom: -8vh;
        left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
}

/*unter 500px */

@media screen and (max-width: 500px){

    
    .portrait{
        right: 30px;
    }

    .spacemaker-60{
        height: 40vh;
     }

    .spacemaker-40{
        height: 20vh;
    }

    .spacemaker-20{
        height: 10vh;
    }

}
    