@charset "utf-8";

/*
==================================================================
Style-Sheet Wai Lani Outdoordusche / Gartendusche
Copyrights: Patrick Reichelt - Wai Lani - Formcut CNC Holzhandwerk
Webdesign: Werbemanufaktur Berlin + Potsdam - Dominik R. F. Wolff
Stand: April 2026
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: 'NunitoSans';
    src: url('../fonts/NunitoSans-VariableFont.woff2') format('woff2');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

@font-face {
    font-family: 'NunitoSansItalic';
    src: url('../fonts/NunitoSans-Italic-VariableFont.woff2') format('woff2');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}

body, p { 
	font-family: 'NunitoSans', sans-serif;
	font-size: 17px;
    font-weight: 500;
	line-height: 1.6;
	color: #2C2E31;
}

p { 
	padding-bottom: 20px;
	text-align: justify;
	hyphens: auto; /* Silbentrennung */
}

h1 { 
	font-size: 50px;
	line-height: 60px;
    font-weight: 900;
	text-align: center;
	color: #2C2E31;
	padding: 70px 0px 120px 0px;
}

h2 { 
	font-size: 30px;
	line-height: 60px;
    font-weight: 900;
	color: #2C2E31;
	padding: 0px 0px 30px 0px;
}

.h2Gross {
    font-size: 50px;
    line-height: 60px;
}

h3 { 
	font-size: 20px;
	line-height: 30px;
    color: #2C2E31;
	padding: 20px 0px 15px 0px;
}

@media only screen and (max-width: 800px) { 
	h1 { 
		font-size: 24px;
		line-height: 34px;
		padding: 0px 0px 40px 0px;
	}
	
	h2 { 
		font-size: 18px;
		line-height: 30px;
		text-align: center;
	}
    
    .h2Gross {
        font-size: 20px;
        line-height: 30px;
    }
}

.rot { color: #c20016; }

.gold { color: #C5B358; }

.blau  { color: #002b64; }

.fett { font-weight: 900; }

.klein { font-size: 12px; }

/*
Hyperlinks
*/

a {
	outline: none;
	text-decoration: none;
	line-height: 1.6;
}

a:link, a:visited {
	color: #929292;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

a:hover, a:focus { 
	color: rgba(113,167,149,1.00);
	border-bottom: 1px dashed;
}

#kontakt a:link,
#kontakt a:visited,
footer a:link,
footer a:visited { 
    color: #929292;
	border-bottom: 1px dashed !important;
}

#kontakt a:hover,
#kontakt a:focus,
footer a:hover,
footer a:focus { 
	color: rgba(113,167,149,1.00);
	border-bottom: 1px dashed !important;
}

.nodashed { border-bottom: none !important; }

hr {
	border-bottom: 1px dashed #929292;
	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 : 980px) {
	
	hr { margin: 20px 0px 40px 0px;	}
}


/*
==================================================================
3. Layout-Styles
==================================================================
*/

body { background-color: #FFFFFF; }

#wrapper {
	width: 96%;
	margin: 0 2%;
}

@media only screen and (max-width: 700px) { 
	#wrapper {
		width: 92%;
		margin: 0 4%;
	}
}

#header { padding: 20px 0px 0px 0px; }

#logoHeader img {
	width: 80%;
	height: auto;
	margin: 0 10%;
    padding-top: 40px;
}

#logoHeader, #logoBildinfo {
	-webkit-transition: -webkit-transform 1s ease;
	transition: transform 1s ease;
}

#logoHeader:hover, #logoBildinfo:hover {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
}

#mainNavigation { 
	text-align: center;
	padding: 40px 0px 0px 0px;
}

#mainNavigation a { 
	font-size: 18px;
	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);
}

.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: 799px) {
	
	.menu-icon { display: inline; }
}

/* Scroll-Navigation */

#obenScroll {
	width: 100%;
	padding: 20px 0px;
	background-color: #FFFFFF;
	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 {  }

#scrollZeichen a:hover, #scrollZeichen a:focus { color: rgba(113,167,149,1.00) !important; }

#obenScrollNavigation { 
	float: right;
	padding-top: 0px;
}

#obenScrollNavigation a:link,
#obenScrollNavigation a:visited,
#scrollObenResponsive:link,
#scrollObenResponsive:visited { 
	font-weight: 900;
	font-size: 14px;
	color: #929292;
	border-bottom: none;
}

#scrollObenResponsive:link,
#scrollObenResponsive:visited { font-size: 15px; }

#obenScrollNavigation a:hover,
#obenScrollNavigation a:focus,
#scrollObenResponsive:hover,
#scrollObenResponsive:focus {
	color: rgba(113,167,149,1.00);
	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 : 660px) { 
	
	#obenScrollNavigation { display: none; } 
	
	#scrollObenResponsive {
		display: inline;
		float: right;
	}
}

/* Ende Scroll-Navigation */

section { padding: 60px 0px 0px 0px; }

.divLinks {
    width: 47%;
    float: left;
    margin-right: 3%;
    margin-bottom: 120px;
    overflow: hidden;
}

.divRechts {
	width: 47%;
    float: right;
    margin-left: 3%;
    margin-bottom: 120px;
    overflow: hidden;
}

.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: 900px) { 
	
    section { padding: 100px 0px 0px 0px; }
    
    .divLinks, 
	.divRechts {
        width: 100%;
        float: none;
		margin-right: 0;
        margin-left: 0;
        margin-bottom: 40px;
    }
	
	.divLinks img,
    .divRechts img { margin: 0px; }
}

.button {
	background-color: #002b64;
    color: #C5B358 !important;
    font-size: 20px;
    font-weight: 800;
	padding: 10px 14px 10px 14px;
	cursor: pointer;
	-webkit-transition: all 0.6s ease-in-out !important;
	transition: all 0.6s ease-in-out !important;
    display: inline-block;
    margin: 10px 0px;
}

.button:hover, 
.button:focus { 
	background-color: #C5B358;
	color: #002b64 !important;
    border-bottom: none !important;
}

/* 
Zusatzleistungen
*/

.zusatzleistung {
    width: 24%;
    padding: 0.5%;
    float: left;
}

.zusatzleistung img {
    width: 100%;
    height: auto;
}

/* 
Ende Zusatzleistungen
*/

/* 
Bildergalerie
*/

.bildDerGalerie { float: left; }

@media only screen and (min-width: 0px) { .bildDerGalerie { width: 100%; margin: 0; } }

@media only screen and (min-width: 500px) { .bildDerGalerie { width: 48%; margin: 0 1%; } }

@media only screen and (min-width: 1000px) { .bildDerGalerie { width: 31%; margin: 0 1%; } }

@media only screen and (min-width: 1500px) { .bildDerGalerie { width: 23%; margin: 0 1%; } }

@media only screen and (min-width: 2000px) { .bildDerGalerie { width: 18%; margin: 0 1%; } }

.bildDerGalerie  img {
    width: 100%;
    height: auto;
    transition: box-shadow 0.5s ease;
}

.bildDerGalerie img:hover { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4); }

.bildDerGalerie figure a { border-bottom: none !important; }

.bildDerGalerie figure p { text-align: left; }

@media only screen and (max-width: 750px) { .bildDerGalerie figure p { font-size: 12px; } }

/* 
Ende Bildergalerie 
*/

#kontaktLinks {
    float: left;
    width: 30%;
    margin-right: 5%;
}

#kontaktMitte {
    float: left;
    width: 30%;
}

#kontaktRechts {
    float: left;
    width: 30%;
    margin-left: 5%;
}

#kontakt { padding-bottom: 100px; }

@media only screen and (max-width: 1000px) { 
    
    #kontaktLinks, 
    #kontaktMitte,
    #kontaktRechts {
        float: none;
        width: 100%;
        margin: 0;
    }
    
    #kontaktLinks { margin-bottom: 40px; }
    
    #kontakt { padding-bottom: 20px; }
}

/*
Formular
*/

label {
    display: block;
    font-family: 'Muli-Regular', sans-serif;
    font-size: 16px;
}

input {
    width: 95%;
    height: 30px;
    margin: 5px 0px 20px 0px;
    border: 1px solid #929292;
    font-family: 'Muli-Regular', sans-serif;
    font-size: 16px;
    padding: 0px 5px;
}

textarea {
    width: 95%;
    height: 200px;
    padding: 0px 5px;
    margin-top: 5px;
    margin-bottom: 20px;
    border: 1px solid #929292;
    font-family: 'Muli-Regular', sans-serif;
    font-size: 16px;
}

input:focus, textarea:focus { border: 1px solid rgba(113,167,149,1.00); }

@media only screen and (max-width: 600px) { input, textarea { width: 96%; } }

.checkboxContainer { 
    white-space: nowrap;
    margin-bottom: 40px;
    margin-top: 20px;
}

.checkboxContainer label, .checkboxContainer input {
    margin: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

.checkboxContainer input {
    width: 20px;
    height: 20px;
}

#senden {
    height: 60px;
    width: auto;
    padding: 0px 20px;
    margin: 0px 0px 20px 0px;
    background-color: rgba(113,167,149,1.00);
    cursor: pointer;
    font-family: 'Muli-Regular', sans-serif;
    font-size: 16px;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#senden:hover, 
#senden:active { background-color: #c20016; }

#fehlermeldung {
    color: red; 
    text-align: left;
    width: 100%;
}

/*
Ende Formular
*/


footer { padding: 12px 0px 18px 0px; }

footer p { 
	font-size: 12px;
	line-height: 20px;
	padding: 0px;
	text-align: center;
}

.clear {
	clear: both;
	width: 0px;
	height: 0px;
}

#impressum, #datenschutz { 
    width: 90%;
    margin: 0 auto;
}

#impressum .divLinks, #datenschutz .divLinks { text-align: left; }

#impressum h2, #datenschutz h2 { padding: 60px 0px 60px 0px; }

/* 404-Seite */

#logo404 {
	width: 80%;
	height: auto;
	margin: 0 10%;
    padding-top: 40px;
}


/*
==================================================================
Ende Stylesheet
==================================================================
*/