/* open-sans-italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/open-sans-v35-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* spectral-500italic - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Spectral';
	font-style: italic;
	font-weight: 500;
	src: url('../fonts/spectral-v13-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


.material-symbols-outlined {
	display: flex;
	background-image: url('../fonts/menu.jpg');
	height: 40px;
	width: 40px;
	background-size: contain;
	background-repeat: no-repeat;
}  

:root {
	--color_logo: #495e35;
	--color_logo_dark: #254216;
	--color1: #495E35;
	--color2: #c9d3be;
	--color3: #25421634;
	--color4: #495e35;
}

* {
	margin: 0;
	padding: 0;
	color: #495E35;
}

textarea {
	padding: 5px;
	margin-top: 10px;
	resize: none;
	border-radius: 10px;
}

.main_h1 {
	border-top: 1px solid var(--color_logo);
	border-bottom: 1px solid var(--color_logo);
	margin-bottom: 10px;
	background-color: var(--color2);
	display: flex;
	justify-content: center;
}

.main_h2 {
	border-bottom: 1px solid var(--color_logo);
	margin-bottom: 5px;
}

a {
	text-decoration: none;
	color: orangered;
	font-weight: 600;
}

.link_1 {
	color: rgb(95, 51, 10);
}

.link_1:hover {
	color: rgb(172, 112, 56);
	text-decoration: underline;
}




a:hover {
	color: orange;
}

.buttonsvg {
    height: 15px;
    width: 15px;
}

body {
	font-family: 'Open Sans', sans-serif;
	background: white;
}

#platzhalter {
	display: none;
}


header {
	background-color: var(--color_logo);
}

header ul {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: no-wrap;
}

header li {
	padding: 2px 10vw;
	color: white;
}

#logo_navi {
	background: white;
	padding: 25px 12.5vw 25px 12.5vw;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 10;
}

#logo_navi img {
	height: 50px;
	object-fit: contain;
}

#logo_navi ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 50px;
}

#logo_navi li {
	padding: 0 5px;
}

#nav_buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-height: 50px;
}

#buttons img {
	height: 25px;
}

nav a {
	color: var(--color_logo);
	text-decoration: none;
	position: relative;
	padding: 3px;
}
nav a:hover {
	color: var(--color_logo_dark);
}

nav a::after {
	content:'';
	height: 2px;
	width: 0;
	background: var(--color_logo);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: 150ms ease-in-out;
}

nav a:hover::after {
	width: 100%;
}

main {
	background: white;
}

main p {
	text-align: justify;
}


#footer_content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	background: var(--color_logo);
	padding: 25px 12.5vw 25px 12.5vw;
}

#footer_content * {
	color: white;
	font-weight: lighter;
}

#footer_content_bild {
	background-image: url("../images/Handplant_Logo 2.png");
    background-repeat: no-repeat;
    background-size: contain;
	background-position: center;
	height: 100px;
	width: 100px;
}

#footer_content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	
}

.footer_links {
	display: flex;
	justify-content: center;
}


#toggle_button {
	display: none;
}

label[for="toggle_button"] {
	display: none;
}

label[for="toggle_button"] span {
	font-size: 40px;
}

#logo_navi > ul {
	display: none;
}

#social_media {
	position: fixed;
	top: calc(50% - 40px);
	right: 10px;
	display: none;
	flex-direction: column;
}

#social_media img {
	width: 30px;
	padding-bottom: 5px;
}

.button {
    border: 1px solid var(--color_logo);
    border-radius: 10px;
    background-color: white;
    color: var(--color_logo);
    padding: 1px 5px;
    font-weight: 600;
}

.button:hover {
    transition: 500ms;
    background-color: var(--color_logo);
    color: white;
}

.button2 {
	display: flex;
	width: fit-content;
    border: 1px solid var(--color_logo);
    border-radius: 10px;
    background-color: var(--color_logo);
    color: white;
    padding: 1px 5px;
    font-weight: 600;
}

.button2:hover {
    transition: 500ms;
    background-color: var(--color2);
    color: var(--color_logo);
	cursor: pointer;
}

.button3 {
	display: flex;
	width: fit-content;
	border: 1px solid var(--color2);
    border-radius: 10px;
    background-color: var(--color2);
    color: var(--color_logo);
    padding: 1px 20px;
    font-weight: 600;
	font-size: medium;
	height: 26px;
	font-family: 'Open Sans', sans-serif;
}

.button3:hover {
	border: 1px solid var(--color2);
    transition: 500ms;
    background-color: var(--color_logo);
    color: white;
	cursor: pointer;
}

.button4 {
	display: flex;
	width: fit-content;
	border: 1px solid var(--color2);
    border-radius: 10px;
    background-color: var(--color2);
    color: orangered;
    padding: 1px 20px;
    font-weight: 600;
	font-size: medium;
	height: 26px;
	font-family: 'Open Sans', sans-serif;
}

.button4:hover {
	border: 1px solid var(--color2);
    transition: 500ms;
    background-color: var(--color_logo);
    color: white;
	cursor: pointer;
}

.ausgabe_warnung {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding:5px;
	border: 1px solid red;
	background-color: orangered;
	gap:10px;
}

.ausgabe_info {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding:5px;
	border: 1px solid var(--color_logo);
	background-color: var(--color_logo);
	margin-bottom: 10px;
	gap:10px;
	font-weight: lighter;
}

.ausgabe_info h4, .ausgabe_info h3, .ausgabe_info h2{
	color: white;
}


.eingabefeld {
    padding: 0 10px;
    border-radius: 25px;
    border: 1px solid white;
    height: 20px;
}

.slider {
	height: 10px;
	background-color: var(--color_logo);
}
.zitat {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

.zitat_text {
	font-size: 1.5em;
	padding-bottom: 10px;
}

.arrow_down {
	background-image: url("../images/sonstiges/arrow_down.svg");
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: cover;
}

#under_construction {
	display: flex;
	justify-content: center;
	background-color: var(--color2);
	padding: 20px;
}






/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	-webkit-animation-name: fadeIn; /* Fade in the background */
	-webkit-animation-duration: 0.8s;
	animation-name: fadeIn;
	animation-duration: 0.8s
  }
  
  /* Modal Content */
  .modal-content {
	display: flex;
	gap: 10px;
	flex-direction: column;
	align-items: center;
	position: fixed;
	bottom: 0;
	background-color: var(--color2);
	width: 100%;
	-webkit-animation-name: slideIn;
	-webkit-animation-duration: 0.8s;
	animation-name: slideIn;
	animation-duration: 0.8s;
	padding-bottom: 10px;

  }

  .inner_modal {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap:2px;
  }

  
  /* The Close Button */
  .close {
	font-size: 28px;
	font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
  }
  

  
  /* Add Animation */
  @-webkit-keyframes slideIn {
	from {bottom: -300px; opacity: 0} 
	to {bottom: 0; opacity: 1}
  }
  
  @keyframes slideIn {
	from {bottom: -300px; opacity: 0}
	to {bottom: 0; opacity: 1}
  }
  
  @-webkit-keyframes fadeIn {
	from {opacity: 0} 
	to {opacity: 1}
  }
  
  @keyframes fadeIn {
	from {opacity: 0} 
	to {opacity: 1}
  }


@media(max-width: 1000px) {
	#logo_navi {
		background: white;
		padding: 5px 5.5vw 5px 5.5vw;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	#social_media {
		position: fixed;
		top: calc(50% - 40px);
		right: 5px;
		display: flex;
		flex-direction: column;
	}
	
	#social_media img {
		display: none;
	}

	#footer_content {
		padding: 10px 2.5vw 10px 2.5vw;
	}



}


@media(max-width: 800px) {

	#platzhalter {
		display: flex;
	}

	header {
		display: none;
	}
	#logo_navi nav {
		position: fixed;
		top: 20px;
		left: 20px;
		background: transparent;
		color: var(--color_logo);
		padding: 0px;
		border-radius: 0px;
	}

	nav a {
		color:white;
		font-size: 175%;
	}

	nav a:hover {
		color: white;
	}

	#logo_navi ul {
		display: none;
		flex-direction: column;
		align-items: flex-start;
	}
	#toggle_button:checked ~ ul {
		display: flex;
		background: var(--color_logo);
		color: white;
	}


	label[for="toggle_button"] {
		display: block;
		cursor: pointer;
	}

	#logo_navi {
		flex-direction: row;
		justify-content: space-between;
		padding: 15px 0 15px 0;
	}
	

	#logo_navi img {
		height: 30px;
		padding-left: 75px;
		flex-grow: 1;
	}


	#buttons {
		display: flex;
		flex-direction: row;
		align-items: center;
		min-height: 50px;
		padding-right: 10px;
		color: var(--color_logo);
	}
	
	#buttons img {
		height: 25px;
		padding-left: 10px;
		
	}

	#social_media {
		display: none;
	}
	

}

