@charset "utf-8";

/*
==================================================================
Style-Sheet Nestbau Kollektiv Berlin
Copyrights: Nestbau Kollektiv Berlin
Webdesign: Werbemanufaktur Berlin + Potsdam - Dominik Wolff
Stand: August 2025
Inhalt:

1. Kalibrierung
2. Allgemeine Styles
3. Layout-Styles
4. Formular
5. Responsive
==================================================================
*/

/*
==================================================================
1. Kalibrierung
==================================================================
*/

* {
	margin: 0;
	padding: 0;
	border: 0;
}

html { height: 101%; } /* Kein Sprung bei Mozilla, wenn die Seite sehr kurz ist (Erscheinen und Verschwinden der Scrollbalken). */

html { scroll-behavior: smooth; }

main { display: block; } /* main - Element nicht im IE unterstüzt. */

/*
==================================================================
2. Allgemeine Styles
==================================================================
*/

/*
Text
*/

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont.woff2') format('woff2'),
         url('../fonts/Inter-VariableFont.woff') format('woff');
    font-weight: inherit;
    font-style: normal;
}

body, p { 
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.6;
    font-weight: 400;
	color: #3A3432;
}

p { 
	padding-bottom: 20px;
	text-align: justify;
    font-weight: 400;
	hyphens: auto; /* Silbentrennung */
}

.kontaktLink { 
    font-size: 20px;
    font-weight: bolder;
}

.letzterAbsatz { padding-bottom: 0px; }

h1 { 
	font-size: 60px;
    font-weight: bolder;
	line-height: 70px;
	text-align: left;
	color: #3A3432;
	padding: 0px 0px 80px 0px;
}

h2 { 
	font-size: 50px;
    font-weight: bolder;
	line-height: 60px;
	color: #3A3432;
	padding: 0px 0px 80px 0px;
}

h3 { 
	font-size: 40px;
    font-weight: bolder;
	line-height: 50px;
    color: #3A3432;
	padding: 0px 0px 80px 0px;
}

h4 { 
	font-size: 22px;
    font-weight: bolder;
	line-height: 34px;
    color: #3A3432;
	padding: 40px 0px 20px 0px;
}

.unterUeberschrift { 
    font-size: 30px;
    color: #EAC306;
}

@media only screen and (max-width: 1000px) { 
	body, p { 
        font-size: 14px;
        line-height: 1.4;
    }
    
    h1 { 
		font-size: 28px;
		line-height: 38px;
		padding: 0px 0px 40px 0px;
	}
	
	h2 { 
		font-size: 24px;
		line-height: 34px;
        padding: 0px 0px 40px 0px;
	}
    
    .unterUeberschrift { font-size: 20px; }
    
    h3 { 
		font-size: 20px;
		line-height: 30px;
        padding: 0px 0px 40px 0px;
	}
    
    h4 { 
        font-size: 14px;
        line-height: 24px;
        padding: 40px 0px 20px 0px;
    }
}

.gelb { color: #EAC306; }

.dunkelbraun { color: #3A3432; }

.rot { color: crimson; }

.gruen { color: darkgreen; }

.fett { font-weight: bolder; }

.klein { font-size: 12px; }

.links { text-align: left; }

/*
Hyperlinks
*/

a {
	outline: none;
	text-decoration: none;
	line-height: 1.6;
}

a:link, a:visited {
	color: #EAC306;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

a:hover, a:focus { 
	color: #3A3432;
	border-bottom: 1px dashed;
}

#mainNavigation a:link,
#mainNavigation a:visited { color: #3A3432; }

#mainNavigation a:hover,
#mainNavigation a:focus { 
	color: #EAC306;
	border-bottom: 1px dashed !important;
}

#kontakt a:link,
#kontakt a:visited { 
    color: #3A3432;
	border-bottom: 1px dashed !important;
}

#kontakt a:hover,
#kontakt a:focus { 
	color: #9B6F16;
	border-bottom: 1px dashed !important;
}

.nodashed { border-bottom: none !important; }

hr {
	border-bottom: 1px dashed #3A3432;
	border-width: thin;
	width: 100%;
	margin: 30px 0px 50px 0px;
	text-align: left; /* Extra für Opera und IE - das Sie eine Linie automatisch in der Mitte zentrieren und damit margin nicht wirkt. */
}

@media only screen and (max-width : 1000px) {
	
	hr { margin: 20px 0px 40px 0px;	}
}


/*
==================================================================
3. Layout-Styles
==================================================================
*/

body { background-color: #FFFFFF; }

#wrapper {
    background-image: url('../images/holzbalken.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% auto;
}

#header { 
    width: 96%;
	margin: 0 2%;
    padding-top: 20px;
}

#logoHeader img {
	width: 10%;
	height: auto;
    float: left;
    padding-top: 40px;
}

#mainNavigation { 
	text-align: right;
	padding: 40px 0px 0px 0px;
}

#mainNavigation a { 
	font-size: 18px;
    font-weight: 700;
	margin: 0px 6px;
}

#mainNavigation a:last-child { margin-right: 0px; }

.socials { 
	height: 20px;
	width: 20px;
    vertical-align: middle;
	-webkit-transition: -webkit-transform 1s ease;
	transition: transform 1s ease;
}

.socials:hover {
	text-decoration: none;
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
}

@media only screen and (max-width : 1000px) {
	
	#logoHeader img {
        width: 20%;
        margin: 0 40%;
        float: none;
        padding: 20px 0px;
    }
    
    #mainNavigation { 
        text-align: center;
        padding: 0px;
    }

    #mainNavigation a { 
        font-size: 14px;
        line-height: 34px;
        text-align: center;
        margin: 0px;
    }
}

.menu-icon { 
	display: none;
	width: 24px;
	height: 24px;
	background: url(../images/navigation.png) left top no-repeat;
	background-size: 100%;
	float: right;
	margin-top: 30px;
	cursor: pointer;
}

@media only screen and (max-width: 1000px) {
	
	.menu-icon { display: inline; }
}

/* Scroll-Navigation */

#obenScroll {
	width: 100%;
	padding: 20px 0px;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.3);
	position: fixed;
	top: -70px; /* verstecken */
	transition: top 1s; /* Sliding-Effekt */
	z-index: 3;
}

#obenScrollNavigationRahmen {
	width: 96%;
	margin: 0 auto;
}

@media only screen and (max-width: 700px) { 
	
    #obenScrollNavigationRahmen {
		width: 92%;
		margin: 0 4%;
	}
}

#scrollZeichen a { color: #3A3432 !important; }

#scrollZeichen a:hover, #scrollZeichen a:focus { color: #EAC306 !important; }

#obenScrollNavigation { 
	float: right;
	padding-top: 0px;
}

#obenScrollNavigation a:link,
#obenScrollNavigation a:visited,
#scrollObenResponsive:link,
#scrollObenResponsive:visited { 
	font-size: 14px;
    font-weight: 700;
	color: #3A3432;
	border-bottom: none;
}

#scrollObenResponsive:link,
#scrollObenResponsive:visited { font-size: 15px; }

#obenScrollNavigation a:hover,
#obenScrollNavigation a:focus,
#scrollObenResponsive:hover,
#scrollObenResponsive:focus {
	color: #EAC306;
	border-bottom: 1px dashed;
}

#scrollObenResponsive { display: none; }

#obenScrollNavigation a { 
	font-size: 18px;
	margin: 0px 6px;
}

#obenScrollNavigation a:last-child { margin-right: 0px; }

#obenScrollNavigation .socials { opacity: 0.25; }

@media only screen and (max-width : 800px) { 
	
	#obenScrollNavigation { display: none; } 
	
	#scrollObenResponsive {
		display: inline;
		float: right;
	}
}

/* Ende Scroll-Navigation */

section { 
    width: 96%;
	margin: 0 2%;
    padding-top: 120px;
}

.hintergrundFarbe { background-color: #F5F2E7; }

.divEineSpalte { padding-bottom: 120px; }

.divSpalten {
    column-count: 2;
    column-gap: 6%;
    padding-bottom: 120px;
}

.divLinks {
    width: 47%;
    float: left;
    margin-right: 3%;
    overflow: hidden;
    margin-bottom:  120px;
}

.divRechts {
	width: 47%;
    float: right;
    margin-left: 3%;
    overflow: hidden;
    margin-bottom: 120px;
}

.divLinks img, 
.divRechts img { 
	width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.divLinks img:hover, 
.divRechts img:hover { transform: scale(1.3); }

@media only screen and (max-width: 1000px) { 
      
    section {
		width: 92%;
		margin: 0 4%;
        padding-top: 80px;
	}
    
    .divSpalten {
        column-count: 1;
        column-gap: 0;
        padding-bottom: 40px;
    }
    
    .divEineSpalte { padding-bottom: 40px; }
    
    .divLinks, 
	.divRechts {
        width: 100%;
        float: none;
		margin-right: 0;
        margin-left: 0;
        margin-bottom: 40px;
    }
	
	.divLinks img,
    .divRechts img { margin: 0px; }
}

#arbeitsprozessEins,
#arbeitsprozessZwei,
#arbeitsprozessDrei,
#arbeitsprozessVier {
    float: left;
    width: 22%;
    padding-right: 4%;
}

#arbeitsprozessVier { padding-right: 0; }

@media only screen and (max-width : 1000px) {
	
	#arbeitsprozessEins,
    #arbeitsprozessZwei,
    #arbeitsprozessDrei,
    #arbeitsprozessVier {
        width: 48%;
        padding-right: 4%;
    }
    
    #arbeitsprozessZwei,
    #arbeitsprozessVier { padding-right: 0; }
}

@media only screen and (max-width : 600px) {
	
	#arbeitsprozessEins,
    #arbeitsprozessZwei,
    #arbeitsprozessDrei,
    #arbeitsprozessVier {
        width: 100%;
        padding-right: 0;
    }
}

ul.gelbeListe {
    background-color: #EAC306;
    padding: 30px 30px 30px 60px;
    list-style-type: none;
}

.gelbeListe li::marker {
    content: "►";
    font-size: 18px;
    color: #9B6F16;
}

.gelbeListe li {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) { 
    .gelbeListe li { font-size: 14px; }
    .gelbeListe li::marker {font-size: 14px; }
}

/* Anfang Spitzbalken */

.spitzenBalkenEins {
    position: relative;
    display: block;
    width: 86%;
    height: 68px;
    padding: 10px 20px;
    margin-top: 40px;
    background-color: #3A3432;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bolder;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
}

/* Dreieck als Spitze */
.spitzenBalkenEins::after {
    content: "";
    position: absolute;
    right: -33px; /* Hier Hack einen Pixel weniger, da es bei hochaulösenden Display zu Problemen kommt. */
    top: 0;
    width: 0;
    height: 0;
    border-left: 34px solid #3A3432; /* Immer die Hälfte von der Höhe des Buttons und gerade Zahl. */
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
}

.spitzenBalkenZwei {
    position: relative;
    display: block;
    width: 86%;
    height: 68px;
    padding: 10px 20px;
    margin-top: 40px;
    background-color: #595649;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bolder;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
}

/* Dreieck als Spitze */
.spitzenBalkenZwei::after {
    content: "";
    position: absolute;
    right: -33px; /* Hier Hack einen Pixel weniger, da es bei hochaulösenden Display zu Problemen kommt. */
    top: 0;
    width: 0;
    height: 0;
    border-left: 34px solid #595649; /* Immer die Hälfte von der Höhe des Buttons und gerade Zahl. */
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
}

.spitzenBalkenDrei {
    position: relative;
    display: block;
    width: 86%;
    height: 68px;
    padding: 10px 20px;
    margin-top: 40px;
    background-color: #9B6F16;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bolder;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
}

/* Dreieck als Spitze */
.spitzenBalkenDrei::after {
    content: "";
    position: absolute;
    right: -33px; /* Hier Hack einen Pixel weniger, da es bei hochaulösenden Display zu Problemen kommt. */
    top: 0;
    width: 0;
    height: 0;
    border-left: 34px solid #9B6F16; /* Immer die Hälfte von der Höhe des Buttons und gerade Zahl. */
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
}

.spitzenBalkenVier {
    position: relative;
    display: block;
    width: 86%;
    height: 68px;
    padding: 10px 20px;
    margin-top: 40px;
    background-color: #EAC306;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: bolder;
    line-height: 25px;
    color: #3A3432;
    border: none;
}

/* Dreieck als Spitze */
.spitzenBalkenVier::after {
    content: "";
    position: absolute;
    right: -33px; /* Hier Hack einen Pixel weniger, da es bei hochaulösenden Display zu Problemen kommt. */
    top: 0;
    width: 0;
    height: 0;
    border-left: 34px solid #EAC306; /* Immer die Hälfte von der Höhe des Buttons und gerade Zahl. */
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
}

/* Ende Spitzbalken */

.buttonImage {
    float: left;
    width: 31.33%;
    margin: 1%;
    padding: 20px;
    background-color: #9B6F16;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

@media only screen and (max-width : 1000px) {
	
	.buttonImage {
        width: 48%;
        margin: 1%;
        font-size: 14px;
    }
}

@media only screen and (max-width : 600px) {
	
	.buttonImage {
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* 
Bildergalerie
*/

.bilderArbeiten { float: left; }

@media only screen and (min-width: 0px) { .bilderArbeiten { width: 100%; margin: 0; } }

@media only screen and (min-width: 500px) { .bilderArbeiten { width: 48%; margin: 0 1%; } }

@media only screen and (min-width: 1000px) { .bilderArbeiten { width: 31%; margin: 0 1%; } }

@media only screen and (min-width: 1500px) { .bilderArbeiten { width: 23%; margin: 0 1%; } }

@media only screen and (min-width: 2000px) { .bilderArbeiten { width: 18%; margin: 0 1%; } }

.bilderArbeiten  img {
    width: 100%;
    height: auto;
    transition: box-shadow 0.5s ease;
}

.bilderArbeiten img:hover { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4); }

.bilderArbeiten figure a { border-bottom: none !important; }

.bilderArbeiten figure p { text-align: left; }

@media only screen and (max-width: 750px) { .bilderArbeiten figure p { font-size: 12px; } }

/* 
Ende Bildergalerie 
*/

footer { 
    background-color: #EAC306; 
    padding-bottom: 120px;
    background-image: url('../images/holzbalken.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;
}

#kontaktLinks {
    float: left;
    width: 30%;
    margin-right: 5%;
}

#kontaktLinks p { text-align: left; }

#kontaktMitte {
    float: left;
    width: 30%;
}

#kontaktMitte img {
    width: 80%;
    height: auto;
    margin: 0 10%;
    padding-bottom: 40px;
}

#kontaktMitte p { text-align: center; }

#kontaktRechts {
    float: left;
    width: 30%;
    margin-left: 5%;
}

#kontaktRechts p { text-align: right; }

@media only screen and (max-width: 1000px) { 
    
    footer { padding-bottom: 40px; }
    
    #kontaktLinks, 
    #kontaktMitte,
    #kontaktRechts {
        float: none;
        width: 100%;
        margin: 0;
    }
    
    #kontaktMitte p { text-align: left; }
    
    #kontaktMitte img {
        width: 40%;
        height: auto;
        margin: 0px 0px 20px 0px;
    }
    
    #kontaktLinks, #kontaktMitte { margin-bottom: 40px; }
    
    #kontaktRechts p { text-align: left; }
    
}

.clear {
	clear: both;
	width: 0px;
	height: 0px;
}

#impressum, #datenschutz { 
    width: 90%;
    margin: 0 auto;
}

#impressum .divLinks, #datenschutz .divLinks { text-align: left; }

#impressum h2 { padding: 60px 0px 60px 0px; }

#datenschutz h2 { padding: 60px 0px 0px 0px; }

#datenschutz h3 { padding: 40px 0px 60px 0px; }

/* 404-Seite */

#div404 {
    text-align: center;
    padding: 20px;
}

#logo404 {
	width: 60%;
    max-width: 200px;
	height: auto;
    padding-bottom: 60px;
}

/*
==================================================================
Ende Stylesheet
==================================================================
*/