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

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}

header {
	padding: 48px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
	background-color: #FEFAF4;
}

body {
	margin-left: auto;
	margin-right: auto;
	background: #FEFAF4;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 100px;
	margin-bottom: 20px
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	/*color: rgba(47,50,42,1.00); Alte Textfarbe*/
	font-size: 16px;
	color:#2D2D35;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

.style-link {
	text-decoration: none;
	/*color: rgba(47,50,42,1.00); Alte Textfarbe*/
	font-size: 18px;
	color:#FEFAF4;
	text-align: center;
	display: block;
	/*text-transform: uppercase;*/
	padding: 0px 8px 16px 8px;
	margin: 15px;
}

.email-link {
    border: 2px #FEFAF4 solid;
    padding: 8px 30px;
    border-radius: 30px;
    color: #FEFAF4;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	margin: 30px;
}

.email-link:hover {
    background-color: #b9a88e;
    color: #2D2D35;
    border-color: #2D2D35;
	margin-bottom: 30px;
}

.hero {
	background-image: url(images/hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 700px;
	padding: 50px 20px 50px 20px;
	/*color: #FFFFFF;*/ 
	color: #FEFAF4;
	text-align: center;
	margin-bottom: 20px
}

.image-container img {
            display: block;
            margin: 20px 0; /* Abstand zwischen den Bildern */
        }
h1 {
	font-size: clamp(1.2rem, 5vw, 2rem); /* Skaliert zwischen 1.2rem und 2rem */
	/*font-size: 32px;*/
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 60px;
}

h2 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}

h3 {
	font-size: 36px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 36px;
	font-weight: 200;
	margin-bottom: 35px;
}

h5 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 23px;
}

p {
	/*Steuert den Text in den Infoboxen*/
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 35px;
}

.button {
	border: 2px #FEFAF4 solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FEFAF4;
	text-decoration: none;
	margin-bottom: 30px
}

.button:hover {
    background-color: #b9a88e; /* Neue Hintergrundfarbe */
    color: #2D2D35; /* Neue Textfarbe */
    border-color: #2D2D35; /* Randfarbe ändern */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Weiche Übergänge */
}
.info-box-tan {
	position: relative; /* Erlaubt die absolute Positionierung des Icons */
	background-color: #b9a88e;
	/*color: #FFFFFF;*/
	color: #FEF7EF;
	padding: 30px 20px 60px;
	text-align: center;
	margin-bottom: 20px
}

.info-box-dark {
	position: relative; /* Erlaubt die absolute Positionierung des Icons */
	background-color: #2D2D35;
	/*color: #FFFFFF;*/
	color: #FEF7EF; 
	padding: 30px 20px 60px;
	text-align: center;
	margin-bottom: 20px
}

.info-box-tan,
.info-box-dark {
    flex: 1; /* Gleiche Höhe */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
	
.text-box-tan {
	background-color: #b9a88e;
	/*color: #FFFFFF;*/
	color: #FEF7EF;
	padding: 20px 20px 20px 30px;
	text-align: center;
	margin-bottom: 10px;
}

.text-box-dark {
	background-color: #2D2D35;
	/*color: #FFFFFF;*/
	color: #FEF7EF;
	padding: 20px 20px 20px 30px;
	text-align: center;
	margin-bottom: 10px;
}

.footer-text {
	font-size: 13px;
	margin-bottom: 20px;
}

.col {
	width: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap; /* Stellt sicher, dass es sich anpasst */
}

.row:before, .row:after {
	content: "";
	display: table;
	display: flex;
    flex-wrap: wrap;
}

.row:after {
	clear: both;
}

.icon {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 70px;  /* Icon-Breite */
    		height: 70px; /* Icon-Höhe */
        }

markierung:hover {
  background-color: #b9a88e;
  color: white;
  cursor: pointer;
}

feste-markierung {
    background-color: #b9a88e; /* Hintergrundfarbe */
    color: white; /* Textfarbe */   
}

markierung-dunkel:hover {
  background-color: #2D2D35;
  color: white;
  cursor: pointer;
}

/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 90px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
    width: 50%; /* Behält gleiche Breite */
    display: flex;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth {
		width: 25%;
		display: flex;
	}
}
	