@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: 18px;
    font-weight: 500;
	line-height: 1.6;
	color: #2C2E31;
}

p { 
	padding-bottom: 20px;
	text-align: justify;
	hyphens: auto; /* Silbentrennung */
}

@media only screen and (max-width: 1200px) { body, p { font-size: 16px; } }

h1 { 
	font-size: 50px;
    font-weight: 900;
    font-stretch: 110%;
    line-height: 60px;
	color: #2C2E31;
    text-align: center;
	padding: 80px 0px 80px 0px;
}

h2 { 
	font-size: 40px;
    font-weight: 900;
    font-stretch: 110%;
    line-height: 60px;
	color: #2C2E31;
	padding: 0px 0px 60px 0px;
}

h3 { 
	font-size: 18px;
    font-weight: 900;
    font-stretch: 110%;
	line-height: 30px;
    color: #C5B358;
	padding: 0px 0px 20px 0px;
}

@media only screen and (max-width: 900px) { 
	h1 { 
		font-size: 26px;
		line-height: 34px;
		padding: 0px 0px 40px 0px;
	}
	
	h2 { 
		font-size: 22px;
		line-height: 30px;
        text-align: center;
        padding: 0px 0px 40px 0px;
	}
}

@media only screen and (max-width: 500px) { 
	h1 { 
		font-size: 22px;
		line-height: 34px;
        text-align: left;
		padding: 0px 0px 40px 0px;
	}
	
	h2 { 
		font-size: 18px;
		line-height: 30px;
        text-align: left;
	}
}

.rot { color: #c20016; }

.gold { color: #C5B358; }

.blau  { color: #002b64; }

.fett { font-weight: 800; }

.klein { font-size: 12px; }

/*
Hyperlinks
*/

a {
	outline: none;
	text-decoration: none;
	line-height: 1.6;
}

a:link, a:visited {
	color: #2C2E31;
	-webkit-transition: color 0.5s ease-in-out;
	transition: color 0.5s ease-in-out;
}

a:hover, a:focus { 
	color: #C5B358;
	border-bottom: 1px dashed;
}

#kontakt a:link,
#kontakt a:visited,
footer a:link,
footer a:visited { 
    color: #f8f8f6;
	border-bottom: 1px dashed;
}

#kontakt a:hover,
#kontakt a:focus,
footer a:hover,
footer a:focus { 
	color: #C5B358;
	border-bottom: 1px dashed;
}

.dashed { border-bottom: 1px dashed; }

.nodashed { border-bottom: none !important; }

hr {
	border-bottom: 1px dashed #2C2E31;
	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: #f8f8f6; }

/* 
Anfang Navigationen 
*/

/* Navigation oben */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
    width: 160px;
    margin-left: 2%;
    position: relative;
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: auto;
    opacity: 1; 
    transition: opacity 0.6s ease;
}

#logoScroll { opacity: 0; }

@media only screen and (max-width: 500px) { 
	.logo img {
    position: absolute;
        height: 25px;
        width: auto;
        padding-top: 12px;
    }
}

.nav-right {
  display: flex;
  align-items: center;
  margin-right: 2%;
  gap: 25px;
}

.nav-right a {
  text-decoration: none;
  font-size: 30px;  
  font-weight: normal;
  color: white;
  transition: color 0.6s ease, border-bottom 0.3s ease;
  padding-bottom: 2px;
}

.nav-right a:hover, .nav-right a:focus { border-bottom: none !important; }

.menu-icon {
    width: 40px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.menu-icon.active span:nth-child(1) { transform: translateY(12px) rotate(45deg); }
.menu-icon.active span:nth-child(2) { opacity: 0; }
.menu-icon.active span:nth-child(3) { transform: translateY(-12px) rotate(-45deg); }

@media only screen and (max-width: 500px) { .menu-icon.active span:nth-child(2) { display: none; } }

/* Tooltip unten */

.tooltip {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2C2E31;
    padding: 12px 20px;
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.2);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    font-size: 16px;
    color: #C5B358;
    text-align: center;
}

/* Navigation links */

.slide-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: rgba(44,46,49,0.9);
    backdrop-filter: blur(6px);
    box-shadow: 5px 0 10px -5px rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    padding: 90px 20px 20px 20px; /* Abstand oben */
    z-index: 1100;
    transition: left 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.slide-nav.active {
    left: 0;
    opacity: 1;
}

.slide-nav .close-x {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #FFFFFF;
    transition: color 0.4s ease;
}

.slide-nav .close-x:hover { color: #C5B358; }

.slide-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 800;
    margin: 10px 0px;
    transition: color 0.4s ease;
}

.slide-nav a:hover { 
    color: #C5B358;
    border-bottom: none !important;
}

.socialLinks {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

.socialLinks a { border-bottom: none !important; }

.socialLinks img { 
	height: 20px;
	width: auto;
    margin-right: 15px;
}

.insta:hover img { content: url("../images/instagram-gold.png"); }
.tiktok:hover img { content: url("../images/tiktok-gold.png"); }

.socialLinksUnten img { 
	height: 25px;
	width: auto;
    margin-right: 15px;
}

.socialLinksUnten a { border-bottom: none !important; }

/* Ende Navigationen */

.hero {
    position: relative;
    overflow: hidden;
}

/* 
Animation Startbild 
*/

#bildcollage {
    width: 100%;
    height: 100vh; /* exakt Fensterhöhe */
    object-fit: cover; /* Bild bleibt in Grenzen des Containers */
    transform-origin: center center; /* Zoom aus der Mitte */
    animation: slowZoom 70s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1); /* Startgröße */
    }
    50% {
        transform: scale(1.3); /* Leicht vergrößern */
    }
    100% {
        transform: scale(1); /* Zurück zur Ausgangsgröße */
    }
}

/* 
Ende Animation Startbild 
*/

/* 
Textanimation Startbild 
*/

.headline-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
    overflow: hidden;
}

#headline {
    display: inline-block;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.5rem, 5vw, 4rem);
    white-space: nowrap;
    opacity: 0;
}

@keyframes slideInOut {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    10% {
        transform: translateX(0);
        opacity: 1;
    }
    
    70% {
        transform: translateX(0);
        opacity: 1;
    }
    
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 
Ende Textanimation Startbild 
*/

section { padding: 60px 0px 0px 0px; }

.sectionRahmen { 
    width: 96%;
	margin: 0 2%;
}

@media only screen and (max-width: 700px) { 
	.sectionRahmen {
		width: 92%;
		margin: 0 4%;
	}
}

.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;
}

.bildRahmen {
    overflow: hidden;
    display: block;
    line-height: 0; /* verhindert kleine automatische Lücken unter Bildern */
}

.bildRahmen img {
    width: 100%;
    height: auto;
    transition: transform 1.4s ease;
    transform-origin: center center;
}

.bildRahmen:hover img {
    transform: scale(1.5);
}

@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: #2C2E31;
    color: #C5B358 !important;
    font-size: 16px;
    font-weight: 800;
	padding: 14px 18px;
	cursor: pointer;
	transition: all 0.6s ease-in-out !important;
    display: inline-block;
    margin: 40px 10px 0px 0px;
}

@media only screen and (max-width: 1000px) { .button { margin: 0px 10px 20px 0px; } }

.button:hover, 
.button:focus { 
	background-color: #C5B358;
	color: #2C2E31 !important;
    border-bottom: none !important;
}

.goldButton {
    background-color: #C5B358;
	color: #2C2E31 !important;
}

.goldButton:hover, 
.goldButton:focus { 
	background-color: #2C2E31;
    color: #C5B358 !important;
}

.eigenschaftenRahmen {
    width: 45%;
    padding: 0 5% 5% 0;
    float: left;
    display: flex;
    align-items: flex-start; /* Richtet Bild und Text oben aus. */
    gap: 20px; /* Abstand zwischen Icon und Text */
}

.eigenschaftenIcon {
    height: 90px;
    width: auto;
}

.eigenschaftenRahmen p {
    margin: 0; /* Entfernt unerwünschte Abstände */
}

@media only screen and (max-width: 1500px) { 
    
    .eigenschaftenRahmen {
        width: 100%;
        padding: 0 0% 30px 0;
    }
    
    .eigenschaftenIcon { height: 60px; }
}

.aufzaehlung { margin: 0px 0px 40px 0px; }

/* 
Bildergalerie
*/

.bildDerGalerie { float: left; }

@media only screen and (min-width: 0px) { .bildDerGalerie { width: 48%; margin: 0 1%; } }

@media only screen and (min-width: 500px) { .bildDerGalerie { width: 31.3%; margin: 0 1%; } }

@media only screen and (min-width: 1000px) { .bildDerGalerie { width: 14.6%; margin: 0 1%; } }

.bildDerGalerie  img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.bildDerGalerie img:hover {  }

.bildDerGalerie figure a { border-bottom: none !important; }

.bildDerGalerie figure p { 
    font-size: 12px;
    text-align: center;
}

@media only screen and (max-width: 750px) { .bildDerGalerie figure p { font-size: 12px; } }

/* 
Ende Bildergalerie 
*/

/* 
YouTube-Video 
*/

.videoContainer {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Seitenverhältnis => 9/16 = 0.5625 */
    height: 0;
    overflow: hidden;
}

.videoContainer img {
    width: 100%;
    height: auto;
}

/* 
Ende YouTube-Video 
*/

/* 
Rezensionen 
*/

#rezensionen a { border-bottom: none !important; }

.rezensionenKasten {
    width: 21%;
    padding: 0% 2% 2% 2%;
    float: left;
}

.rezensionenName {
    font-weight: 900;
    font-size: 18px;
    text-align: center;
}

.rezensionenKasten img {
    width: 40%;
    padding: 0px 30% 20px 30%;
}

#rezensionen button {
    width: 50%;
    padding: 15px 0px;
    margin: 20px 25% 80px 25%;
    background-color: #C5B358;
	color: #2C2E31 !important;
    font-family: 'NunitoSans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
	cursor: pointer;
	transition: all 0.5s ease-in-out !important;
}

#rezensionen button:hover, 
#rezensionen button:focus { 
	background-color: #2C2E31;
	color: #C5B358 !important;
}

.responsiveBreaker { clear: none; }

@media only screen and (max-width : 1200px) { 
    .rezensionenKasten { width: 46%; }
    
    .rezensionenName { font-size: 18px; }

    .rezensionenKasten img {
        width: 30%;
        padding: 0px 35% 20px 35%;
    }
    
    .responsiveBreaker { clear: both; }
}

@media only screen and (max-width : 800px) { 
    
    .rezensionenKasten {
        width: 100%;
        float: none;
        padding: 0% 0% 20px 0%;
    }
    
    .rezensionenKasten img {
        width: 20%;
        padding: 0px 40% 20px 40%;
    }
    
    #rezensionen button { width: 100%; margin: 20px 0% 60px 0%; } 
}

/* 
Ende Rezensionen 
*/

#kontakt { 
    padding-bottom: 60px;
    background-color: #2C2E31;
}

#kontakt h1 { color: #f8f8f6; }

#kontakt h2 { 
    color: #f8f8f6;
    text-align: center;
}

@media only screen and (max-width: 500px) { #kontakt h2 { text-align: left; } }

#kontakt p { color: #f8f8f6; }

.kontaktVierSpalten {
    width: 21%;
    padding: 0% 2% 2% 2%;
    float: left;
}

.kontaktIcons {
    float: left;
    padding: 0px 20px 20px 0px;
}

#kontaktPortrait {
    width: 70%;
    height: auto;
    padding: 0 15% 20px 15%;
}

#kontaktPortrait {
  transition: 0.3s ease;
}

#kontaktPortrait:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8))
          drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
  transform: scale(1.05);
}

#kontaktPortraitText { text-align: center; }

@media only screen and (max-width : 1800px) { 
    .kontaktVierSpalten { width: 46%; }
    
    #kontaktPortrait {
        width: 60%;
        height: auto;
        padding: 0 0 20px 0;
    }
    
    #kontaktPortraitText { text-align: left; }
}

@media only screen and (max-width : 800px) { 
    .kontaktVierSpalten { 
        width: 100%;
        float: none;
        padding: 0% 0% 20px 0%;
    }
}

#kontaktLinks {
    float: left;
    width: 30%;
    margin-right: 5%;
}

#kontaktMitte {
    float: left;
    width: 30%;
}

#kontaktRechts {
    float: left;
    width: 30%;
    margin-left: 5%;
}

@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: 'NunitoSans', sans-serif;
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6;
    color: #f8f8f6;
}

@media only screen and (max-width: 500px) { label { font-size: 16px; } }

input {
    width: 98%;
    height: 30px;
    padding: 0px 1%;
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: #f8f8f6;
    font-family: 'NunitoSans', sans-serif;
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6;
    color: #2C2E31;
}

select {
    width: 98%;
    height: 30px;
    padding: 0px 1%;
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: #f8f8f6;
    font-family: 'NunitoSans', sans-serif;
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6;
    color: #2C2E31;
}

.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;
}

textarea {
    width: 98%;
    height: 200px;
    padding: 0px 1%;
    margin-top: 5px;
    margin-bottom: 20px;
    background-color: #f8f8f6;
    font-family: 'NunitoSans', sans-serif;
	font-size: 18px;
    font-weight: 500;
	line-height: 1.6;
    color: #2C2E31;
}

#senden {
    background-color: #C5B358;
    padding: 12px 28px;
    margin: 0px 0px 20px 0px;
    text-align: right;
    cursor: pointer;
    font-family: 'NunitoSans', sans-serif;
	font-size: 16px;
    font-weight: 800;
	line-height: 1.6;
    color: #2C2E31;
    transition: all 0.5s ease-in-out;
}

#senden:hover, 
#senden:active { 
    background-color: #c20016;
    color: #f8f8f6;
}

#fehlermeldung {
    color: #c20016; 
    text-align: left;
    width: 100%;
}

/*
Ende Formular
*/


footer { 
    padding: 0px 0px 20px 0px;
    background-color: #2C2E31;
}

footer p { 
	font-size: 12px;
    color: #f8f8f6;
	line-height: 20px;
	padding: 0px;
	text-align: center;
}

#impressum, #datenschutz { 
    width: 90%;
    margin: 0 auto;
}

#impressum .divLinks, #datenschutz .divLinks { text-align: left; }

#impressum h1 { padding: 40px 0px 100px 0px; }
#datenschutz h1 { padding: 40px 0px 40px 0px; }
#impressum h2, #datenschutz h2 { padding: 60px 0px 60px 0px; }

/* 404-Seite */

#logo404 {
	width: 50%;
	height: auto;
	margin: 0 25%;
    padding: 60px 0px 60px 0px;
}

#ueberschrift404 {
    text-align: center !important;
    font-size: 30px;
    color: #C5B358;
    padding: 0px 0px 60px 0px;
}

#button404 {
    width: 50%;
    margin: 60px 25% 60px 25%;
}

/* Ende 404-Seite */

.clear {
	clear: both;
	width: 0px;
	height: 0px;
}

/*
==================================================================
Ende Stylesheet
==================================================================
*/