/*
Theme Name: Holzbau Haas
Author: Max Winter
Version: 1.0
*/
:root {
    --pColor : #242424;
    --sColor : #454545;
    --fColor : white;
}
* {
    font-family: Arial, Helvetica, sans-serif;
    padding:0;
    margin:0;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 33px;
}
h3 {
    font-size:29px;
}
h4 {
    font-size:27px;
}
a {
    text-decoration: none;
}
p {
    font-size:16px;
}
/**** Header Section */

header {
    display:flex;
    width: 100%;

}
.site-logo {
    vertical-align: center;
}
.header-image {
    width:100%;
}
.menu {
    display: flex;
    flex-direction: row;
    width:100%;  
}
.menu li {
    list-style: none;
    padding:2rem;
}
.menu a {
    margin-right:2rem;
}
.block-box {
    display:flex;
    width:80%;
    margin:0 auto;
}
.block-box div {
    padding:4rem;
}
.block-box h2 {
    margin-bottom: 2rem;
}

@media only screen and (min-width: 600px) {
    h2 {
        font-size: 2.6rem;
        margin: 2rem 0rem;
    }
    .menu {
        flex-direction: column;
    }
    .menu a {
        font-size: 2rem;
    }
    p {
        font-size:1.4rem;
        line-height: 3rem;
    }
}
.content-wrap {
    width:80%;
    margin:0 auto;
}
.project-wrap {
    width:80%;
    margin:0 auto;
}

.entry {
    width: 100%;
}

.entry a {
    margin:1rem;
    text-decoration: none;
}

.single-post-thumbnail {
    width:100%;
}
img.wp-post-image,
.post-thumbnail img,
.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}
.topnav {
    position: relative;
}

.site-title {
    color: #fff;
    padding: 14px 16px;
    display: block;
    text-decoration: none;
}
.custom-logo {
	width:100%;
	height:60px;
}
.menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    padding: 14px;
    font-size: 20px;
    background: #000;
    color: #fff;
    border: none;
}

#mobile-menu {
    display: none;
}
#mobile-menu li {
    list-style: none;
}
#mobile-menu a {
    color: #0dafe979;
    padding: 14px 16px;
    display: block;
    text-decoration: none;
}
.mobile-links {
	width:100%;
}
@media (min-width: 768px) {

    #mobile-menu {
        display: block !important;
        margin: 0.6rem;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-links {
        display: flex;
    }
}
