/* RESET & GRUNDSTIL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main-content {
	max-width: 1280px;
  margin: 0 auto;
  padding: 0;

}
body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* HEADER- UND FOOTERBILDER */
.hero-header {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-header img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Optional für Cropping */
}


/* INHALTSBEREICH */
.content-section {
  padding: 2rem 5rem;
}

/* HAMBURGER-BUTTON (immer sichtbar, oben links) */
.hamburger {
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #004080;
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 1001;
  cursor: pointer;
}

/* SLIDE-IN-MENÜ FÜR ALLE SCREEN-GRÖSSEN */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background: #004080;
  color: #004080;
  padding: 2rem 1rem;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu ul {
  list-style: none;
  padding-top: 3rem;
  margin: 0;
}

.mobile-menu li {
  margin: 1rem 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
/* Gallery */

/* Container anpassen, damit Pagination unterhalb sichtbar ist */
.swiper {
  width: 100%;
  max-width: 100%;
  margin: 2rem auto;
  padding-bottom: 3rem; /* ← macht Platz für Pagination */
  position: relative;   /* ← wichtig für relative Positionierung */
}

/* Pagination (fraction) unterhalb rechts */
.swiper-pagination {
 
position: relative !important;
  right: 1rem;                   /* rechtsbündig */
  width: auto;
  text-align: right;
  color: #004080;
  font-size: 0.95rem;
  font-weight: bold;
  z-index: 10;
  text-align: end !important;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
}

.swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  max-height: 300px;
  min-height: 299px;
}

.content-me {
  background-color: #FFF;
  padding: 2rem 1rem;
  font-family: sans-serif;
  color: #333;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 70px;
}

.content-me h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.content-me .subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #666;
}

.content-me p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-me h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #444;
}

.benefits {
  list-style: none;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.benefits li::before {
  content: "✔️";
  margin-right: 0.5rem;
  color: green;
}

.note {
  font-style: italic;
  color: #777;
  font-size: 0.95rem;
}

ul.contact {
	list-style: none;
}

.contact span {
	margin-left: 1em;
}

.contact span a {
	color: #004080;
	text-decoration: none;
}
.imprint {
	display: flex;
    flex-direction: row;
	list-style: none;
}
.imprint li {
padding: 0 15px 0 0;
}
.imprint a {
	color: #004080;
	font-weight: bold;
}
@media (max-width: 992px) {
	.content-wrapper {
	  max-width: 900px;
	  margin: 0 5px;
	}

	.content-section {
	  padding: 2rem;
	}
	
}