/*!!!!!!!!!!!!! BEM toepassen ✅✅✅✅ https://getbem.com/ check ook de file in dev5/BEM css tricks... */
/*Construction btn fixen*/
/*media min-width voor heel brede schermen*/
/*font-size naar em ipv px proberen*/
/*clamp min en max values. zo kan je vw en em beginnen benutten to the max voor font-size etc. Zo kan visibility groot genoeg blijven, maar ook je pagina volledig scalable blijven*/

/*MAIN*/
:root {
    --light-blue: #147cff;
    --blue: #0000ff;
    --dark-blue: #0006a2;
    --off-black: #252525;
    --white: #ffffff;

    --red: #ff0000;
    --yellow: #ffff00;
}

    /*SCROLLBAR*/
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--light-blue); 
    }

    ::-webkit-scrollbar-thumb {
        background: var(--dark-blue);
        border-radius: 4px; 
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--off-black); 
    }

body {
    margin: 0;
}

#contactBody {
    overflow: hidden;
}

h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--off-black);
}

#sideTitleAbout, #sideTitleProjects, #sideTitleContact, #sideTitleBlogs, #sideTitleBlog1 {
    font-size: 200px;
    overflow: hidden;
    rotate: 90deg;
    position: absolute;
}

#sideTitleAbout {
    font-size: 180px;
    top: 64px;
    left: -190px;
    position: fixed;
}

#sideTitleProjects {
    top: 780px;
    left: -340px;
}

#sideTitleContact {
    top: 180px;
    left: -320px;
    color: var(--dark-blue);
}

#sideTitleBlogs {
    top: 60px;
    left: -200px;
    color: var(--dark-blue);
}

#sideTitleBlog1 {
    top: 100px;
    left: -220px;
    color: var(--dark-blue);
}

@media (max-width: 500px) {
    #sideTitleAbout, #sideTitleBlogs, #sideTitleBlog1 {
        display: none;
    }
}

h2, h3 {
    color: var(--off-black);
    font-family: 'urbane-rounded', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
}

h2 {
    font-size: 40px;
}

p {
    color: var(--off-black);
    font-family: 'urbane-Rounded', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

a {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center; 
}

.socialIcon {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-color: var(--off-black);
}

.socialIcon:hover {
    background-color: var(--dark-blue);
}

/*STATUS*/
.hidden {
    display: none;
}

/*BUTTONS*/
a:hover {
    opacity: 0.5;
}

/*HOME*/
.introductionHead {
    background-image: url("../images/homeBack.webp");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 720px;
    display: flex;
    border-radius: 0 0 64px 64px;
}

.homenav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 16px;
    margin-left: 20%;
    width: 90%;
    height: 60px;
}

#toggleNav {
    width: 240px;
    margin-left: calc(100% - 272px);
    height: 220px;
    align-items: center;
    justify-content: space-between;
    background-color: var(--dark-blue);
    border-radius: 20px;
    position: fixed;
    top: 72px;
    padding-top: 20px;
    z-index: 5;
}

#toggleNav a {
    margin-bottom: 20px;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--white);    
}

#toggleNav a:hover {
    opacity: 1;
    color: var(--light-blue);
}

#logo {
    width: 20%;
    max-width: 310px;
    height: 100px;
    background-image: url("../images/AkuutLogo.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-top: 16px;
    margin-left: 32px;
}

#dropdown {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--light-blue);
    position: fixed;
    top: 16px;
    right: 32px;
    background-image: url("../images/dropdown.svg");
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
}

#dropdown:hover {
    opacity: 1;
    background-image: url("../images/dropdownHover.svg");
    background-color: #0006a2;
}

.introductionText {
    position: absolute;
    top: 64px;
    width: 100%;
}

.introductionText h1 {
    color: var(--white);
    margin-left: 32px;
    width: 30%;
}

.introductionText p {
    color: var(--white);
    margin-left: 32px;
    width: 30%;
    font-size: 24px;
    display: none;
}

#indexContent {
    margin-top: 32px;
    width: 96%;
    max-width: 1400px;
    margin-left: 2%;
    margin-bottom: 32px;
    border: 2px solid var(--light-blue);
    border-radius: 32px;
    display: inline-flex;
}

#indexContent h2 {
    margin-left: 32px;
    color: var(--blue);
}

#indexContent p {
    margin-left: 32px;
    padding-right: 16px;
    margin-bottom: 32px;
}

#indexContent a {
    color: var(--blue);
    font-family: 'urbane-Rounded', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 18px;
}

#indexText {
    width: 60%;
}

#indexImageBox {
    width: 40%;
    border-radius: 0 29px 29px 0;
    background-color: var(--light-blue);
}

#indexImage {
    background-image: url("../images/trafficSym.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    height: calc(100% - 24px);
    width: calc(100% - 24px);
    margin-top: 12px;
    margin-left: 12px;
}

@media (max-width: 1400px) {
    .introductionText h1 {
        font-size: 52px;
    }
}

@media (max-width: 1200px) {
    .introductionText h1 {
        font-size: 48px;
    }
}

@media (max-width: 1000px) {
    
    .homenav {
        margin-left: 5%;
    }

    .introductionText h1 {
        font-size: 40px;
        margin-top: 48px;
    }
}

@media (max-width: 900px) {
    #indexText {
        width: 100%;
    }

    #indexImageBox {
        display: none;
    }

    #indexContent p {
        padding-right: 32px;
    }
}

@media (max-width: 800px) {
    .introductionText h1 {
        font-size: 36px;
    }
}

@media (max-width: 760px) {
    #logo {
        position: absolute;
    }
    
    .introductionHead {
        display: block;
        background-image: url("../images/AntwerpGray.webp");
        height: 400px;
        border-radius: 0;
    }

    .homenav {
        padding: 0;
    }

    .homenav a {
        display: none;
    }

    .introductionText h1 {
        width: 60%;
        margin-left: 20%;
        margin-top: 64px;
        text-align: center;
        font-size: 48px;
    }

    .introductionText p {
        display: block;
        width: 40%;
        margin-left: 30%;
        margin-top: 32px;
        text-align: center;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .introductionHead {
        height: 500px;
    }

    #indexText h2 {
        font-size: 32px;
    }
}

/*BLOGS*/
#blogsContent {
    width: calc(100% - 200px);
    margin-left: 200px;
}

#blogsContent p {
    width: 92%;
}

#blogsContent a {
    color: var(--blue);
    font-family: 'urbane-Rounded', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 18px;
}

#blogLinks {
    width: 90%;
    border:var(--blue) 2px solid;
    border-radius: 32px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 16px;
}

#blogLinks a {
    background-color: var(--light-blue);
    width: 80%;
    margin: 8px 10% 8px 10%;
    padding: 16px;
    color: var(--white);
    border-radius: 50px;
}

#blogsBackButton {
    margin-top: 16px;
    margin-bottom: 32px;
}

#blogsText h3 {
    color: var(--blue);
    margin-top: 32px;
    margin-bottom: 8px;
    font-size: 24px;
}

#blogsText p {
    margin-top: 0;
}

.blogBanner {
    background-size: cover;
    background-position: 50% calc(50% + 100px);
    height: 240px;
    width: 100%;
    border-radius: 0 0 64px 64px;
    background-repeat: no-repeat;
}

#blogBanner1 {
    background-image: url("../images/kantoor.webp");
}

.blogImageBox33 {
    width: 84%;
    margin-left: 3%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.blogImageBox50 {
    width: 84%;
    margin-left: 3%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 32px;
}

#cocktail1 {
    background-image: url("../images/cocktail1.jpg");
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    height: 600px;
}

#cocktail2 {
    background-image: url("../images/cocktail2.jpg");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    height: 600px;
}

@media (max-width: 1000px) {
    #blogsContent {
        width: calc(90% - 200px);
    }

    .blogBanner {
        background-position: center;
    }

    #cocktail1, #cocktail2 {
        height: 400px;
    }
}

@media (max-width: 800px) {
    #blogLinks {
        grid-template-columns: 1fr;
    }

    .blogImageBox50, .blogImageBox33 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    #blogsHead h2 {
        font-size: 24px;
    }
    
    #blogsContent {
        width: 90%;
        margin-left: 5%;
    }
    
    #blogsText {
        width: 100%;
    }

    #blogsText p {
        width: 100%;
    }

    #blogLinks {
        width: 80%;
        margin-left: 2%;
        display: flex;
        justify-content: center;
    }
    
    #blogLinks a {
        margin: 8px 0 8px 0;
    }
}

/*FOOTER*/
footer {
    background-color: var(--off-black);
    width: calc(100% - 128px);
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 64px;
    padding-right: 64px;
}

#contactFooter, #blogsFooter {
    position: absolute;
    bottom: 0;
}

.logoText {
    width: 100px;
    background-image: url("../images/AkuutText.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 100px;
}

#socialBox {
    width: 40%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#socialBox a:hover {
    opacity: 1;
    background-color: var(--dark-blue);
}

#credits {
    display: flex;
    justify-content: center;
}

#credits p {
    color: var(--white);
}

footer a {
    color: var(--light-blue);
    font-family: 'urbane-Rounded', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    height: 18px;
}

footer #credits a:hover {
    opacity: 1;
    color: var(--blue);
}

@media (max-width: 800px) {
    #blogsFooter {
        position: relative;
    }
}

@media (max-width: 700px) {
    footer {
        padding-left: 32px;
        padding-right: 32px;
        width: calc(100% - 64px);
    }
}

@media (max-width: 600px) {
    footer {
        padding-left: 16px;
        padding-right: 16px;
        width: calc(100% - 32px);
    }

    .logoText {
        width: 30%;
    }

    #socialBox {
        width: 60%;
    }

    #credits {
        display: none;
    }
}

/*CONSTRUCTION ongoing*/
.construction {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  width: 60%;
  height: 40%;
  margin-left: 32px;
}

.constructionText {
    width: 100%;
    height: 60%;
    background-color: var(--blue);
    border-radius: 32px;
    margin: 8px;
    padding: 24px;
}

.constructionText h1 {
    margin-top: 0;
}

.constructionText p {
    color: var(--white);
}

.constructionText a {
    margin-top: 16px;
}

@media (max-width: 500px) {
    .construction {
        transform: none;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        overflow: hidden;
        align-items: baseline;
    }

    .logo {
        height: 10%;
        margin: 10px 0 0 0;
    }

    .constructionText{
        height: calc(90% - 24px);
        margin: 8px 0 8px 0;
        padding: 24px 0 0 0;
        border-radius: 32px 32px 0 0;
    }

    .constructionText h1 {
        font-size: 48px;
    }

    .constructionText p {
        font-size: 24px;
    }
}

/*ABOUT/CONTACT/PROJECTS header*/
#aboutHead h2, #projectsHead h2, #contactHead h2, #blogsHead h2 {
    color: var(--white);
    background-color: var(--off-black);
    margin: 0;
    padding: 16px 0 16px 32px;
}

#aboutHead #dropdown, #projectsHead #dropdown, #contactHead #dropdown, #blogsHead #dropdown {
    top: 16px;
}

#aboutHead .logoText, #projectsHead .logoText, #contactHead .logoText, #blogsHead .logoText {
    position: absolute;
    top: -10px;
    left: calc(50% - 50px);
}

@media (max-width: 760px) {
    #aboutHead .logoText, #projectsHead .logoText, #contactHead .logoText, #blogsHead .logoText {
        display: none;
    }
}

@media (max-width: 640px) {
    #aboutHead h2, #projectsHead h2, #contactHead h2, #blogsHead h2 {
        padding: 16px 0 16px 32px;
    }
}

/*ABOUT*/
#aboutArticles {
    width: calc(100% - 192px);
    margin-left: 128px;
    padding: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(44%, 1fr));
    gap: 32px;  
}

#aboutArticles #whatsAkuut {
    background-color: var(--light-blue);
}

#aboutArticles #whoIsWouter {
    background-color: var(--blue);
}

#aboutArticles #whoIsWouter h3 {
    color: var(--off-black);
}

#aboutArticles #services {
    background-color: var(--dark-blue);
}

#aboutArticles #services h3 {
    color: var(--light-blue);
}

#aboutArticles article {
    padding: 16px;
    border-radius: 24px;
}

article .textbox {
    margin-left: 32px;
    margin-right: 32px;
}

article .textbox #socialBox {
    width: 100%;
    justify-content: space-evenly;
}

.textbox h2 {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--white);
}

.textbox h3 {
    margin-top: 0;
    color: var(--dark-blue);
    font-size: 24px;
}

.textbox p {
    color: var(--white);
}

.imagebox {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: cover;
}

#whatsAkuut {
    margin-top: 20px;
    margin-bottom: 460px;
}

#fillImage {
    background-image: url("../images/WebBannerAkuut.webp");
    background-position: center;
}

#whoIsWouter {
    margin-top: 300px;
}

#whoIsWouter p span {
    color: var(--off-black);
}

#profilePicture {
    background-image: url("../images/WouterWaumans.webp");
    background-position: center 30%;
}

#services {
    margin-top: 44px;
}

#services p span {
    color: var(--light-blue);
}

#mockup {
    background-image: url("../images/MockupBillboard.webp");
    background-position: center;
}

#serviceList {
    margin-top: 40px;
    margin-bottom: 300px;
}

#serviceList h2 {
    color: var(--off-black);
}

#serviceList li {
    color: var(--blue);
    font-family: 'urbane-Rounded', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 24px;
}

.skillList {
    width: calc(100% - 128px);
    margin-left: 128px;
}

.skillList h2 {
    margin: 16px 0 0 79px;
}

#skillIcons {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 16px;
    margin-bottom: 40px;
}

.skill {
    width: 160px;
    height: 160px;
    border-radius: 80px;
    background-color: var(--light-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px;
}

    /*SKILL ICONS*/
    #figma {
        background-image: url("../images/figma.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

    #illustrator {
        background-image: url("../images/adobe-illustrator.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

    #photoshop {
        background-image: url("../images/adobe-photoshop.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

    #html {
        background-image: url("../images/html.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

    #css {
        background-image: url("../images/css.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

    #javascript {
        background-image: url("../images/javascript.svg");
        background-repeat: no-repeat;
        background-size: 60%;
        background-position: center;
    }

@media (max-width: 900px) {
    #aboutArticles {
        grid-template-columns: repeat(auto-fill, minmax(88%, 1fr));
    }

    #whatsAkuut {
        margin-top: 20px;
        margin-bottom: 0;
    }
    
    #whoIsWouter {
        margin-top: 0;
    }

    #services {
        margin-top: 0;
    }
    
    #serviceList {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 500px) {
    #aboutArticles {
        grid-template-columns: repeat(auto-fill, minmax(96%, 1fr));
        margin-left: 0;
        width:  calc(100% - 64px);
    }
}

/*CONTACT*/

/*PROJECTS*/
.wrapper {
    overflow: hidden;
  }
  
  .sliding-background {
    background: url("../images/bannerRoll.webp") repeat-x;
    background-size: contain;
    height: 560px;
    width: 5076px;
    animation: slide 60s linear infinite;
  }
  
  @keyframes slide{
    0%{
      transform: translateX(0px);
    }
    100%{
      transform: translateX(-1896.27px);
    }
  }

/*ERROR 404*/
#errorNotFound {
    background-image: url("../images/ErrorBackgroundFill.webp");
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: center;
    overflow: hidden;
}

.errorMissing {
    margin-top: 10%;
    margin-left: 10%;
    max-width: 640px;
    height: 80%;
}

.errorMissing h1 {
    margin-bottom: -40px;
}

.errorMissing h2, .errorMissing p {
    color: var(--off-black);
}

.errorMissing a {
    margin-top: 32px;
    margin-left: calc((50% - 160px) - 5%);
}

#errorBack {
    position: absolute;
    opacity: 0.3;
    font-family: 'Oswald', sans-serif;
    font-size: 600px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: var(--off-black);
    right: 5%;
    top: -1%;
    z-index: -5;
}