/*
Name: style.css
Description: CSS-Date.
Version: 1.0
*/

/* ################# STANDAARD INSTELLINGEN ################# */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #F7F8E0;
    width: 100%;
}
h1, p {
    margin: 0;
}



/* ################# HEADER ################# */

/* Header ----------- */
header {
    width: 100%;
    background-color: #F7F8E0;
    background-image: url('../images/wachtermuur1.jpg'); 
    height: 260px;  
}
header .flex-box-sm {
    height: 200px;
    text-align: center;    
}
header .logo{ 
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.top{
    align-self: center;
}


/* Menu-Button ----------- */
header .menu .menu-button {
    display:none;
}

/* Menu ----------- */
header .menu {
    display: inline;
    text-align: center;
    font-size: 18px;    
}
header .menu ul li {
    list-style: none;
    display: inline;
    margin: 0 0 0 30px;
}
header .menu ul li:first-child {
    margin: 0;
}
header .menu ul li a {
    color: rgb(7, 7, 7);
    text-decoration: none;
    transition: all 500ms;
    border-bottom: solid 1px rgba(255, 255, 255, 0);
    position: relative;
    top: 0;
}
header .menu ul li a:hover {
    border-bottom: solid 1px rgba(255, 255, 255, 0.15);
    top: 3px;
}

/* ################# BANNER & INHOUD ################# */

/* Inhoud ----------- */
.inhoud .flex-box-sm {
    background-color: #F7F8E0;
    margin: 0px 15px 0px 15px;
    padding: 0px 15px 0px 15px;
    width: auto;    
    display: flex;    
}


.inhoud .wachter{
    margin-top: 0px;
}


.inhoud .fotovakwachter{   
    flex:1;    
    margin-left: 42px;
    margin-top: 20px;
    margin-bottom: 20px;
        
}
.inhoud .fotovakwachter img{
    width: 500px;
    height: 450px;
}

.inhoud p {
    text-align: justify;
    color: #444444;
    line-height: 1.5;    
}


/* ################# FOOTER ################# */
footer {
    width: 100%;
    background-color: #F7F8E0;
    color: #fff;
    height: 120px;
    background-image: url('../images/wachtermuur1.jpg');
}

/* ###################  AANPASSING VOOR I-PAD################################## */

@media screen and (max-width: 1366px) {
    
   
    .inhoud .fotovakwachter{   
        flex:1;    
        margin-left: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
            
    }
    .inhoud .fotovakwachter img{
        width: 450px;
        height: 405px;
    }
        
}

/* ################### MOBIELE AANPASSING ################################## */

@media screen and (max-width: 768px) {
    /* ####### HEADER ####### */
   
    header {        
        background-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
        height: 180px;        
    }
    
    .inhoud .flex-box-sm {
    background-color: #F7F8E0;
    margin: 0px 15px 0px 15px;
    padding: 0px 15px 0px 15px;
    width: auto;    
    display: flex;    
}
    header .flex-box-sm {
        height: auto;
    }
    header .top{ display: block;
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
    header .menu {
       margin-top: 20px;       
    }
    header .menu ul li {
        list-style: none;
        display: block;
        margin: 0 0 0 30px;
    }
   /* Menu-Button ----------- */
header .menu .menu-button {
    display: block;
    position: absolute;
    top: 60px;
    right: 15px;
    height: 30px;
    cursor: pointer;
}
header .menu {    
    text-align: center;   
}
header .menu nav {
    background-color: rgba(12, 1, 1, 0.99);
    padding: 10px 0;
    position: relative;
    display: none;
}
header .menu nav.open-menu {
    display: block;
    animation: open-menu 500ms ease-out 0s normal forwards;
}     
header .menu ul li {
    list-style: none;
    display: block;
    margin: 0 0 0 30px;
}
header .menu ul li:first-child {
    margin: 0;
}
header .menu nav.close-menu {
    display: block;
    animation: close-menu 250ms ease-out 0s normal forwards;
}


.sm-box .fotovak{   
    flex:1;      
    margin-left: -4px;
    justify-content: center;         
    }


.inhoud .wachter{
    margin-top: 200px;    
    display: flex;
    justify-content: center;   
}
.inhoud .fotovakwachter{
    margin-left: -20px;    
}
.inhoud .fotovakwachter img{
    width: 390px;
    height: 259px;
}



footer {
    height: 60px;       
}

.responsive {
    width: 100%;
    max-width:400px;
    height: auto;
    padding-left: -150px;
    margin-top: -10px;
    margin-bottom: -150px;
}
 
}