


body {
    font-family: system-ui, sans-serif;
    font-weight: 400;
    color: #333;

    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

body.legal-page #cookie-overlay {
  display: none !important;
}

.back {
    font-weight: bold;
    color: #f26122;
}

/* ===================== CONTENT STYLING ===================== */
#content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background-color: white;
    width: 100%;
	margin-top: 120px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #136ca2 0%, #0f5a88 100%);
    color: white;
    padding: 50px 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    display: none;
}

.no-scroll {
    overflow: hidden;
}



/* Coolies */

.cookie-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      z-index: 99999;
      display: none;
      align-items: center;
      justify-content: center;
    }
    .cookie-box {
      background: #fff;
      padding: 25px;
      border-radius: 8px;
      max-width: 500px;
      text-align: center;
      font-size: 16px;
	  margin: auto;
    }
    .cookie-box button {
      margin-top: 15px;
      padding: 10px 20px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .cookie-box a {
      color: #4CAF50;
      text-decoration: underline;
    }

.lazy-embed {
  position: relative;
  background: #ddd;
  height: 300px;
}
.embed-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container.lazy-embed {
  height: 400px;
  background: #e0e0e0;
}
.video-container.lazy-embed {
    height: 400px;
    background: #000;
}





















/* Footer Grundstil */
.site-footer {
    background-color: #136ca2;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 100px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding-bottom: 20px;
}

.footer-row.full-width {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

/* Footer Menü - kleinere Schrift und Nebeneinander */
.footer-menu-sections {
    display: flex;
    flex-wrap: wrap;  /* Damit die Elemente bei Bedarf in die nächste Zeile gehen */
    justify-content: center; /* Links zentrieren */
    align-items: center; /* Zentriert alle Menüeinträge */
    gap: 20px; /* Weniger Abstand zwischen den Menüsektionen */
    padding: 20px 0;
}

.footer-menu-section {
    flex: 1;
    min-width: 150px;
    max-width: 250px;
    text-align: center; /* Links werden zentriert */
    padding: 5px 10px; /* Weniger Padding */
}

.footer-menu-header {
    font-size: 1rem; /* Kleinere Schrift */
    font-weight: bold;
    color: #e3591e;
    margin-bottom: 5px; /* Weniger Abstand zur Liste */
    text-transform: uppercase;
}

.footer-menu-section ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.footer-menu-section li {
    margin: 3px 0; /* Weniger Abstand zwischen den Listeneinträgen */
}

/* Styling für Links im Footer */
.site-footer a {
    text-decoration: none;
    color: #e3591e; /* Orange Farbe für alle Links */
    font-size: 0.9rem; /* Kleinere Schrift für die Links */
    display: block; /* Damit die Links block-level sind und untereinander erscheinen */
    margin-bottom: 10px; /* Abstand zwischen den Links */
}

/* Hover-Effekt für die Links */
.site-footer a:hover {
    color: #fff; /* Weiß bei Hover */
}

/* Kein Unterstrich für die Links */
.footer-menu-section a:focus, .footer-menu-section a:active {
    outline: none;
}

/* Styling für die Footer-Menüpunkte */
.footer-menu-link {
    text-decoration: none;
    color: #e3591e; /* Orange Farbe für die Links */
    font-size: 1rem; /* Schriftgröße für die Links */
    display: block; /* Damit die Links block-level sind und untereinander erscheinen */
    margin-bottom: 10px; /* Abstand zwischen den Links */
}

/* Hover-Effekt für die Links */
.footer-menu-link:hover {
    color: #fff; /* Weiß bei Hover */
}

/* Styling für die Footer-Partnermarken */
.footer-partners {
    text-align: center;
    padding: 20px 0;
    width: 100%;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 100%;
    padding: 10px 0;
}

.partner-logos img {
    height: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.partner-logos img:hover {
    transform: scale(1.1);
}

/* Styling für Social Media Icons */
.footer-social {
    flex: 1;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    color: #ffcc00;
}

/* Styling für Payment Icons */
.footer-payment {
    flex: 1;
    text-align: center;
}

.payment-icons img {
    width: 50px;
    margin: 0 10px;
}

/* Styling für die Footer-Newsletter */
.footer-newsletter {
    flex: 1;
    text-align: center;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-newsletter input {
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
    border: none;
    border-radius: 5px;
}

.footer-newsletter button {
    padding: 10px 15px;
    background-color: #df571e;
    border: none;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background-color: #ff9900;
}

/* Styling für Kontaktinformationen */
.footer-contact {
    flex: 1;
    text-align: center;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact i {
    margin-right: 10px;
}

/* Styling für die Footer-Links (Rechtliches) */
.footer-legal {
    flex: 1;
    text-align: center;
}

.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal li {
    margin: 5px 0;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Footer-Info Styling */
.footer-info {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 20px;
}

/* Responsive Design für kleinere Geräte */
@media (max-width: 768px) {
    .footer-menu-sections {
        flex-direction: column; /* Menüeinträge auf kleineren Geräten untereinander */
        align-items: center;    /* Zentriert die Menüeinträge auf kleinen Bildschirmen */
        gap: 10px;  /* Weniger Abstand zwischen den Menüeinträgen */
    }

    .footer-menu-section {
        width: 80%; /* Menüeinträge nehmen weniger Platz auf kleinen Geräten ein */
        margin: 10px 0; /* Weniger Abstand zwischen den Menüeinträgen */
    }
}







