
/* __________________________________________________________________________________ */
/* ______________________________[[[  Allgemein  ]]]_________________________________ */
/* __________________________________________________________________________________ */



*{
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}

body::-webkit-scrollbar {
    display: none;
}


html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    display: flex;
    width: 100vw;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

section{
    width: 100vw;
}

button:hover {
    cursor: pointer;
}


:root {
    --orange: linear-gradient(to bottom right, #FF3533, #FFCD00);
    --orange-less: linear-gradient(to top, #ff6f00, #ffaa00);
    --background: linear-gradient(to bottom, #ffffff, #f2f6fc);
    --background-reverse: linear-gradient(to top, #ffffff, #f2f6fc);
    --Text-dark1: rgb(42, 46, 51);
    
}





/* __________________________________________________________________________________ */
/* ________________________________[[[  Hero  ]]]____________________________________ */
/* __________________________________________________________________________________ */


#hero{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    background: var(--orange);
    flex: 0 0 auto;
    /* display: none; */
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    flex: 1 1 auto;    
}

.title{
    height: calc(55vw / 2.18);
    width: 55vw;
    max-height: 55vh;
    max-width: calc(55vh * 2.18);
    background-color: white;
    flex: 0 0 auto;
    margin-top: 5vh;
    background: url(svgs/Title.svg) no-repeat;
}

.ocean{
    height: 134px;
    width: 100%;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: flex-end;
}

.wave-main {
    transform: translate(0,0,0);
    background: url(svgs/wave-breit.svg) repeat-x;
    height: 132px;
    width: 9600px;
    animation: wave-main 12s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
}

@keyframes wave-main {
    0% { margin-left: -900px;}
 
    100% { margin-left: -3300px;}
}






/* ///////////////// */
/* ___| Responsive |____________________________ */
/* //////////////// */





/* ___| nicht sehr breit |___ */


@media (max-width: 1600px) {

    .wave-main{
        background: url(svgs/wave-tief.svg) repeat-x;
        height: 102px;
        width: 6400px;
    }

    .ocean{
        height: 102px;
    }


    @keyframes wave-main {
        0% { margin-left: -400px;}
     
        100% { margin-left: -2000px;}
    }

    .title{
        height: calc(65vw / 2.18);
        width: 65vw;
        max-height: 65vh;
        max-width: calc(65vh * 2.18);
        flex: 0 0 auto;
        margin-top: 5vh;
    }
}


/* _____________________________________________ */
/* ___| mobile |___ */


@media (max-width: 768px) {
    #hero {
        height: 100svh;
    }

    body {
        overflow-x: hidden;
    }

    .title{
    height: calc(80vw / 2.18);
    width: 80vw;
    max-height: 65vh;
    max-width: calc(65vh * 2.18);
    flex: 0 0 auto;
    margin-top: 5vh;
    }
    
    .title-container {
        height: 100svh;   
    }

}


/* __________________________________________________________________________________ */
/* ________________________________[[[  Skills  ]]]__________________________________ */
/* __________________________________________________________________________________ */



#skills {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    align-items: center;
    flex: 0 0 auto;
    background: var(--background);
    /* display: none; */
}

.skill-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    margin-bottom: 100px;
    position: relative;
    display: inline-block;
    color: var(--Text-dark1);    
}

.skill-title::after {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -40px;
    width: 40%;
    height: 3px;
    background-color: var(--Text-dark1);    
}


.skills-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    grid-template-rows: auto auto auto;
    gap: 20px;
    justify-content: center;
    align-items: start;
    max-width: 90vw;
}

.skill-box:nth-child(1) {
    grid-column: 2 / span 2;
}

.skill-box:nth-child(2) {
    grid-column: 4 / span 2;
}

.skill-box:nth-child(3) {
    grid-column: 1 / span 2;
}

.skill-box:nth-child(4) {
    grid-column: 3 / span 2;
}

.skill-box:nth-child(5) {
    grid-column: 5 / span 2;
}

.skill-box:nth-child(6) {
    grid-column: 3 / span 2;
    margin-top: 18px;
}


.skill-box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 30px 10px 30px;
    position: relative;
}

.skill-text {
    width: 100%;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.2rem;
    color: var(--Text-dark1);    
}

.skill-text-long {
    text-align: center;
    position: absolute;
    top: 100px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: var(--Text-dark1);    
    display: none;    
}


.blob {
    background: var(--orange-less);
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob1 { animation: spin 19s infinite linear, blobby-1 6s infinite linear;}
.blob2 { animation: spin 20s infinite linear, blobby-2 6s infinite linear;}
.blob3 { animation: spin 19s infinite linear, blobby-2 6s infinite linear;}
.blob4 { animation: spin 20s infinite linear, blobby-1 6s infinite linear;}
.blob5 { animation: spin 21s infinite linear, blobby-2 6s infinite linear;}
.blob6 { animation: spin 18s infinite linear, blobby-2 6s infinite linear;}

.skill-box:hover .blob{
    animation: spinReverse 3s infinite linear, blobby-2 2s infinite linear;
}


.icon {
    width: 75%;
    height: 75%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.skill-box:hover .icon{
    animation: spin 3s infinite linear;
}

.skill-box:hover .skill-text-long {
    display: flex;
}

.skill-box:hover .skill-text {
    opacity: 0;
}

@keyframes spinReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

  
@keyframes blobby-1 {
    0%, 100% {
      border-radius: 55% 25% 75% 45% / 35% 65% 35% 65%;
    }
    25% {
      border-radius: 30% 60% 40% 50% / 70% 20% 80% 30%;
    }
    50% {
      border-radius: 45% 55% 65% 35% / 55% 45% 25% 75%;
    }
    75% {
      border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%;
    }
}


  
  @keyframes blobby-2 {
    0%, 100% {
      border-radius: 68% 32% 48% 52% / 58% 42% 58% 42%;
    }
    20% {
      border-radius: 50% 50% 30% 70% / 40% 60% 70% 30%;
    }
    40% {
      border-radius: 35% 65% 55% 45% / 75% 25% 50% 50%;
    }
    60% {
      border-radius: 40% 60% 70% 30% / 60% 40% 30% 70%;
    }
    80% {
      border-radius: 45% 55% 35% 65% / 55% 45% 65% 35%;
    }
  }



/* _____________________________________________ */

.branding{
    background-image: url('svgs/branding-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 19s infinite linear;

}

.skill-box:hover .branding{
    background-image: url('svgs/branding-2.svg');
}

/* _____________________________________________ */

.dreid{
    background-image: url('svgs/dreid-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 20s infinite linear;

}

.skill-box:hover .dreid {
    background-image: url('svgs/dreid-2.svg');
}

/* _____________________________________________ */

.motion{
    background-image: url('svgs/motion-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 19s infinite linear;

}

.skill-box:hover .motion{
    background-image: url('svgs/motion-2.svg');
}

/* _____________________________________________ */

.uiux{
    background-image: url('svgs/uiux-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 20s infinite linear;

}

.skill-box:hover .uiux{
    background-image: url('svgs/uiux-2.svg');
}

/* _____________________________________________ */

.type{
    background-image: url('svgs/type-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 21s infinite linear;

}

.skill-box:hover .type{
    background-image: url('svgs/type-2.svg');
}

/* _____________________________________________ */

.web{
    background-image: url('svgs/web-1.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: spinReverse 18s infinite linear;

}

.skill-box:hover .web{
    background-image: url('svgs/web-2.svg');
}





/* ///////////////// */
/* ___| Responsive |____________________________ */
/* //////////////// */



/* _____________________________________________ */
/* ___| hochformat |___ */


@media (max-width: 768px) {

    #skills{
        justify-content: flex-start;
        padding: 10svh;
    }

    .skill-title{
        margin-bottom: 10svh;
    }

    .skill-title::after {
        bottom: -30px;
    }


    .skills-container {
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: auto auto auto;
        max-width: 90vw;
    }
    
    .skill-box:nth-child(1) {
        grid-column: 1 / span 1;
    }
    
    .skill-box:nth-child(2) {
        grid-column: 2 / span 1;
    }
    
    .skill-box:nth-child(3) {
        grid-column: 1 / span 1;
    }
    
    .skill-box:nth-child(4) {
        grid-column: 2 / span 1;
    }
    
    .skill-box:nth-child(5) {
        grid-column: 1 / span 1;
    }
    
    .skill-box:nth-child(6) {
        grid-column: 2 / span 1;
        margin-top: 0px;
    }

    .blob {
        height: 80px;
        width: 80px;
    }

    .skill-box:hover .skill-text {
        opacity: 100%;
    }

    .skill-box:hover .skill-text-long {
        display: none;
    }


}



/* __________________________________________________________________________________ */
/* ________________________________[[[   work   ]]]__________________________________ */
/* __________________________________________________________________________________ */




#work {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex: 0 0 auto;
    background: var(--background-reverse);
    /* display: none; */
}

.project-box{
    display: flex;
    justify-content: stretch;
    align-items: center;
    width: 1000px;
    max-width: 80vw;
    max-height: 40vw;
    background-color: rgb(255, 255, 255);
    margin-bottom: 90px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(134, 158, 246, 0.194);
}

.flex-reverse{
    flex-direction: row-reverse;
}

.image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    max-width: 40vw;
    max-height: 40vw;
    flex: 0 0 auto;
    overflow: hidden;
}

.image-container-1{
    background:linear-gradient(to bottom right, #ccf4e7, #cfe3eb);
}


.image-container-2{
    background:linear-gradient(to bottom right, #b8b8b8, #5c5c5c);
}


.image{
    height: 100%;
    width: 100%;
    flex: 0 0 auto;
}

.image1{ 
    background: url(images/Box_Mockup_1.png) center no-repeat;
    background-size: cover;

}

.project-box:hover .image1{ 
    background: url(images/Box_Mockup_2.png) center no-repeat;
    background-size: cover;
}

.image2{ 
    background: url(images/fein.png) center no-repeat;
    background-size: cover;
}

.project-box:hover .image2{ 
    background: url(images/sein.png) center no-repeat;
    background-size: cover;
}


.project-text{
    display: flex;
    align-items: center;
    flex-direction: column;
    flex: 1 1 auto;
    margin: 20px;
    width: 100%;
    height: 100%;
}
  

.project-title {
    width: 100%;
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4.8rem;
    color: var(--Text-dark1);    
    padding: 10px 30px 0 30px;
}

.project-description {
    width: 100%;
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.6rem;
    color: var(--Text-dark1);    
    padding: 10px 30px 0 33px;
    margin-bottom: 100px;
    font-weight: 300;
}

.project-button{
    border: none;
    margin-top: auto;
    margin-bottom: 30px;
    font-size: 1.4rem;
    padding: 8px 20px;
    border-radius: calc(1rem + 5px);
    background: linear-gradient(to top left, #ff6f00, #ffaa00);
    color: white;    
}

a {
    display: inline-block;
    font-family: 'Roboto', sans-serif;

}


/* ///////////////// */
/* ___| Responsive |____________________________ */
/* //////////////// */


/* _____________________________________________ */
/* ___| nicht sehr breit |___ */


@media (max-width: 1300px) {

    
    .project-title {
        font-size: 4rem;
        padding: 0px; 
    }
        
    .project-description {
        font-size: 1.4rem;
        padding: 10px;
        margin-bottom: 5vw;
    }

    .project-button{
        font-size: 1.5rem;
    }
        
} 

@media (max-width: 1000px) {

    .project-description {
        font-size: 1.25rem;
        padding: 5px;
    }
        
} 


/* _____________________________________________ */
/* ___| mobile |___ */


@media (max-width: 900px) {


    .project-box{
        max-height: none;
        flex-direction: column;
    }

    .image-container{
        max-width: none;
        max-height: none;
        height: 60vw;
        width: 100%;
    }

    .project-title {
        font-size: 3.5rem;
        padding: 15px 30px 0 30px;  
    }
    
    .project-description {
        font-size: 1.4rem;
        padding: 12px 30px 0 33px;
        margin-bottom: 40px;
    }

    .project-button{
        margin-bottom: 20px;
    }


}

/* __________________________________________________________________________________ */
/* ________________________________[[[   villan   ]]]________________________________ */
/* __________________________________________________________________________________ */




#villan {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* height: 100vh; */
    background-color: gold;
    background: var(--orange);
    flex: 0 0 auto;
}
  
.ocean2{
    height: 134px;
    width: 100%;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 100;
    transform: rotate(180deg);
}

.about-container{
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
    width: 1000px;
    max-width: 80vw;
    margin-top: 50px;
    margin-bottom: 100px;
}

.about-title{
    color: #f2f6fc;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3rem;
    margin-bottom: 100px;
    margin-top: 50px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -40px;
    width: 40%;
    height: 3px;
    background-color: #f2f6fc;    
}

.about-informations{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.about-picture{
    height: 200px;
    width: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    margin: 0 50px;
    background-color: #f2f6fc;
}

.me{
    height: 100%;
    width: 100%;
    background-image: url('images/Mee03.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-text {
    display: flex;
    flex: 1 1 auto;
    text-align: left;
    font-family: 'Roboto Condensed', sans-serif;
    color: white;
    font-size: 1.4rem;
    line-height: 1.8rem;
    
}

.about-button{
    border: none;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 1.4rem;
    padding: 8px 20px;
    border-radius: calc(1rem + 5px);
    background-color: white;
    color: rgb(255, 128, 0);   
}


.c-informations{
    display: flex;
    width: auto;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 25px;
    padding: 0 30px;
}

.c-text {
    color: rgb(255, 255, 255);
    font-family: 'Roboto Condensed', sans-serif;
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2rem;
}


/* ///////////////// */
/* ___| Responsive |____________________________ */
/* //////////////// */



/* _____________________________________________ */
/* ___| mobile |___ */


@media (max-width: 900px) {

    .ocean2{
        height: 102px;
    }

    .about-informations{
        flex-direction: column;
    }

    .about-text{
        /* text-align: center; */
        margin-top: 50px;

    }
}


  
  
  
  
  
 
  
  








