.elementor-155 .elementor-element.elementor-element-2daa407{--display:flex;}.elementor-155 .elementor-element.elementor-element-f59ba45{--display:flex;}.elementor-155 .elementor-element.elementor-element-f59ba45:not(.elementor-motion-effects-element-type-background), .elementor-155 .elementor-element.elementor-element-f59ba45 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-155 .elementor-element.elementor-element-d92e34f{--display:flex;}.elementor-155 .elementor-element.elementor-element-2ec9bfc{--display:flex;}.elementor-155 .elementor-element.elementor-element-2ec9bfc:not(.elementor-motion-effects-element-type-background), .elementor-155 .elementor-element.elementor-element-2ec9bfc > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-155 .elementor-element.elementor-element-4a0caf9{--display:flex;}.elementor-155 .elementor-element.elementor-element-4a0caf9:not(.elementor-motion-effects-element-type-background), .elementor-155 .elementor-element.elementor-element-4a0caf9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#181818;}/* Start custom CSS for html, class: .elementor-element-34dc14b *//* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 20px;

  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  z-index: 1000;
}

/* ================= LOGO ================= */
.logo img {
  height: 50px;
}

/* ================= MENU DESKTOP ================= */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* ================= BUTTON ================= */
.nav-btn {
  background: #9d2d01;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 3px;
  transition: 0.3s;
}

/* Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= LEGAL (DESKTOP AUS) ================= */
.menu-divider,
.menu-legal {
  display: none;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 10px 0;
}

.menu-legal {
  flex-direction: column;
  gap: 10px;
}

.menu-legal a {
  font-size: 14px;
  color: #666;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Button aus */
  .nav-btn {
    display: none;
  }

  /* Hamburger an */
  .hamburger {
    display: flex;
  }

  /* Menü Panel */
  .nav-menu {
    position: absolute;
    top: 80px;
    right: -100%;
    width: 260px;

    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    background: white;
    padding: 20px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transition: right 0.3s ease;

    /* 🔥 WICHTIGER FIX */
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Jetzt sichtbar */
  .menu-divider {
    display: block;
  }

  .menu-legal {
    display: flex;
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-60fc0c7 *//* ================= IMPRESSUM ================= */
.datenschutz {
  padding: 80px 0;
  font-family: Arial, sans-serif;
}

/* 🔥 GLEICHE LINIE WIE TOPBAR & NAVBAR */
.datenschutz-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 200px);
}

/* Titel */
.datenschutz h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #9d2d01;
}

/* Absätze */
.datenschutz p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Links */
.datenschutz a {
  color: #9d2d01;
  text-decoration: none;
  font-weight: 500;
}

.datenschutz a:hover {
  text-decoration: underline;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .datenschutz {
    padding: 40px 0;
  }

  .datenschutz h1 {
    font-size: 1.8rem;
  }

  .datenschutz p {
    font-size: 1.1rem;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3456305 *//* ================= FOOTER ================= */
.footer {
  background: #181818;
  color: white;
  padding: 80px 20px 40px;
}

/* ================= CONTAINER ================= */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  max-width: 1200px;
  margin: auto;
}

/* ================= BOX ================= */
.footer-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TITEL */
.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  color: white;
}

/* 🔥 Linie unter Titel */
.footer-box h3::after,
.footer-box h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  
  background: #9d2d01;
  margin-top: 10px;
  border-radius: 2px;
}

/* TEXT */
.footer-box p {
  font-size: 1.4rem;
  color: #ffff;
  line-height: 1.6;
}

/* LINKS */
.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: white;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.05);
  color: #9d2d01;

  font-size: 18px;
  transition: 0.3s;
}

/* HOVER */
.social-icons a:hover {
  background: #9d2d01;
  color: white;
  transform: scale(1.1);
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-box h3::after,
  .footer-box h4::after {
    margin: 8px auto 0;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */