/* Global */
:root {
    --input-color: #000;
    --text-color: #fff;
    --snow-color: #fffafa;
    --primary-color: #35424a;
    --highlight-color: #e8491d;
    --hover-color: #b2dfdb;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Arial, Helvetica, sans-serif;
    font-size: 62.5%;
}
body {
    background-color: var(--primary-color);
} 
.highlight, header .current a {
    color:  var(--highlight-color);
    font-weight: bold;
}
/* header */
header {
    border-bottom: var(--highlight-color) 3px solid;
}
header a:hover {
    color: var(--hover-color);
} 
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10dvh;
    background-color: var(--primary-color);
}
.logo {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    list-style: none;
}
.logo h3 {
    color: var(--snow-color);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.logo h3:hover {
    color: var(--hover-color);
}
.nav-administrator {
    display: flex;
    justify-content: space-evenly;
    width: 25%;
}
.nav-index{
    display: flex;
    justify-content: space-evenly;
    width: 20%;
}
.nav-about{
    display: flex;
    justify-content: space-evenly;
    width: 12%;
}
.nav-login{
    display: flex;
    justify-content: space-evenly;
    width: 20%;
}
.nav-signup{
    display: flex;
    justify-content: space-evenly;
    width: 20%;
}
.nav-links a {
    color: var(--snow-color);
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s ease;
}
.nav-links li {
    list-style: none;
}
.burger {
    display: none;
    cursor: pointer;
}
.burger div {
    width: 2.5rem;
    height: 0.2rem;
    background-color: var(--snow-color);
    margin: 0.5rem;
    transition: all 0.3s ease;
}
div .line1:hover, .line3:hover {
    background-color: var(--hover-color);
}
div .line2 {
    background-color: var(--highlight-color);
}
#showcase {
    display: flex;
    justify-content: center;  /*zorgt dat de content voor de img in het midden staat */
    background:url('../img/landingpage-index.jpg') no-repeat ;
    background-size: cover;
    height: 81dvh;
}
#showcase1 {
    display: flex;
    justify-content: center;
    background:url('../img/Elektromotor-scaled.webp') no-repeat ;
    background-size: cover;
    height: 81dvh;
}
#showcase2 {
    display: flex;
    justify-content: center;
    background:url('../img/under-construction.jpg') no-repeat ;
    background-size: cover;
    height: 81dvh;
}
#showcase3 {
    display: flex;
    justify-content: center;
    background:url('../img/unsplash.jpg') no-repeat ;
    background-size: cover;
    height: 81dvh;
}
.flex-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width:32rem;
    height: 40rem;
    width: 100%;
    padding: 2rem;
    margin-top: 0.6rem;
    box-shadow: 0 0 10px black;
    background: transparent;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
}
.form-header {
    padding-bottom: 1rem;
}
.input-container input {
    padding: 1.5rem 2rem ;
    width: 250px;
    border-radius: 30px;
    border: 0px solid white;
    box-shadow: 0 0 5px black;
    margin-bottom: 2rem;
    background: transparent;
    font-size: 1.5rem;
    outline: none;
    color: var(--input-color);
}
.input-container input:hover {
    border: 1px solid rgba(0, 0, 0, 0.304);
}
input::placeholder {
    color: white;
    font-size: 1.5rem;
}
.forgot-password a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.forgot-password a:hover {
    text-decoration: underline;
}
.submit {
    width: 80%;
    padding: 1.5rem;
    border-radius: 20px;
    border: 0px solid ;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.804); 
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 900;
    background: #9ef39b;
    cursor: pointer;
}
.submit:hover {
    box-shadow: 0 0 9px rgba(255, 255, 255, 0.662);
}
.signup {
    text-align: center;
    font-size: 1.4rem;
    cursor: pointer;
}
.signup a {
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
}
.signup {
    color: var(--highlight-color);
}
#geschiedenis {
    border-radius: 10px;
    background: transparent;
}
.flex-footer {
    display: flex;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-color); /* text kleur */
    padding: 1.5rem 0rem;
    border-top: var(--highlight-color) 3px solid;
}
@media screen and (max-width: 1024px) {
    .nav-links{
    width: 40%;
    } 
}
@media screen and (max-width: 768px) {
    body{
        overflow-x: hidden;
    }
   .nav-links{
    position: fixed;
    right: 0px;
    height: 80dvh;
    top: 11dvh;
    /* background-color: var(--primary-color); */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 28%;
    z-index: 2;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    
   }
   .nav-links li{
    opacity: 0;
   }
   .burger{
    display: block;  
   }
}

.nav-active{
    transform: translateX(0%);
    background-color: var(--primary-color);
   }

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);    
    }
}

.toggle .line1{
        transform: rotate(-45deg) translate(-5px,5px);
    
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
        transform: rotate(45deg) translate(-5px,-5px);
    
}

