/* Allgemeine Stile */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */

header {
    background-color: #e0ded1;
    color: black;
    padding: 1px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 0px;
}

.logo {
    width: 75px;
    height: auto;
    margin-right: 10px;
}

.header-text h1 {
    font-size: 36px;
    margin: 0;
}

.header-text p {
    font-size: 16px;
    margin: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
	margin-top: 5px;
	margin-bottom: 3px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    position: relative;
    display: inline-block;
    line-height: middle;    
    transition: all 0.3s ease-in-out;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background-color: #3a5aff;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
    vertical-align: middle;
}

nav ul li a:hover {
    color: #3a5aff;
    font-size: 14px;
    vertical-align: middle;
}

nav ul li a:hover::before,
nav ul li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}


/* Hauptseite */

main {
    padding: 20px;
    flex: 1;
}


.full-width-heading {
    width: 100%; 
    text-align: center; 
    margin-bottom: 20px;
	font-size: 26px;
}

.content-container {
    display: flex;
    align-items: center;
	max-width: 1200px;  /* Begrenzung für gesamten Container */
    margin: 0 auto;
    /*justify-content: space-between;*/
    gap: 20px;
}

.text-content {
    flex: 1;
	max-width: 900px;
}

.image-container {
    flex: 0.5;
}

.info-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.bullet-list {
    list-style-type: disc; 
    padding-left: 30px; 
}

.bullet-list li {
    margin-bottom: 8px; 
    text-indent: 0px; 
    padding-left: 0px; 
}


.slider-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 300px; 
  margin: 0 auto;
  overflow: hidden;
}

.slider-container::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 Seitenverhältnis */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}


.caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  font-style: italic;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.25rem;
  border-radius: 5px;
}


.map-container {
  max-width: 600px;
  margin: 20px auto;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 1px solid black;
  border-radius: 8px;
}



/* Footer */

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 16px;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer a {
    text-decoration: none;
    font-size: 12px;
	color: white;
    margin: 0 10px; /* Abstand zwischen den Links */
}

.footer a:hover {
    text-decoration: underline;
    color: #007bff; /* Blaue Farbe beim Hover */
}





/* ----------------------------------------------------- */
/* Ansicht mobile Geräte */

@media (max-width: 768px) {
    
/* Header mobile */
		
	.header-content {
        flex-direction: row;
        align-items: center;
		margin-bottom: 0px;
    }

    .logo {
        width: 75px;
        height: auto;
        margin-right: 5px;
        margin-left: 1px;
    }

    .header-text h1 {
        font-size: 22px;
    }

    .header-text p {
        font-size: 10px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        gap: 18px;
        padding: 0;
        list-style: none;
		margin-top: 0px;
		margin-bottom: 0px;
    }

    nav ul li {
        margin: 5px 0;
    }
	
/* Main page mobile */
	    
	.content-container {
		flex-direction: column;
    	align-items: center;
	    text-align: left !important;
		min-height: 300px;
    }

    .image-container {
        flex: unset;
        width: 80%;
    }

    .info-image {
        max-width: 250px;
    }

	.text-content {
    text-align: left;
	}
	
	.full-width-heading {
        font-size: 22px;
    }
	
  .slider-container {
    max-width: 100%;
    height: 200px;
  }

.map-container {
  max-width: 100%;
  }
.map-container iframe {
  width: 100%;
  height: 200px;
  border: 1px solid black;
  border-radius: 8px;
}
	
	
/* Footer */
	
	footer {
        margin-top: auto;
        padding: 0 1rem;
    }

.footer {
  overflow-x:hidden;
}



}