@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');

/* Global CSS */

body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding-top: 40px;
    padding-left: 240px;
}


/* header and menu */

 .side-header {
    position: fixed;
    width: 220px;
    height: 100%;
    float: left;
    top: 0;
    left: 0;
    z-index: 101;
    background-image: url(background/bgmenu.jpg);
    background-repeat: repeat-x;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#primary-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#primary-menu ul {
    padding-top: 50px;
    list-style-type: none;
}

#primary-menu a {
    color: #fff
}

#home {
    opacity: 0;
}

.top-header {
    position: fixed;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #000000;
    background-image: url(background/bgmenutop.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    border-bottom: 0px solid #000;
    font-size: 10px;
    color: #915E21;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
}

#logo-site {
    position:fixed;
    z-index: 102;
    width: 15%;
    top: 0%;

}
#logo-site-mobile {
    width: 20%;
    opacity: 0;
}


/* Text and place */

.section {
    padding: 60px 80px;
}

.row {
    padding: 20px 0;
}

.col {
    padding: 0 15px;
}

#page-title {
    display: block;
    position: relative;
    text-align: center;
    right: 20px;
}

#page-title::after {
    content: '';
    display: block;
    margin: 20px auto 20px;
    width: 100%;
    width: 90%;
    height: 1px;
    border-bottom: 1px dotted rgb(196, 196, 196);
    position: relative;
    opacity: 1;
    right: 10px;

}

.text{
    text-align:center;
    line-height: 180%;
    font-size: 15px;
    font-family: 'Arimo', sans-serif;
    word-spacing: 2px;
}


img {
    content: center;
    width: 100%;
    height: auto;
}

.bodypaint {
    font-family: 'Michroma', sans-serif;  
}


/* Paint */

.paintjob-grid {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    position: relative;
    padding: 10px;
    width: 95%;
    height: auto;
}

/* Footertekst */

#liter {
    text-align: center;
    font-size: 20px;
}

#info {
    text-align: center;
}



/**
 * Responsive CSS
 */

@media screen and (max-width: 670px){

    body {
        padding-top: none;
        padding-left: 1px;
        padding-right: 1px;
    }

    #logo-site-mobile {
        opacity: 1;
        width: 100%;
        z-index: 999;
    }

    #home {
        opacity: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        
        
    }

    #home ul {
        padding-top: 50px;
        list-style-type: none;
    }

    #home a {
        color: #fff;
    }

    .section {
        padding: 1px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .text{
        text-align: left;
        padding: none;
        padding-right: none;
        font-size: 12px;
        padding-left: 1px;
        padding-right: 1px;
    }

    .paintjob-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        position: relative;
        padding: 10px;
        width: 95%;
        height: auto;
    }

    .top-header {
        display: none;
    }

    .side-header {
        width: 2px;
        opacity: 0;
    }

    .paintjob-title {
        font-size: 18px;
    }

    #primary-menu-mobile ul {
        padding-top: 50px;
        list-style-type: none;
    }

    #primary-menu-mobile a {
        color: #fff;
    }

    #page-title{
        padding-left: 40px;
    }

    #page-title::after {
        right: 5px;
    }
}