/* ==========================================================================
   Settings, Farben
   ========================================================================== */

:root {
/* MAGENTAROT */
--color-magenta: #dc2972; /* rgb(220, 41, 114) */
--color-magenta-dark: rgb(190, 30, 100);
--color-magenta-hsl: hsl(335, 73%, 51%);
--color-magenta-pale: #f2c5d6; /* rgb(242, 197, 214) */
--color-magenta-pale-hsl: hsl(335, 65%, 86%);

/* HIMMELBLAU */
--color-sky: #00b1e6; /* rgb(0, 177, 230) */
--color-sky-hsl: hsl(195, 100%, 45%);
--color-sky-pale: #b3e5f5; /* rgb(179, 229, 245) */
--color-sky-pale-hsl: hsl(195, 75%, 83%);

/* RAPSGELB */
--color-yellow: #fcc305; /* rgb(252, 195, 5) */
--color-yellow-hsl: hsl(45, 97%, 50%);
--color-yellow-pale: #fef2b3; /* rgb(254, 242, 179) */
--color-yellow-pale-hsl: hsl(45, 95%, 85%);

/* LIMETTENGRÜN */
--color-lime: #b1c800; /* rgb(177, 200, 0) */
--color-lime-hsl: hsl(67, 100%, 39%);
--color-lime-pale: #e8f0b3; /* rgb(232, 240, 179) */
--color-lime-pale-hsl: hsl(67, 65%, 82%);

  /* GRAU */
  --color-grey: #444;
  --color-light-grey: #888;
}

/* Text Colors */
.text-magenta { color: var(--color-magenta); }
.text-magenta-pale { color: var(--color-magenta-pale); }
.text-sky { color: var(--color-sky); }
.text-sky-pale { color: var(--color-sky-pale); }
.text-yellow { color: var(--color-yellow); }
.text-yellow-pale { color: var(--color-yellow-pale); }
.text-lime { color: var(--color-lime); }
.text-lime-pale { color: var(--color-lime-pale); }

/* Background Colors */
.bg-magenta { background-color: var(--color-magenta); }
.bg-magenta-pale { background-color: var(--color-magenta-pale); }
.bg-sky { background-color: var(--color-sky); }
.bg-sky-pale { background-color: var(--color-sky-pale); }
.bg-yellow { background-color: var(--color-yellow); }
.bg-yellow-pale { background-color: var(--color-yellow-pale); }
.bg-lime { background-color: var(--color-lime); }
.bg-lime-pale { background-color: var(--color-lime-pale); }
.bg-grey { background-color: var(--color-grey); }
.bg-grey-pale { background-color: var(--color-light-grey); }

/* Hover Effects */
.bg-magenta-hover:hover { background-color: var(--color-magenta); }
.bg-magenta-pale-hover:hover { background-color: var(--color-magenta-pale); }
.bg-sky-hover:hover { background-color: var(--color-sky); }
.bg-sky-pale-hover:hover { background-color: var(--color-sky-pale); }
.bg-yellow-hover:hover { background-color: var(--color-yellow); }
.bg-yellow-pale-hover:hover { background-color: var(--color-yellow-pale); }
.bg-lime-hover:hover { background-color: var(--color-lime); }
.bg-lime-pale-hover:hover { background-color: var(--color-lime-pale); }

.text-magenta-hover:hover { color: var(--color-magenta); }
.text-magenta-pale-hover:hover { color: var(--color-magenta-pale); }
.text-sky-hover:hover { color: var(--color-sky); }
.text-sky-pale-hover:hover { color: var(--color-sky-pale); }
.text-yellow-hover:hover { color: var(--color-yellow); }
.text-yellow-pale-hover:hover { color: var(--color-yellow-pale); }
.text-lime-hover:hover { color: var(--color-lime); }
.text-lime-pale-hover:hover { color: var(--color-lime-pale); }

/* Border Colors */
.border-magenta { border-color: var(--color-magenta); }
.border-magenta-pale { border-color: var(--color-magenta-pale); }
.border-sky { border-color: var(--color-sky); }
.border-sky-pale { border-color: var(--color-sky-pale); }
.border-yellow { border-color: var(--color-yellow); }
.border-yellow-pale { border-color: var(--color-yellow-pale); }
.border-lime { border-color: var(--color-lime); }
.border-lime-pale { border-color: var(--color-lime-pale); }

/* Smooth Scroll für bessere UX */
html {
    scroll-behavior: smooth;
}

/* ==========================================================================
   Utilities, Hilfsklassen
   ========================================================================== */

.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.text-shadow-white {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.no-transform {transform: none !important;}

/* ==========================================================================
   Layout
   ========================================================================== */

@media (min-width: 2000px) {
  .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1600px;
  }
}

/* ==========================================================================
   Typography, Schriften
   ========================================================================== */

/* ---- Font Awesome 6 ----- */

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/fa-solid-900.woff2') format('woff2'),
       url('../fonts/fa-solid-900.woff') format('woff');
}
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-regular-400.woff2') format('woff2'),
       url('../fonts/fa-regular-400.woff') format('woff');
}
@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-brands-400.woff2') format('woff2'),
       url('../fonts/fa-brands-400.woff') format('woff');
}

/* ---- Work Sans ----- */

/* work-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/work-sans-v23-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* work-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/work-sans-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* work-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/work-sans-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* work-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/work-sans-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* work-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/work-sans-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {font-family: 'Work Sans', sans-serif;}

        
h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-grey);
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-grey);
}

h3,h4,h5,h6 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-light-grey);
}

@media (max-width: 1200px) {
  h1 {font-size: 3rem;}
  h2 {font-size: 2rem;}
  h3 {font-size: 1.5rem;}
}

a {
  color: var(--color-magenta);
  text-decoration: none;
}

a:hover {
  color: var(--color-magenta-dark);
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding: 0.2rem 0;
    position: relative;
    padding-left: 2rem;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--color-magenta);
    font-size: 1.2rem;
}

strong {font-weight: 600 !important;}


/* ==========================================================================
   Header / Video
   ========================================================================== */

.header-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 567px) {
  .header-section {
    height: 60vh;
  }
}

.header-section-small {
  height: 44vh;
  /*overflow: visible;*/
}

@media only screen and (orientation: landscape) and (max-height: 1000px) {
  .header-section-small {
    height: 60vh;
  }
}
        
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;        
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.caption-container {
  position: absolute;
  bottom: 150px;
  left: 0;
  right: 0;
  z-index: 1;
}

.header-section-small .caption-container {bottom: 50px;}
        
.caption {
  color: #fff;
}
        
.caption h1 {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  color: #fff;
}
        
.caption p {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  color: #fff;
}
        
@media (max-width: 1200px) {
  .caption-container {
    bottom: 30px;
  }
            
  .caption h1 {
    font-size: 2.5rem;
  }
              
  .caption p {
    font-size: 1.2rem;
  }
}

.caption .icon {
  margin-top: -35px;
  height: 60px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar-custom {
  background-color: #fff;
  border-radius: 35px 35px 0 0;
  margin: 80px 0;
  padding: 10px 25px 16px 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

@media (max-width: 567px) {
  .navbar-custom {
    margin: 16px 0;
  }
}
        
.navbar-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
      to right,
      rgb(220, 41, 114) 0% 25%,
      rgb(252, 195, 5) 25% 50%,
      rgb(0, 177, 230) 50% 75%,
      rgb(177, 200, 0) 75% 100%
  );
}

@media (max-width: 567px) {
  .navbar-custom::after {
    height: 6px;
  }
}

.navbar-brand {padding:20px;}
        
.navbar-brand img {
  height: 50px;
  margin-top: -10px;
}

@media (max-width: 1200px) {
  .navbar-brand {padding:0;}    
  .navbar-brand img {height: 50px;}
}
       
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 600;
  margin-right: 65px;
  transition: color 0.3s ease;
}

@media (max-width: 1400px) {
  .navbar-nav .nav-link {
    margin-right: 45px;
  }
}
        
.navbar-nav .nav-link:hover {
  color: rgb(220, 41, 114) !important;
}

.navbar-icons {
  border-left: 1px solid #ddd;
  padding-left: 20px;
  margin-left: 15px;
}

.navbar-icons .nav-link {
  color: #666 !important;
  margin-left: 30px;
  font-size: 22px;
}

.navbar-icons .nav-link:hover {
  color: var(--color-magenta) !important;
}  

.navbar-toggler {
  border-radius: 50% !important;
  background-color: var(--color-magenta) !important;
  color: #fff !important;
  border: none !important;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.25) !important;
}

.navbar-toggler i {
  color: #fff !important;
  font-size: 1.2rem;
}

/*.navbar-toggler .fa-xmark {
  display: none;
}

.navbar-toggler:not(.collapsed) .fa-bars {
  display: none;
}

.navbar-toggler:not(.collapsed) .fa-xmark {
  display: inline-block;
} */         

.accessibility-icon {
  color: var(--color-grey) !important;
  font-size: 1.8rem;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Navbar Sticky */

.navbar-custom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transform: translateY(-100%);
  opacity: 0;
  animation: slideDown 0.4s ease forwards;
}

.navbar-custom.sticky::after {
  height: 4px;
}

.navbar-placeholder {
  height: 0;
  transition: height 0.3s ease;
}

.navbar-placeholder.active {
  height: 80px;
}

/* Sichtbar mit Slide-Down */
#mainNavbar.sticky.show {
  animation: slideDown 0.4s ease forwards;
}

/* Unsichtbar mit Slide-Up */
#mainNavbar.sticky.hide {
  animation: slideUp 0.4s ease forwards;
}

/* Keyframes für Einblenden */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Keyframes für Ausblenden */
@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

/* ==========================================================================
 Mega Menu
 ========================================================================== */
/* Megamenu Wrapper - muss static sein für richtige Positionierung */
.megamenu-wrapper {
  position: static;
}

/* Megamenu mit Container-Breite */
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 35px 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  margin-top: 20px;
  /* Animation für das Öffnen - OHNE display: none */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-out;
  pointer-events: none; /* Verhindert Klicks wenn unsichtbar */
}

/* Das innere Container-Element bestimmt die Breite */
.megamenu .container {
  width: 100%;
  margin: 0 auto;
}

/* Megamenu Öffnen - OHNE display: block */
.megamenu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto; /* Aktiviert Klicks wenn sichtbar */
}

.megamenu-content {
  /*padding: 2rem 0;*/
}

.megamenu-section {
  margin-bottom: 2rem;
}

.megamenu-section li.active a {color:var(--color-magenta);}

/* Neue Styles für interaktive Oberpunkte als Boxen */
.megamenu-nav {
  margin-bottom: 2rem;
  padding: 0;
  display: flex;
  gap: 0;
}

.megamenu-nav-item {
  flex: 1;
  margin: 0;
}

.megamenu-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-grey);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.5rem 1rem;
  border-right: none;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  height: 80px;
}

.megamenu-nav-link:hover {
  z-index: 2;
}

.megamenu-nav-link.active {
  background: var(--color-magenta-pale);
  color: var(--color-magenta);
  z-index: 2;
}

.megamenu-nav-link-magenta-pale.active,
.megamenu-nav-link-magenta-pale:hover {background: var(--color-magenta-pale); color: var(--color-magenta);}

.megamenu-nav-link-yellow-pale.active,
.megamenu-nav-link-yellow-pale:hover {background: var(--color-yellow-pale); color: var(--color-yellow);}

.megamenu-nav-link-sky-pale.active,
.megamenu-nav-link-sky-pale:hover {background: var(--color-sky-pale); color: var(--color-sky);}

.megamenu-nav-link-lime-pale.active,
.megamenu-nav-link-lime-pale:hover {background: var(--color-lime-pale); color: var(--color-lime);}

.megamenu-nav-link-grey-pale.active,
.megamenu-nav-link-grey-pale:hover {background: var(--color-light-grey); color: var(--color-grey);}

/* Icon Styles */
.megamenu-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 5px;
  /*background-color: var(--color-magenta);*/
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.megamenu-nav-link:hover .megamenu-nav-icon,
.megamenu-nav-link.active .megamenu-nav-icon {
  /*background-color: var(--color-magenta);*/
  color: #fff;
}

.megamenu-nav-icon img {
  max-height: 30px;
  max-width: 30px;
}

.megamenu-nav-text {
  font-weight: 600;
}

/* Untermenü Styles */
.megamenu-submenu {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.megamenu-submenu.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*.megamenu-submenu h5 {
  color: #495057;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}*/

.megamenu-submenu ul,
.megamenu-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.megamenu-submenu li,
.megamenu-menu li {
  margin-bottom: 0.5rem;
}

.megamenu-submenu a,
.megamenu-menu a {
  color: var(--color-grey);
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.megamenu-submenu a:hover,
.megamenu-menu a:hover {
  color: var(--color-magenta);
  background-color: #f8f9fa;
  transform: translateX(5px);
}

/* Anpassung der farbigen Links je nach Submenü */
.megamenu-submenu#submenu-gas a:hover,
.megamenu-submenu#submenu-gas-netz a:hover,
.megamenu-menu#submenu-gas a:hover,
.megamenu-menu#submenu-gas-netz a:hover,
#submenu-gas .megamenu-section li.active a,
#submenu-gas-netz .megamenu-section li.active a {color:var(--color-yellow);}

.megamenu-submenu#submenu-wasser a:hover,
.megamenu-submenu#submenu-wasser-netz a:hover,
.megamenu-menu#submenu-wasser a:hover,
.megamenu-menu#submenu-wasser-netz a:hover,
#submenu-wasser .megamenu-section li.active a,
#submenu-wasser-netz .megamenu-section li.active a {color:var(--color-sky);}

.megamenu-submenu#submenu-waerme a:hover,
.megamenu-submenu#submenu-waerme-netz a:hover,
.megamenu-menu#submenu-waerme a:hover,
.megamenu-menu#submenu-waerme-netz a:hover,
#submenu-waerme .megamenu-section li.active a,
#submenu-waerme-netz .megamenu-section li.active a {color: var(--color-lime);}

/* Bootstrap Standard-Pfeil ausblenden */
.dropdown-toggle::after {
  display: none !important;
}

/* Active State für Dropdown-Links */
.dropdown-toggle.active {
  color: var(--color-magenta) !important;
}

/* Responsive - Megamenu komplett ausblenden unter 992px */
@media (max-width: 991.98px) {
  .megamenu {
      display: none !important;
  }
}

.megamenu-menu {padding-top: 30px;}

/* ==========================================================================
   Off Canvas Mobile Menu
   ========================================================================== */

/* Off-Canvas Menu Container */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100dvh;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

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

/* Menu Header */
.menu-header {
  background: var(--color-magenta);
  padding: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.menu-subtitle {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 4px;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Navigation Container */
.nav-container {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}

/* Navigation Level */
.nav-level {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}

.nav-level.slide-left {
  transform: translateX(-100%);
}

.nav-level.slide-right {
  transform: translateX(100%);
}

/* Back Button */
.back-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  background: rgba(108, 117, 125, 0.1);
  border: none;
  color: #495057;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(108, 117, 125, 0.2);
  color: #212529;
}

.back-btn i {
  margin-right: 10px;
  font-size: 12px;
}

/* Menu Items */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--color-grey);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/*.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
  z-index: -1;
}*/

/*.menu-item:hover::before {
  width: 100%;
}

.menu-item:hover {
  color: white;
  transform: translateX(5px);
}*/

.menu-item-content {
  display: flex;
  align-items: center;
}

.menu-item i {
  margin-right: 15px;
  font-size: 16px;
  width: 20px;
  text-align: center;
  opacity: 0.7;
  color: var(--color-grey);
}

/*.menu-item:hover i {
  color: white;
  opacity: 1;
}*/

.menu-item span {
  font-size: 15px;
  font-weight: 500;
}

.arrow-icon {
  color: #6c757d;
  font-size: 12px;
  transition: color 0.3s ease;
}

/*.menu-item:hover .arrow-icon {
  color: white;
}*/

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive - Menu nur auf mobilen Geräten anzeigen */
/*@media (max-width: 992px) {
  .menu-toggle {
      display: block;
  }
}*/

@media (min-width: 992px) {
  .offcanvas-menu,
  .overlay {
      display: none !important;
  }
}

/* Scrollbar Styling */
/*.nav-level::-webkit-scrollbar {
  width: 4px;
}

.nav-level::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.nav-level::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.3);
  border-radius: 2px;
}

.nav-level::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.5);
}*/

.login-wrapper {
  margin-top: auto;
  padding-bottom: calc(env(safe-area-inset-bottom) + 120px); /* Extra Abstand */
  flex-shrink: 0;
}

/* ==========================================================================
   Submenu, List-Group etc.
   ========================================================================== */

a.list-group-item {
  color: var(--color-grey);
  text-decoration: none;
  display: block;
  padding: 0.5rem;
  border-radius: 0;
  transition: all 0.2s ease;
}

a.list-group-item:hover {
  color: var(--color-magenta) !important;
  background-color: #f8f9fa;
  transform: translateX(5px);
}

a.list-group-item.active {
  color: var(--color-magenta) !important;
  background-color: #f8f9fa;
  border-color: #fff;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

/* Custom Breadcrumb Styling */
.custom-breadcrumb {
  background: var(--color-magenta);
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-radius: 0;
}

.custom-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
}

.custom-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.custom-breadcrumb .breadcrumb-item.active a {
  color: #ffffff;
  font-weight: 700 !important;
}

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
}

.breadcrumb-icon {
  margin-right: 0.5rem;
  opacity: 0.8;
}

/* ==========================================================================
   Sections
   ========================================================================== */

@media (max-width: 767px) {
  header {
    background-attachment: scroll !important; /*mobile fix, Iphone/Safari "background-attachment: fixed" nicht möglich*/
  }
}

section {
	/*background: url(../img/bg.jpg) center top no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;*/
	padding: 80px 0;
}

@media (max-width: 1200px) {
  section {
    padding: 60px 0;
  }
}

section#wir {
  padding: 120px 0 180px 0;
}

@media (max-width: 1200px) {
  section#wir {
    padding: 60px 0 20px 0;
  }
}

.bg-rounded-right {
  position: absolute; 
  top: 100px; 
  right: 0; 
  width: 50%; 
  height: 70%;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  border-radius: 35px 0 0 35px; 
  z-index: 1;
}

.bg-section {
  width: 100%;
  height: 300px;
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  margin: 40px 0; 
}

section#content {padding: 40px 0;}

@media (max-width: 1200px) {
  section#content {
    padding: 20px 0 20px 0;
  }
}

section#aktuelles {
  position: relative;
}

@media (max-width: 1200px) {
  section#aktuelles {
    padding: 20px 0 20px 0;
  }
}

section#aktuelles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/bildmarke.svg) no-repeat;
  background-position: left;
  background-size: 900px;
  opacity: 0.15;
  z-index: -1;
}

section#nachhaltigkeit {
  position: relative; /* Wichtig für das Pseudoelement */
  background: url(../img/bg-nachhaltigkeit.jpg) center top no-repeat fixed;
  background-size: cover;
  color: white; /* Optional */
  padding: 180px 0 0 0; /* damit Inhalt sichtbar ist */
  z-index: 0; /* wichtig, damit das ::before darunter bleibt */
}

@media (max-width: 1200px) {
  section#nachhaltigkeit {
    padding: 60px 0 40px 0;
  }
}

@media (max-width: 767px) {
  section#nachhaltigkeit {
    background-attachment: scroll !important; /*mobile fix, Iphone/Safari "background-attachment: fixed" nicht möglich*/
  }
}

section#nachhaltigkeit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 50, 0, 0.7); /* Overlay */
  z-index: 1;
}

section#nachhaltigkeit .content {
  position: relative;
  z-index: 2;
}

.cards-overlap {
  position: relative;
  z-index: 3;
  transform: translateY(40%);
}

@media (max-width: 1200px) {
  .cards-overlap {
    transform: translateY(15%);
  }
}

@media (max-width: 768px) {
  .cards-overlap {
    transform: translateY(5%);
  }
}

section#produkte {
  background-color: #eee;
  padding: 80px 0 0 0;
  margin-top: 240px;
}

@media (max-width: 1200px) {
  section#produkte {
    padding: 60px 0 20px 0;
    margin-top: 100px;
  }
}

section#tarife {
  padding: 60px 0 0 0;
}

section#suche {
  padding: 280px 0 120px 0;
}

@media (max-width: 1200px) {
  section#suche {
    padding: 60px 0 20px 0;
  }
}

footer {
  position: relative;
  padding: 80px 0 80px 0;
}

@media (max-width: 1200px) {
  footer {
    padding: 40px 0;
  }
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(
      to right,
      rgb(220, 41, 114) 0% 25%,
      rgb(252, 195, 5) 25% 50%,
      rgb(0, 177, 230) 50% 75%,
      rgb(177, 200, 0) 75% 100%
  );
}

footer .title {
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  margin: 0 0 14px 0;
}

footer a {
  color: var(--color-grey);
  text-decoration: none;
}

footer a:hover {color: var(--color-magenta);}

footer ul {line-height: 1.8rem;}

/* ==========================================================================
   Buttons
   ========================================================================== */

/*button {
  overflow-wrap: break-word;
  word-wrap: break-word;
  #fff-space: normal !important;
}

 .btn-primary {
  overflow-wrap: break-word;
  word-wrap: break-word;
  #fff-space: normal !important;
 }*/


.btn-pill {
  border-radius: 50rem; /* pillenförmig */
  background-color: #fff;
  color: var(--text-gray);
  padding: 0.375rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  font-weight: 600;
  min-width: 260px;
  border-width: 8px;
  /*margin: 14px 0;*/
  margin-bottom: 14px;
}

@media (max-width: 567px) {
  .btn-pill {
    width: 100%;
    padding: 0.675rem 1rem;
  }
}

.btn-magenta {
  border: solid var(--color-magenta);
  background-color: var(--color-magenta);
  color: #fff !important;
}

.btn-magenta:hover {
  border: solid var(--color-magenta);
  background-color: #fff;
  color: var(--color-grey) !important;
}

.btn-grey {
  border: solid var(--color-grey);
  background-color: var(--color-grey);
  color: #fff !important;
}

.btn-grey:hover {
  border: solid var(--color-grey);
  background-color: #fff;
  color: var(--color-grey) !important;
}

.btn-outline-magenta {
  border: solid var(--color-magenta);
}

.btn-outline-magenta:hover {
  background-color: var(--color-magenta);
  color: #fff;
}

.btn-outline-magenta i {color: var(--color-magenta);}
.btn-outline-magenta:hover i {color: #fff;}

.btn-outline-sky {
  border: solid var(--color-sky);
}

.btn-outline-sky:hover {
  background-color: var(--color-sky);
  color: #fff;
}

.btn-outline-sky i {color: var(--color-sky);}
.btn-outline-sky:hover i {color: #fff;}

.btn-outline-yellow {
  border: solid var(--color-yellow);
}

.btn-outline-yellow:hover {
  background-color: var(--color-yellow);
  color: #fff; /* gute Lesbarkeit auf gelbem Hintergrund */
}

.btn-outline-yellow i {color: var(--color-yellow);}
.btn-outline-yellow:hover i {color: #fff;}

.btn-outline-lime {
  border: solid var(--color-lime);
}

.btn-outline-lime:hover {
  background-color: var(--color-lime);
  color: #fff;
}

.btn-outline-lime i {color: var(--color-lime);}
.btn-outline-lime:hover i {color: #fff;}

.btn-outline-grey {
  border: solid var(--color-grey);
  background: transparent;
}

.btn-outline-grey:hover {
  background-color: var(--color-grey);
  color: #fff !important;
}

.btn-outline-grey i {color: var(--color-grey);}
.btn-outline-grey:hover i {color: #fff;}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: -60px; /* Startet außerhalb des Bildschirms */
  width: 50px;
  height: 50px;
  background: var(--color-sky);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-weight: bold;
  z-index: 1000;
}

/* Button sichtbar und von rechts nach links animiert */
.back-to-top.visible {
  right: 30px;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hover-Effekt */
.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--color-magenta);
}

/* Aktiv-Zustand */
.back-to-top:active {
  transform: translateY(-1px) scale(1.05);
}

/* Font Awesome Icon */
.back-to-top i {
  font-size: 1.4rem;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .back-to-top {
      width: 45px;
      height: 45px;
      bottom: 60px;
      right: -55px;
  }
  
  .back-to-top.visible {
      right: 20px;
  }
}

/* ==========================================================================
   Icons
   ========================================================================== */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-light-grey);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon.facebook {background-color: #3b5998;}

.social-icon.instagram {
  background:linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-icon:hover {
  background: #e9ecef;
  color: #000;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  border: none;
  border-radius: 35px 35px 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 380px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 40px;
  /*font-size: 1.2rem;*/
  font-size: 1rem;
}

@media (max-width: 1200px) {
  .card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .card {
   font-size: 1rem;
  }
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-img-container {
  border-radius: 35px 35px 0 0;
  overflow: hidden;
}

.card-img {
  border-radius: 35px 35px 0 0;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.1);
}

.date-pill {
  position: absolute;
  top: 225px;
  right: 15px;
  background-color: var(--color-lime);
  color: white;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 10;
}

.card-body {
  border-radius: 35px 35px 0 0;
  padding: 40px;
  padding-bottom: 50px;
}

@media (max-width: 1200px) {
  .card-body {
    padding: 20px;
  }
}

/*@media (max-width: 767px) {
  .card-body {
    padding: 14px;
  }
}*/

.card-body a {color:var(--color-grey);}
.card-body a:hover {color:var(--color-magenta);}

.round-button {
  position: absolute;
  bottom: -25px; /* Zur Hälfte außerhalb der Card */
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-sky);
  border: none;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}

.round-button:hover,
.card:hover .round-button {
  background-color: var(--color-magenta);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 41, 114, 0.4);
}

a.round-button:hover {color:#fff;}

.card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-grey);
}

.icon-button {
  position: absolute;
  bottom: -50px; /* Zur Hälfte außerhalb der Card */
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: white;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /*box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);*/
  transition: all 0.3s ease;
  z-index: 10;
}

.icon-button img {
  height: 60px;
}

@media (max-width: 576px) {
  .icon-button {width: 70px; height: 70px; bottom: -30px;}
  .icon-button img {
    height: 40px;
  }
}

.icon-white {
  filter: brightness(0) invert(1);
}

.card-rounded {
  border-radius: 35px;
}

.card-product:hover .card-title {color:#fff;}

/*.card-title {
  font-weight: 600;
  margin-bottom: 10px;
}*/

/*.card-text {
  color: #666;
  line-height: 1.6;
}*/

/* Footer Button Styling */
.card-footer-button {
  background: var(--color-magenta);
  margin: 0;
  padding: 0;
  border-radius: 0 0 35px 35px; /* Abgerundete untere Ecken */
  position: relative;
  overflow: hidden;
}

.card-footer-button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.2rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.card-footer-button:hover {
  background: rgb(190, 30, 100);
}

.card-footer-button a:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Hover-Effekt mit Pseudo-Element */
.card-footer-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.card-footer-button:hover::before {
  left: 100%;
}

/* --- Card Tarife ------- */

.card-tarif .card-title {font-size: 2rem;}
.card-tarif .card-subtitle {font-size: 1.2rem;}
.card-tarif h3 {font-size: 1.2rem;}

@media (max-width: 1920px) {
  .card-tarif .card-title {font-size: 1.4rem;}
}

@media (max-width: 1200px) {
  .card-tarif .card-title {font-size: 1.2rem;}
}

.card-tarif ul {font-size: 1rem;}

/*.card-tarif .card-img {
  height: 260px;
}

@media (max-width: 1200px) {
  .card-tarif .card-img {
    height: 200px;
  }
}*/

.card-tarif .circle-power {min-width: 30px;}

/* --- Card Onlineservice ------- */

.card-onlineservice h3 {
  font-weight: 600;
  color:var(--color-grey);
}

/* Custom Switch Button Styles */
.customer-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 15px;
}

.customer-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-grey);
  transition: .4s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.customer-switch input:checked + .switch-slider {
  background-color: var(--color-grey);
}

.customer-switch input:checked + .switch-slider:before {
  transform: translateX(26px);
}

.customer-switch input:not(:checked) + .switch-slider {
  background-color: var(--color-magenta);
}

.switch-label {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.switch-label.active {
  color: var(--color-magenta);
  font-weight: bold;
}

.switch-label.inactive {
  color: var(--color-grey);
}

.question-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.buttons-container {
  transition: all 0.4s ease-in-out;
}

.buttons-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.buttons-fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

/* Animation for button container */
.button-group {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.round-button-24h {
  position: absolute;
  top: -45px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-sky);
  border: none;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

@media (max-width: 767px) {
  .round-button-24h {
    top: -65px;
  }
}

/* ==========================================================================
   Sticky Sidebar
   ========================================================================== */

.sticky-sidebar {
  position: fixed;
  right: -10px;
  bottom: 350px;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  /*gap: 18px;*/
  gap: 12px;
  pointer-events: none;
}

@media (max-width: 576px) {
  .sticky-sidebar {
    bottom: 400px;
  }
}

.pill-element {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 14px 24px;
  background: var(--color-magenta);
  color: white;
  text-decoration: none;
  border-radius: 25px 0 0 25px;
  transition: all 0.3s ease;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  pointer-events: auto;
  border: none;
  font-size: 1rem;
  font-weight: 500;
}

.pill-element:hover {
  background: rgb(190, 30, 100);
  transform: translateX(-10px);
  box-shadow: -4px 4px 12px rgba(0,0,0,0.2);
  color: #fff;
}

.pill-element.secondary {
  transform: translateX(15px);
}

.pill-element.secondary:hover {
  transform: translateX(-10px);
}

.pill-icon {
  font-size: 18px;
  min-width: 18px;
  text-align: center;
}

@media (max-width: 1200px) {
  .sticky-sidebar {
    right: -2px;
    /*top: 28%;*/
  }
  .pill-element {
    padding: 12px 15px 10px 18px;
    font-size: 1.4rem;
  }
  .pill-element.secondary {
    transform: translateX(0);
  }
}

.pill-element.third {
  transform: translateX(30px);
}

.pill-element.third:hover {
  transform: translateX(0px);
}

@media (max-width: 1200px) {
  .pill-element.third {
    transform: translateX(0);
  }
}

/*@media (max-width: 576px) {
  .sticky-sidebar {max-height: 160px;}
}*/

/* ==========================================================================
   Suche
   ========================================================================== */

.search-form .form-control {
  border-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 35px;
  padding-left: 60px;
  background: #eee;
  border-color: #eee;
}

.search-form-mobile {padding: 0 20px;}

.search-form-mobile .form-control {
  border-bottom-left-radius: 0;
  padding-left: 20px;
}

.search-form .form-control:focus {background-color: #fff;}

.search-form .btn {
  border-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 35px;
}

.search-form button {
  background-color: var(--color-magenta);
  color: white;
  border: none;
  padding: 0 100px;
}

@media (max-width: 1200px) {
  .search-form button {
    padding: 0 20px;
  }
}

.search-form button:hover {
  background-color: rgb(190, 30, 100);
  color: #fff;
}

/* ==========================================================================
   Kontaktformular, Formulare allg.
   ========================================================================== */

form#Kontaktformular .formarea {
  border: none;
  border-radius: 35px 35px 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 40px;
}

/* ==========================================================================
   Owl-Carousel
   ========================================================================== */

.owl-carousel {
  position: relative;
  padding: 0 40px; /* Platz für die Pfeile links/rechts schaffen */
}

.owl-nav {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  /*pointer-events: none;*/
  z-index: -1
}

.owl-nav button {
  background: var(--color-sky) !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.owl-nav button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--color-magenta) !important;
}

section#nachhaltigkeit .owl-nav button {
  background: transparent !important;
  cursor: pointer;
  box-shadow: none !important;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

section#nachhaltigkeit .owl-nav button:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--color-magenta) !important;
}

.owl-prev i,
.owl-next i {
  font-size: 1.2rem;
  color: #fff;
}

.owl-carousel .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.owl-stage {padding: 20px 0;}

@media (max-width: 767px) {
  .owl-stage {padding: 60x 0;}
}

/*@media (min-width: 1200px) {
  .owl-carousel .card-tarif {min-width: 400px !important;}
}*/

/*@media (min-width: 1920px) {
  .owl-carousel .card-tarif {min-width: 440px !important;}
}*/

@media (min-width: 2000px) {
  .owl-carousel .card-tarif {min-width: 440px !important;}
}

/* ==========================================================================
   Akkordeon
   ========================================================================== */

.custom-accordion {
  /*max-width: 800px;*/
  margin: 20px auto;
  /*padding: 20px;*/
}

.accordion-item {
  border: 2px solid var(--color-magenta) !important;
  border-radius: 15px !important;
  margin-bottom: 10px;
  background-color: white;
  overflow: hidden;
}

.accordion-button {
  background-color: white !important;
  border: none !important;
  color: #333 !important;
  font-weight: 600;
  padding: 20px 25px;
  transition: all 0.3s ease;
  border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
  background-color: white !important;
  color: #333 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.accordion-item:first-child .accordion-button {
  border-top-left-radius: 13px !important;
  border-top-right-radius: 13px !important;
}

.accordion-item:last-child .accordion-button.collapsed {
  border-bottom-left-radius: 13px !important;
  border-bottom-right-radius: 13px !important;
}

.accordion-button:hover {
  background-color: var(--color-magenta) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:hover::after {
  filter: brightness(0) invert(1);
}

.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: var(--color-magenta) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e91e63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e91e63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-collapse {
  border-top: 1px solid var(--color-magenta);
}

.accordion-body {
  background-color: white;
  padding: 25px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .accordion-body {
    padding: 12px;
  }
}

/* ==========================================================================
   Downloads
   ========================================================================== */

/*.download-section {
  padding: 40px 0;
}*/
.download-list {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.download-item {
  padding: 10px 15px;
  border-bottom: 1px solid #f1f3f4;
  transition: all 0.3s ease;
 /* display: flex;
  align-items: center;
  justify-content: space-between;*/
}

@media (max-width: 767px) {
  .download-item {
    padding: 10px 15px;
  }
}

.download-item:last-child {
  border-bottom: none;
}

.download-item:hover {
  background: #eee;
  border-left: 4px solid var(--color-magenta);
  padding-left: 21px;
}

.pdf-icon {
  font-size: 1.4rem;
  color: var(--color-magenta);
  margin-right: 12px;
}

@media (max-width: 767px) {
  .pdf-icon {margin-right: 5px;}
}

.file-info h6 {
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--color-grey);
  font-size: 1.2rem;
}

/*@media (max-width: 767px) {
  .file-info h6 {font-size: 1.2rem;}
}*/

.file-description {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}

.file-size {
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #495057;
  font-weight: 500;
  margin-left: 10px;
}

/*.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-header h3 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 8px;
}
.section-header p {
  color: #6c757d;
  margin-bottom: 0;
}*/


/* ==========================================================================
   Tabellen, Tables
   ========================================================================== */

#content table {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

/* ==========================================================================
   Galerie
   ========================================================================== */



/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
	/*...*/
}

/*// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

// Medium devices (tablets, 1200px and up)
@media (min-width: 1200px) { ... }

// Large devices (desktops, 1200px and up)
@media (min-width: 1200px) { ... }

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }*/



/* ==========================================================================
   Animationen
   ========================================================================== */

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}