@charset "UTF-8";
/* CSS Document */

/* Webfonts-Einbindung */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');


/* Farbwerte 
Blaugrau
#1e242a
rgba(30,36,42,1)

Orange
#e74e0f
rgba(231,78,15,1)

*/

/* Reset * * * * * * * * */
*{
margin: 0;
padding: 0;
-mozbox-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

body{font: 400 1.250rem/1.6 "Roboto Condensed", serif; color: rgba(30,36,42,1,);}
section{padding: 50px 0;}
img{max-width: 100%;}

/* Clearfix */
.row:before,
.row:after {
content: " ";
display: table;
}
 
.row::after {
clear: both;
}

/* Raster */
 
.wrapper{
max-width: 1250px;
padding: 0 25px;
margin: 0 auto;
}
 
.column {
float: left;
margin: 25px 0 25px 5%;
padding: 25px 0;
}

.column:first-child{
margin-left: 0;
}

.col_1{
width: 100%;
}
 
.col_1_2{
width: 47.5%;
}
   
.col_1_3{
width: 30%;
}
 
.col_2_3{
width: 65%;
}
 
.col_1_4{
width: 21.25%;
}
 
.col_3_4{
width: 73.75%;
}


/* Allgemeine Klassen */

.capital{text-transform:uppercase; letter-spacing: 3px; border-bottom: 4px solid rgba(231,78,15,1);}
.light-orange{background: rgba(231,78,15,0.1);}
.light-grey{background: rgba(30,36,42,0.05);}
.img-box {
	padding: 0px;
    border: 1px solid rgba(220,227,230,1);
    border-radius: 15px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);}

/* Button */

.button{
background: rgba(231,78,15,0.1);
border: 1px solid rgba(231,78,15,1);
border-radius: 10px;
padding: 10px 20px 8px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
color: rgba(231,78,15,1);
display: inline-block;
margin: 20px 25px 20px 0;
transition: all 0.15s linear 0s;
}
.button:hover{
color: #fff;
background: rgba(231,78,15,1);
border: 1px solid rgba(231,78,15,1);

text-decoration: none;
}


/* Typo */

h1, h2, h3, h4, h5, h6{
font-family: "Roboto Condensed", serif;
font-style: normal;
font-weight: 700;    
margin-bottom: 20px;
color: rgba(30,36,42,1,);
line-height: 1.2;
}

h1{     
font-size: 3.000rem; /* 48px; */     
margin-bottom: 25px;     
} 
 
h2{     
font-size: 2.250rem; /* 36px; */     
} 
 
h3{    
font-size: 1.75rem; /* 28px; */ 
font-weight: 600;
}

a{color: rgba(231,78,15,1); text-decoration: none;}
a:hover{text-decoration: underline;}

p {margin: 0 0 15px;}

/* HEADER */

.header{border-bottom: solid 1px rgba(231,78,15,1.0);background: rgba(30,36,42,0.1)}
.header .column {padding: 0 0; margin:20px 0;}


/* NAVIGATION */

#navigation{ float:right; margin-top: 50px;}
#navigation li{display: inline;list-style: none;margin-left: 35px;}
#navigation li a{text-decoration: none;text-transform: uppercase;font-size: 1.100rem; font-weight: 600; color: #1e242a;padding: 5px 0;}
#navigation li a:hover{border-bottom: 3px solid; text-decoration: none; color: #e74e0f;}


/* Responsive Navigation */

.nav-toggle {display:none; background: rgba(30,36,42,0.1); padding: 10px 15px; color: rgba(30,36,42,1);}
.nav-toggle:hover {background: rgba(231,78,15,1);text-decoration:none; color: #fff;}


.hero{background: url('../img/header_holzbau.jpg') center center no-repeat; min-height: 600px; background-size: cover; margin:0;}


/* Leistungen-Teaser */

.leistungen img {margin-bottom: 20px;}
.leistungen h2 {text-align: center;}

/* Bildergallerie */

.gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin: 20px;
        }
        .gallery img {
            width: 350px;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        }




/* FOOTER */

footer{border-top: solid 1px rgba(231,78,15,1.0); background: rgba(30,36,42,0.1) }
footer .column {padding: 0 15px; margin:40px 0;}
footer .foot {font-size: 1.000rem}

/* Media Queries */

 
@media (max-width: 950px){
.col_1, .col_1_2, .col_1_3, .col_2_3, .col_1_4, .col_3_4 {width: 100%;}
.column{margin-left: 0;}

/* Responsive Navigation */

nav {height: 0; transition: height .5s ease-in-out; overflow:hidden;}
.nav-toggle {display:block; }
#nav-open:target .nav-closed {display:block; } 
.nav-closed, #nav-closed:target .nav-closed, #nav-open:target .nav-open {display:none; }
#nav-open:target nav {display: block; height: 400px;}

#navigation{
margin-top:0;
float: none;
border-bottom: 1px solid #ccc;
}
 
#navigation li{
display: block;
margin-left: 0;
text-align: left;
border-top: 1px solid #ccc;
}
 
#navigation li a{
margin-left: 0;
display: block;
padding: 15px;
}

}