/* ========================================
   SELBST GEHOSTETE SCHRIFTEN
   ======================================== */

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/fonts/montserrat-latin.woff2") format("woff2");
}


/* ========================================
   TOP BAR
   ======================================== */

#sp-topbar {
    position: relative;
    z-index: 100;

    margin: 0 !important;
    padding: 0 !important;

    background: rgba(20, 20, 20, 0.95);
}

/* Frontend-Bearbeiten-Schaltflächen ausblenden */
#sp-topbar .jmodedit,
#sp-topbar [role="tooltip"] {
    display: none !important;
}

/* Topbar kompakt und vertikal zentriert */
#sp-topbar .container,
#sp-topbar .container-inner,
#sp-topbar .row,
#sp-topbar-left,
#sp-topbar-right {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#sp-topbar .row,
#sp-topbar-left,
#sp-topbar-right,
.topbar-social,
.topbar-contact {
    display: flex;
    align-items: center;
}

#sp-topbar .row {
    min-height: 40px;
}

#sp-topbar .sp-column,
#sp-topbar .sp-module,
#sp-topbar .sp-module-content,
#sp-topbar .mod-custom {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

.topbar-social {
    gap: 16px;
}

.topbar-contact {
    justify-content: flex-end;
    gap: 28px;
}

.topbar-social a,
.topbar-contact a {
    display: inline-flex;
    align-items: center;

    margin: 0;
    padding: 0;

    color: #fff;
    line-height: 1;
    text-decoration: none;
    opacity: 0.9;
}

.topbar-social a:hover,
.topbar-contact a:hover {
    color: #fff;
    opacity: 1;
}

.topbar-contact i {
    margin-right: 7px;
}


/* ========================================
   HEADER ÜBER DEM HERO
   ======================================== */

#sp-header {
    position: absolute !important;
    top: 40px !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99;

    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}

/* Am Seitenanfang: Menue frei ueber dem Hero, ohne sichtbaren Balken */
#sp-header:not(.dj-header-scrolled):not(.header-sticky),
#sp-header:not(.dj-header-scrolled):not(.header-sticky) > .container,
#sp-header:not(.dj-header-scrolled):not(.header-sticky) > .container-fluid,
#sp-header:not(.dj-header-scrolled):not(.header-sticky) .container,
#sp-header:not(.dj-header-scrolled):not(.header-sticky) .container-fluid,
#sp-header:not(.dj-header-scrolled):not(.header-sticky) .container-inner,
#sp-header:not(.dj-header-scrolled):not(.header-sticky) .row {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#sp-header:not(.dj-header-scrolled):not(.header-sticky)::before,
#sp-header:not(.dj-header-scrolled):not(.header-sticky)::after {
    display: none !important;
    content: none !important;
}

/* Innere Header-Bereiche transparent halten */
#sp-header > .container,
#sp-header > .container-fluid,
#sp-header .container,
#sp-header .container-fluid,
#sp-header .row {
    background: transparent !important;
}

/* Hintergrund erst ab eigener Scroll-Schwelle */
#sp-header.dj-header-scrolled {
    background: rgba(20, 20, 20, 0.45) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Sticky-Zustand */
#sp-header.header-sticky,
.sticky-wrapper.is-sticky #sp-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
}

/* Frontend-Bearbeiten-Schaltflächen im Header ausblenden */
#sp-header .jmodedit,
#sp-header [role="tooltip"] {
    display: none !important;
}


/* ========================================
   CUSTOM HEADER: MENÜ | LOGO | MENÜ
   ======================================== */

#sp-header .row {
    display: flex;
    align-items: center !important;
    min-height: 120px;
}

/* Alle drei Desktop-Spalten vertikal zentrieren */
#sp-leftmenu,
#sp-logo,
#sp-rightmenu {
    display: flex;
    align-items: center;
    min-height: 120px;
}

/* Innere Wrapper nutzen volle Breite */
#sp-leftmenu .sp-column,
#sp-leftmenu .sp-module,
#sp-leftmenu .sp-module-content,
#sp-rightmenu .sp-column,
#sp-rightmenu .sp-module,
#sp-rightmenu .sp-module-content,
#sp-logo .sp-column,
#sp-logo .logo {
    width: 100%;
}

/* Abstand zum Logo */
#sp-leftmenu {
    padding-right: 38px;
}

#sp-rightmenu {
    padding-left: 38px;
}

/* Linkes Menü zum Logo hin ausrichten */
#sp-leftmenu ul.mod-menu {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    gap: 32px;

    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Rechtes Menü vom Logo weg ausrichten */
#sp-rightmenu ul.mod-menu {
    display: flex;
    justify-content: flex-start !important;
    align-items: center;
    gap: 32px;

    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Menüpunkte */
#sp-leftmenu ul.mod-menu > li,
#sp-rightmenu ul.mod-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Hauptmenü-Links */
#sp-leftmenu ul.mod-menu > li > a,
#sp-rightmenu ul.mod-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 120px;
    padding: 0;

    color: #fff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;

    transition: opacity 0.25s ease;
}

#sp-leftmenu ul.mod-menu > li > a:hover,
#sp-rightmenu ul.mod-menu > li > a:hover,
#sp-leftmenu ul.mod-menu > li.active > a,
#sp-rightmenu ul.mod-menu > li.active > a {
    opacity: 0.7;
}


/* ========================================
   LOGO
   ======================================== */

#sp-logo {
    justify-content: center;
    text-align: center;
}

#sp-logo .sp-column,
#sp-logo .logo,
#sp-logo .logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

#sp-logo .logo-image {
    display: block;
    width: auto;
    max-width: 290px;
    max-height: 74px;
    margin: 0;
}


/* ========================================
   UNTERMENÜS DESKTOP
   ======================================== */

#sp-leftmenu ul.mod-menu > li > ul,
#sp-leftmenu ul.mod-menu > li > ul.mod-menu__sub,
#sp-rightmenu ul.mod-menu > li > ul,
#sp-rightmenu ul.mod-menu > li > ul.mod-menu__sub {
    position: absolute;
    top: calc(50% + 28px);
    z-index: 1000;

    display: none !important;
    min-width: 190px;
    margin: 0;
    padding: 10px 0;

    list-style: none;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

#sp-leftmenu ul.mod-menu > li > ul,
#sp-leftmenu ul.mod-menu > li > ul.mod-menu__sub {
    right: 0;
    left: auto;
    text-align: right;
}

#sp-rightmenu ul.mod-menu > li > ul,
#sp-rightmenu ul.mod-menu > li > ul.mod-menu__sub {
    right: auto;
    left: 0;
    text-align: left;
}

#sp-leftmenu ul.mod-menu > li:hover > ul,
#sp-leftmenu ul.mod-menu > li:focus-within > ul,
#sp-rightmenu ul.mod-menu > li:hover > ul,
#sp-rightmenu ul.mod-menu > li:focus-within > ul {
    display: block !important;
}

#sp-leftmenu ul.mod-menu > li > ul > li,
#sp-rightmenu ul.mod-menu > li > ul > li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-leftmenu ul.mod-menu > li > ul > li > a,
#sp-rightmenu ul.mod-menu > li > ul > li > a {
    display: block;
    min-height: 0;
    padding: 10px 18px;

    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
}

#sp-leftmenu ul.mod-menu > li > ul > li > a:hover,
#sp-rightmenu ul.mod-menu > li > ul > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}


/* ========================================
   HAMBURGER
   ======================================== */

/* Auf Desktop ausblenden */
#sp-mobilemenu {
    display: none;
}

/* Helix-Offcanvas-Hinweis nie anzeigen */
.offcanvas-menu .alert,
.offcanvas-menu .alert-warning,
.offcanvas-menu .offcanvas-inner > .alert,
.offcanvas-menu .offcanvas-inner > div:first-child.alert {
    display: none !important;
}


/* ========================================
   DESKTOP HEADER
   ======================================== */

@media (min-width: 1200px) {

    #sp-header .row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center !important;
        min-height: 120px;
        flex-wrap: nowrap !important;
    }

    #sp-leftmenu,
    #sp-logo,
    #sp-rightmenu {
        width: auto !important;
        max-width: none !important;
        min-height: 120px;
        flex: initial !important;
    }

    #sp-leftmenu {
        grid-column: 1;
        justify-content: flex-end;
        padding-right: 24px !important;
        text-align: right;
    }

    #sp-logo {
        grid-column: 2;
        justify-content: center;
        min-width: 330px;
        padding: 0 28px !important;
        text-align: center;
    }

    #sp-rightmenu {
        grid-column: 3;
        justify-content: flex-start;
        padding-left: 24px !important;
        text-align: left;
    }

    #sp-leftmenu .sp-column,
    #sp-leftmenu .sp-module,
    #sp-leftmenu .sp-module-content,
    #sp-rightmenu .sp-column,
    #sp-rightmenu .sp-module,
    #sp-rightmenu .sp-module-content {
        display: flex;
        align-items: center;
        width: 100%;
        min-width: 0;
    }

    #sp-leftmenu .sp-column,
    #sp-leftmenu .sp-module,
    #sp-leftmenu .sp-module-content {
        justify-content: flex-end;
    }

    #sp-rightmenu .sp-column,
    #sp-rightmenu .sp-module,
    #sp-rightmenu .sp-module-content {
        justify-content: flex-start;
    }

    #sp-leftmenu ul.mod-menu {
        justify-content: flex-end !important;
        gap: clamp(18px, 2vw, 32px);
        margin-left: auto;
    }

    #sp-rightmenu ul.mod-menu {
        justify-content: flex-start !important;
        gap: clamp(18px, 2vw, 32px);
        margin-right: auto;
    }

    #sp-logo .logo-image {
        max-width: 290px;
    }

    body.offcanvas-init,
    body.offcanvas-active {
        overflow: auto !important;
    }

    body.offcanvas-init .offcanvas-menu,
    body.offcanvas-active .offcanvas-menu,
    body.offcanvas-init .offcanvas-overlay,
    body.offcanvas-active .offcanvas-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    body.offcanvas-init .body-wrapper,
    body.offcanvas-active .body-wrapper,
    body.offcanvas-init .site-wrapper,
    body.offcanvas-active .site-wrapper {
        right: auto !important;
        left: auto !important;
        transform: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1360px) {

    #sp-logo {
        min-width: 300px;
        padding: 0 22px !important;
    }

    #sp-logo .logo-image {
        max-width: 260px;
    }

    #sp-leftmenu,
    #sp-rightmenu {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    #sp-leftmenu ul.mod-menu,
    #sp-rightmenu ul.mod-menu {
        gap: clamp(14px, 1.4vw, 22px);
    }

    #sp-leftmenu ul.mod-menu > li > a,
    #sp-rightmenu ul.mod-menu > li > a {
        font-size: 15px;
    }
}


/* ========================================
   MOBILE OFFCANVAS NAVIGATION
   ======================================== */

@media (max-width: 1199.98px) {

    /* Mobile Topbar stabil halten */
    #sp-topbar .row {
        min-height: 40px;
        flex-wrap: nowrap !important;
    }

    #sp-topbar-left,
    #sp-topbar-right {
        width: auto !important;
        max-width: none !important;
    }

    #sp-topbar-left {
        flex: 0 0 auto !important;
        padding-left: 20px !important;
    }

    #sp-topbar-right {
        flex: 1 1 auto !important;
        margin-left: auto !important;
        padding-right: 20px !important;
    }

    .topbar-social {
        flex-wrap: nowrap;
        gap: 15px;
    }

    .topbar-contact {
        justify-content: flex-end;
        flex-wrap: nowrap;
        gap: 18px;
        white-space: nowrap;
    }

    .topbar-contact a {
        font-size: 16px;
    }

    /* Desktop-Menüs ausblenden */
    #sp-leftmenu,
    #sp-rightmenu {
        display: none !important;
    }

    /* Header-Zeile mobil */
    #sp-header,
    #sp-header > .container,
    #sp-header > .container-fluid,
    #sp-header .container,
    #sp-header .container-fluid,
    #sp-header .container-inner {
        min-height: 80px !important;
        height: 80px !important;
    }

    #sp-header .row {
        display: flex;
        align-items: center !important;
        min-height: 80px;
        height: 80px;
        flex-wrap: nowrap;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 22px !important;
        padding-right: 16px !important;
    }

    /* Logo links */
    #sp-logo {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        flex: 1 1 auto;
        width: auto;
        max-width: calc(100% - 70px);
        min-height: 80px;

        padding-left: 0 !important;
    }

    #sp-logo .sp-column,
    #sp-logo .logo,
    #sp-logo .logo a {
        display: flex;
        align-items: center;
        justify-content: flex-start;

        width: 100%;
        height: 80px;
    }

    #sp-logo .logo-image {
        display: block;
        width: auto;
        max-width: 220px;
        max-height: 58px;
        margin: 0;
    }

    /* Per JavaScript erzeugte Hamburger-Spalte */
    #sp-mobilemenu {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;

        flex: 0 0 70px;
        width: 70px;
        max-width: 70px;
        min-height: 80px;

        margin-left: auto;
        padding-right: 0;
        z-index: 110;
    }

    /* Hamburger-Button */
    #sp-mobilemenu .dj-mobile-toggler {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;
        margin: 0;
        padding: 0;

        color: #fff;
        font-size: 0;
        line-height: 1;

        background: transparent;
        border: 0;
        cursor: pointer;
    }

    /* Hamburger ohne Icon-Font-Abhaengigkeit zeichnen */
    #sp-mobilemenu .dj-mobile-toggler i,
    #sp-mobilemenu .dj-mobile-toggler i::before,
    #sp-mobilemenu .dj-mobile-toggler i::after {
        display: block;
        width: 28px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
    }

    #sp-mobilemenu .dj-mobile-toggler i {
        position: relative;
    }

    #sp-mobilemenu .dj-mobile-toggler i::before,
    #sp-mobilemenu .dj-mobile-toggler i::after {
        position: absolute;
        left: 0;
        content: "";
    }

    #sp-mobilemenu .dj-mobile-toggler i::before {
        top: -8px;
    }

    #sp-mobilemenu .dj-mobile-toggler i::after {
        top: 8px;
    }

    #sp-mobilemenu .dj-mobile-toggler:hover {
        color: #fff;
        opacity: 0.75;
    }

    /* Offcanvas-Grundfläche */
    body.offcanvas-init .offcanvas-menu,
    body.offcanvas-active .offcanvas-menu,
    .offcanvas-menu {
        isolation: isolate;
        background: transparent !important;
        background-color: transparent !important;
        color: #fff;
    }

    body.offcanvas-init .offcanvas-menu::before,
    body.offcanvas-active .offcanvas-menu::before,
    .offcanvas-menu::before {
        position: absolute;
        inset: 0;
        z-index: 0;
        content: "";
        background: rgba(14, 14, 14, 0.46);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        pointer-events: none;
    }

    .offcanvas-menu .close-offcanvas,
    .offcanvas-menu .offcanvas-inner,
    .dj-mobile-navigation {
        position: relative;
        z-index: 1;
    }

    .offcanvas-menu .offcanvas-inner,
    .offcanvas-menu .offcanvas-inner .sp-module,
    .offcanvas-menu .offcanvas-inner .sp-module-content,
    .offcanvas-menu .offcanvas-inner .mod-menu,
    .dj-mobile-navigation,
    .dj-mobile-navigation ul.mod-menu {
        background: transparent !important;
        background-color: transparent !important;
    }

    .offcanvas-menu .offcanvas-inner {
        padding: 30px 28px !important;
    }

    /* Von JavaScript erzeugter Menübereich */
    .dj-mobile-navigation {
        box-sizing: border-box;
        width: 100%;
    }

    /* Falls das Script direkt in .offcanvas-menu statt .offcanvas-inner einfuegt */
    .offcanvas-menu > .dj-mobile-navigation {
        padding: 30px 28px;
    }

    .offcanvas-menu .offcanvas-inner .dj-mobile-navigation {
        padding: 0;
    }

    /* Beide kopierten Menüs untereinander */
    .dj-mobile-navigation ul.mod-menu {
        display: block !important;

        width: 100%;
        margin: 0;
        padding: 0;

        list-style: none;
    }

    .dj-mobile-navigation ul.mod-menu > li {
        display: block;
        width: 100%;

        margin: 0;
        padding: 0;

        list-style: none;
    }

    /* Hauptmenü-Links */
    .dj-mobile-navigation ul.mod-menu > li > a {
        display: block;

        width: 100%;
        min-height: 0;
        padding: 13px 6px;

        color: #fff;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
        text-decoration: none;
        text-transform: uppercase;
        white-space: normal;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dj-mobile-navigation ul.mod-menu > li > a:hover,
    .dj-mobile-navigation ul.mod-menu > li.active > a {
        color: #fff;
        opacity: 0.7;
    }

    /* Trennlinie zwischen den beiden Menüs */
    .mobile-menu-divider {
        width: 100%;
        height: 1px;

        margin: 18px 0;
        background: rgba(255, 255, 255, 0.16);
    }

    /* Untermenüs mobil dauerhaft anzeigen */
    .dj-mobile-navigation ul.mod-menu > li > ul {
        position: static !important;
        display: block !important;

        min-width: 0;
        margin: 0;
        padding: 0 0 8px 24px;

        list-style: none;
        background: transparent !important;

        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .dj-mobile-navigation ul.mod-menu > li > ul > li {
        display: block;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dj-mobile-navigation ul.mod-menu > li > ul > li > a {
        display: block;
        padding: 9px 0;

        color: rgba(255, 255, 255, 0.72);
        font-size: 16px;
        line-height: 1.3;
        text-decoration: none;
        text-transform: none;
        white-space: normal;

        border: 0;
    }

    .dj-mobile-navigation ul.mod-menu > li > ul > li > a:hover {
        color: #fff;
        opacity: 1;
    }
}

@media (max-width: 575.98px) {

    #sp-topbar-left {
        padding-left: 16px !important;
    }

    #sp-topbar-right {
        padding-right: 16px !important;
    }

    .topbar-social {
        gap: 13px;
    }

    .topbar-contact {
        gap: 0;
    }

    .topbar-contact a {
        font-size: 15px;
    }

    .topbar-contact a[href^="mailto:"] {
        display: none !important;
    }
}


/* ========================================
   TYPOGRAFIE-KORREKTUR
   ======================================== */

:root {
    --dj-font-body:
        "Manrope",
        Aptos,
        "Aptos Display",
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Arial,
        sans-serif;
    --dj-font-heading:
        "Montserrat",
        "Manrope",
        Aptos,
        "Aptos Display",
        "Segoe UI",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Arial,
        sans-serif;
}

body,
#sp-page-builder,
#sp-main-body,
.sppb-addon,
.sppb-addon-content,
.sppb-addon-title,
.sppb-addon-text,
.sppb-addon-content p,
.sppb-addon-content li,
.sppb-addon-content h1,
.sppb-addon-content h2,
.sppb-addon-content h3,
.sppb-addon-content h4,
.sppb-addon-content h5,
.sppb-addon-content h6 {
    font-family: var(--dj-font-body) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sppb-addon-title,
#sp-leftmenu ul.mod-menu > li > a,
#sp-rightmenu ul.mod-menu > li > a,
.dj-mobile-navigation a,
.sppb-btn,
#sp-page-builder .btn,
input[type="submit"],
.topbar-social a,
.topbar-contact a {
    font-family: var(--dj-font-heading) !important;
}

#sp-page-builder,
#sp-main-body,
.sppb-addon-content {
    font-size: 18px;
    line-height: 1.55;
}

/* Icon-Fonts reparieren, falls der Page Builder font-family: "" schreibt */
.fa,
.fas,
.fa-solid,
i[class^="fa-"]:not(.fa-brands):not(.fab):not(.fa-regular):not(.far),
i[class*=" fa-"]:not(.fa-brands):not(.fab):not(.fa-regular):not(.far),
span[class^="fa-"]:not(.fa-brands):not(.fab):not(.fa-regular):not(.far),
span[class*=" fa-"]:not(.fa-brands):not(.fab):not(.fa-regular):not(.far) {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
    font-style: normal;
    font-weight: 900;
}

.far,
.fa-regular,
i.far,
i.fa-regular,
span.far,
span.fa-regular {
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free" !important;
    font-style: normal;
    font-weight: 400;
}

.fab,
.fa-brands,
i.fab,
i.fa-brands,
span.fab,
span.fa-brands {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-style: normal;
    font-weight: 400;
}

/* ========================================
   HERO- UND INTERAKTIONS-FEINSCHLIFF
   ======================================== */

:root {
    --dj-glow-cyan: rgba(53, 218, 255, 0.72);
    --dj-glow-magenta: rgba(255, 57, 214, 0.58);
    --dj-glow-violet: rgba(146, 93, 255, 0.5);
}

#sp-page-builder .sppb-section:first-child h1,
#sp-main-body .sppb-section:first-child h1,
.dj-gradient-title:not(.sppb-addon):not(.sppb-section):not(.sppb-row):not(.sppb-column),
.sppb-addon.dj-gradient-title .sppb-addon-title,
.sppb-addon.dj-gradient-title .sppb-addon-content,
.sppb-addon-title.dj-gradient-title,
.sppb-addon-content.dj-gradient-title {
    position: relative;
    isolation: isolate;
    display: inline-block;
    padding: 0.08em 0.34em 0.14em;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0;
    border: 0;
    background: transparent;
    text-shadow:
        0 0 16px rgba(53, 218, 255, 0.34),
        0 0 30px rgba(255, 57, 214, 0.2),
        0 4px 24px rgba(0, 0, 0, 0.36);
    animation: dj-hero-title-glow 7s ease-in-out infinite;
}

#sp-page-builder .sppb-section:first-child h1::before,
#sp-main-body .sppb-section:first-child h1::before,
.dj-gradient-title:not(.sppb-addon):not(.sppb-section):not(.sppb-row):not(.sppb-column)::before,
.sppb-addon.dj-gradient-title .sppb-addon-title::before,
.sppb-addon.dj-gradient-title .sppb-addon-content::before,
.sppb-addon-title.dj-gradient-title::before,
.sppb-addon-content.dj-gradient-title::before {
    position: absolute;
    z-index: -1;
    inset: -0.1em -0.5em -0.14em;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(53, 218, 255, 0),
            rgba(53, 218, 255, 0.44) 18%,
            rgba(60, 125, 255, 0.28) 42%,
            rgba(255, 57, 214, 0.42) 68%,
            rgba(255, 255, 255, 0)
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08),
            rgba(7, 16, 42, 0.2) 2px,
            rgba(7, 16, 42, 0.24) calc(100% - 2px),
            rgba(255, 255, 255, 0.07)
        );
    border-radius: 4px;
    box-shadow:
        0 0 24px rgba(53, 218, 255, 0.2),
        0 0 42px rgba(255, 57, 214, 0.18);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 18%,
        #000 82%,
        transparent
    );
}

@keyframes dj-hero-title-glow {
    0%,
    100% {
        text-shadow:
            0 0 12px rgba(53, 218, 255, 0.26),
            0 0 26px rgba(255, 57, 214, 0.16),
            0 4px 24px rgba(0, 0, 0, 0.36);
    }

    50% {
        text-shadow:
            0 0 18px rgba(53, 218, 255, 0.46),
            0 0 38px rgba(255, 57, 214, 0.28),
            0 4px 24px rgba(0, 0, 0, 0.4);
    }
}

.dj-hero-subline {
    max-width: 920px;
    margin: 24px auto 0;
    color: #fff;
    font-size: clamp(24px, 2.1vw, 34px);
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.65),
        0 8px 24px rgba(0, 0, 0, 0.45);
}

.dj-wedding-hero {
    position: relative;
    overflow: hidden;
}

.dj-wedding-hero > .sppb-row-overlay {
    display: block !important;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.34),
            rgba(0, 0, 0, 0.48)
        ),
        radial-gradient(
            circle at 72% 40%,
            rgba(255, 32, 188, 0.82),
            transparent 54%
        ),
        radial-gradient(
            circle at 28% 60%,
            rgba(20, 220, 255, 0.68),
            transparent 52%
        ) !important;
    mix-blend-mode: overlay !important;
    pointer-events: none !important;
    opacity: 0.9;
    animation: dj-wedding-glow 3.5s ease-in-out infinite !important;
}

.dj-wedding-hero > .sppb-row-container,
.dj-wedding-hero > .sppb-container-inner,
.dj-wedding-hero > .sppb-row {
    position: relative;
    z-index: 2;
}

.dj-hero-animation {
    position: relative;
    overflow: hidden;
}

.dj-hero-animation::before {
    display: block;
    position: absolute !important;
    z-index: 1 !important;
    inset: 0 !important;
    content: "";
    background:
        radial-gradient(
            circle 220px at 10% 18%,
            rgba(53, 218, 255, 0.86) 0%,
            rgba(53, 218, 255, 0.42) 34%,
            transparent 74%
        ),
        radial-gradient(
            circle 190px at 24% 78%,
            rgba(255, 57, 214, 0.78) 0%,
            rgba(255, 57, 214, 0.36) 32%,
            transparent 72%
        ),
        radial-gradient(
            circle 205px at 42% 34%,
            rgba(146, 93, 255, 0.82) 0%,
            rgba(146, 93, 255, 0.38) 33%,
            transparent 74%
        ),
        radial-gradient(
            circle 185px at 58% 82%,
            rgba(255, 190, 80, 0.68) 0%,
            rgba(255, 190, 80, 0.32) 32%,
            transparent 72%
        ),
        radial-gradient(
            circle 215px at 76% 24%,
            rgba(20, 220, 255, 0.76) 0%,
            rgba(20, 220, 255, 0.34) 34%,
            transparent 74%
        ),
        radial-gradient(
            circle 195px at 91% 68%,
            rgba(255, 32, 188, 0.76) 0%,
            rgba(255, 32, 188, 0.34) 32%,
            transparent 72%
        ) !important;
    mix-blend-mode: screen !important;
    pointer-events: none !important;
    opacity: 1;
    animation: dj-hero-white-lights 5.5s ease-in-out infinite !important;
}

.dj-hero-animation > .sppb-row-overlay {
    display: none !important;
}

.dj-hero-animation > .sppb-row-container,
.dj-hero-animation > .sppb-container-inner,
.dj-hero-animation > .sppb-row {
    position: relative;
    z-index: 2;
}

@keyframes dj-wedding-glow {
    0%,
    100% {
        filter: saturate(1.2) contrast(1.08) brightness(0.78);
        transform: scale(1.03) translate3d(-2.2%, 0.8%, 0);
    }

    50% {
        filter: saturate(3.2) contrast(1.28) brightness(1.02);
        transform: scale(1.12) translate3d(2.8%, -1.8%, 0);
    }
}

@keyframes dj-hero-white-lights {
    0%,
    100% {
        opacity: 0.78;
        transform: scale(1.02) translate3d(-1.2%, 0.6%, 0);
    }

    50% {
        opacity: 0.92;
        transform: scale(1.08) translate3d(1.4%, -0.8%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dj-wedding-hero > .sppb-row-overlay,
    .dj-hero-animation::before {
        animation: none !important;
    }
}

.sppb-btn,
#sp-page-builder .btn,
input[type="submit"] {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
}

.sppb-btn::before,
#sp-page-builder .btn::before,
input[type="submit"]::before {
    position: absolute;
    inset: 0;
    content: "";
    transform: translateX(-125%) skewX(-18deg);
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.16) 42%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0.16) 58%,
        transparent 100%
    );
    transition: transform 0.65s ease;
    pointer-events: none;
}

.sppb-btn:hover,
#sp-page-builder .btn:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 218, 255, 0.55) !important;
    box-shadow:
        0 0 0 1px rgba(53, 218, 255, 0.2),
        0 10px 26px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(255, 57, 214, 0.22);
}

.sppb-btn:hover::before,
#sp-page-builder .btn:hover::before,
input[type="submit"]:hover::before {
    transform: translateX(125%) skewX(-18deg);
}

#sp-leftmenu ul.mod-menu > li > a,
#sp-rightmenu ul.mod-menu > li > a {
    position: relative;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease,
        text-shadow 0.25s ease;
}

#sp-leftmenu ul.mod-menu > li > a::after,
#sp-rightmenu ul.mod-menu > li > a::after {
    position: absolute;
    bottom: 38px;
    width: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--dj-glow-cyan), var(--dj-glow-magenta));
    box-shadow: 0 0 12px rgba(53, 218, 255, 0.45);
    opacity: 0;
    transition:
        width 0.25s ease,
        opacity 0.25s ease;
}

#sp-leftmenu ul.mod-menu > li > a::after {
    right: 0;
}

#sp-rightmenu ul.mod-menu > li > a::after {
    left: 0;
}

#sp-leftmenu ul.mod-menu > li > a:hover,
#sp-rightmenu ul.mod-menu > li > a:hover,
#sp-leftmenu ul.mod-menu > li.active > a,
#sp-rightmenu ul.mod-menu > li.active > a {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow:
        0 0 10px rgba(53, 218, 255, 0.42),
        0 0 22px rgba(255, 57, 214, 0.24);
}

#sp-leftmenu ul.mod-menu > li > a:hover::after,
#sp-rightmenu ul.mod-menu > li > a:hover::after,
#sp-leftmenu ul.mod-menu > li.active > a::after,
#sp-rightmenu ul.mod-menu > li.active > a::after {
    width: 100%;
    opacity: 1;
}

.topbar-social a,
.topbar-contact a {
    transition:
        transform 0.22s ease,
        opacity 0.22s ease,
        text-shadow 0.22s ease;
}

.topbar-social a:hover,
.topbar-contact a:hover {
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(53, 218, 255, 0.45);
}

.dj-mobile-navigation ul.mod-menu > li > a {
    transition:
        padding-left 0.22s ease,
        opacity 0.22s ease,
        text-shadow 0.22s ease,
        background-color 0.22s ease;
}

.dj-mobile-navigation ul.mod-menu > li > a:hover,
.dj-mobile-navigation ul.mod-menu > li.active > a {
    padding-left: 14px;
    background: rgba(255, 255, 255, 0.045);
    text-shadow: 0 0 14px rgba(53, 218, 255, 0.36);
}

/* ========================================
   GLEICHHOHE BUTTONS
   ======================================== */

.dj-equal-buttons .sppb-btn {
    min-height: 112px;
}

/* ========================================
   LOCATION-/REGIONSANGABE
   ======================================== */

.dj-location-line,
.dj-location-line .sppb-addon-content,
.dj-location-line p {
    font-family: var(--dj-font-heading) !important;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;
}

.dj-location-line .sppb-addon-content,
.dj-location-line p,
.sppb-addon-content.dj-location-line,
p.dj-location-line,
span.dj-location-line {
    position: relative;
    isolation: isolate;
    display: inline-block;
    max-width: min(100%, 760px);
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    color: #fff;

    background: linear-gradient(
        100deg,
        #ffffff 0%,
        #7ee7ff 20%,
        #ffffff 39%,
        #ff5fe0 58%,
        #ffd6fb 76%,
        #ffffff 100%
    );

    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: none;

    animation: dj-location-shimmer 8s ease-in-out infinite;
}

.dj-location-line-dark .sppb-addon-content,
.dj-location-line-dark p,
.sppb-addon-content.dj-location-line-dark,
p.dj-location-line-dark,
span.dj-location-line-dark {

    font-family: var(--dj-font-heading) !important;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: center;

    display: inline-block;
    max-width: min(100%, 760px);
    margin: 0 auto;
    padding: 0;

    background: linear-gradient(
        100deg,
        #0d0d0d 0%,
        #007fb6 22%,
        #101010 40%,
        #c00086 62%,
        #5a0048 82%,
        #0d0d0d 100%
    );

    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: dj-location-shimmer 8s ease-in-out infinite;
}

@keyframes dj-location-shimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* ========================================
   FLIP BOX PRO: TITEL LESBAR MACHEN
   ======================================== */

.dj-flip-readable,
.dj-flip-readable .sppb-addon-content {
    border-radius: 8px;
}

.dj-flip-readable i,
.dj-flip-readable .fa,
.dj-flip-readable .fas,
.dj-flip-readable .fa-solid,
.dj-flip-readable .sppb-flipbox-front-title {
    color: #fff !important;
    text-shadow:
        0 2px 7px rgba(0, 0, 0, 0.9),
        0 0 14px rgba(0, 0, 0, 0.78);
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.74));
}

.dj-flip-readable .sppb-flipbox-front-title {
    font-family: var(--dj-font-heading) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.45);
}

.dj-flip-readable .sppb-addon-title {
    color: #fff !important;
    font-family: var(--dj-font-heading) !important;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    text-align: center;
    text-shadow:
        0 2px 0 rgba(0, 0, 0, 0.7),
        0 3px 8px rgba(0, 0, 0, 0.95),
        0 0 18px rgba(0, 0, 0, 0.82),
        0 0 24px rgba(53, 218, 255, 0.2);
    -webkit-text-stroke: 0.35px rgba(0, 0, 0, 0.55);
}

.dj-flip-readable + .sppb-addon-button-group,
.dj-flip-readable ~ .sppb-addon-button-group,
.dj-flip-readable + .sppb-addon-button,
.dj-flip-readable ~ .sppb-addon-button {
    margin-top: 20px;
}

@media (max-width: 767.98px) {

    .dj-flip-readable .sppb-addon-title,
    .dj-flip-readable .sppb-flipbox-front-title {
        line-height: 1.08;
    }
}


@media (pointer: fine) and (min-width: 1200px) {

    body {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cg fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5a3 3 0 0 1 6 0v8a3 3 0 0 1-6 0V5Z' fill='%23141414'/%3E%3Cpath d='M7 12a7 7 0 0 0 14 0M14 19v5M10 24h8'/%3E%3C/g%3E%3C/svg%3E") 14 14, auto;
    }

    a,
    button,
    .sppb-btn,
    .btn,
    input[type="submit"],
    #sp-page-builder a,
    #sp-main-body a,
    #sp-bottom a,
    #sp-footer a {
        cursor: pointer !important;
    }
}


/* ========================================
   SCROLL-PAIR-EFFEKT: TEXT + BILD
   ======================================== */

.dj-scroll-pair {
    --dj-scroll-pair-distance: 110px;
    --dj-scroll-pair-progress: 0;
    --dj-scroll-pair-left-x: calc(var(--dj-scroll-pair-distance) * -1);
    --dj-scroll-pair-right-x: var(--dj-scroll-pair-distance);

    overflow: hidden;
}

.dj-scroll-pair-left,
.dj-scroll-pair-right {
    transition:
        transform 0.18s linear,
        opacity 0.3s ease;
    will-change: transform;
}

.dj-scroll-pair-ready .dj-scroll-pair-left {
    transform: translate3d(var(--dj-scroll-pair-left-x), 0, 0);
}

.dj-scroll-pair-ready .dj-scroll-pair-right {
    transform: translate3d(var(--dj-scroll-pair-right-x), 0, 0);
}

.dj-scroll-pair-ready.dj-scroll-pair-centered .dj-scroll-pair-left,
.dj-scroll-pair-ready.dj-scroll-pair-centered .dj-scroll-pair-right {
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1199.98px) {

    .dj-scroll-pair {
        --dj-scroll-pair-left-x: 0 !important;
        --dj-scroll-pair-right-x: 0 !important;

        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .dj-scroll-pair > .sppb-row-container,
    .dj-scroll-pair > .sppb-container-inner,
    .dj-scroll-pair > .sppb-row,
    .dj-scroll-pair .sppb-row,
    .dj-scroll-pair .sppb-column,
    .dj-scroll-pair .sppb-column-addons {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .dj-scroll-pair .dj-scroll-pair-left,
    .dj-scroll-pair .dj-scroll-pair-right,
    .dj-scroll-pair-ready .dj-scroll-pair-left,
    .dj-scroll-pair-ready .dj-scroll-pair-right,
    .dj-scroll-pair-ready.dj-scroll-pair-centered .dj-scroll-pair-left,
    .dj-scroll-pair-ready.dj-scroll-pair-centered .dj-scroll-pair-right {
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
        opacity: 1 !important;
    }
}

/* ========================================
   SP PAGE BUILDER: VERTIKAL ZENTRIEREN
   ======================================== */

.dj-vcenter,
.dj-vcenter > .sppb-row-container,
.dj-vcenter > .sppb-container-inner,
.dj-vcenter > .sppb-row,
.sppb-row.dj-vcenter,
.sppb-column.dj-vcenter,
.sppb-column.dj-vcenter > .sppb-column-addons {
    min-height: inherit;
}

.sppb-section.dj-vcenter,
.sppb-row.dj-vcenter,
.sppb-column.dj-vcenter {
    display: flex !important;
}

.sppb-section.dj-vcenter {
    flex-direction: column;
}

.sppb-section.dj-vcenter > .sppb-row-container,
.sppb-section.dj-vcenter > .sppb-container-inner,
.sppb-section.dj-vcenter > .sppb-row,
.sppb-row.dj-vcenter {
    flex: 1 1 auto;
    width: 100%;
    min-height: inherit;
}

.sppb-section.dj-vcenter > .sppb-row-container,
.sppb-section.dj-vcenter > .sppb-container-inner {
    display: flex !important;
    flex-direction: column;
}

.sppb-section.dj-vcenter > .sppb-row-container > .sppb-row,
.sppb-section.dj-vcenter > .sppb-container-inner > .sppb-row,
.sppb-section.dj-vcenter > .sppb-row {
    flex: 1 1 auto;
    min-height: inherit;
}

.dj-vcenter > .sppb-row,
.sppb-section.dj-vcenter .sppb-row,
.sppb-row.dj-vcenter {
    align-items: stretch !important;
}

.dj-vcenter .sppb-column,
.sppb-column.dj-vcenter {
    display: flex !important;
}

.dj-vcenter .sppb-column-addons,
.sppb-column.dj-vcenter > .sppb-column-addons {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    width: 100%;
}

.dj-vcenter-center .sppb-column-addons,
.sppb-column.dj-vcenter-center > .sppb-column-addons {
    align-items: center;
    text-align: center;
}


/* ========================================
   HEADER-/FOOTER-FEINSCHLIFF
   ======================================== */

#sp-rightmenu ul.mod-menu > li > a[href*="kontakt"],
#sp-rightmenu ul.mod-menu > li > a[href*="Kontakt"],
#sp-leftmenu ul.mod-menu > li > a[href*="kontakt"],
#sp-leftmenu ul.mod-menu > li > a[href*="Kontakt"] {
    min-height: 0;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    box-shadow:
        0 0 0 1px rgba(53, 218, 255, 0.12),
        0 10px 26px rgba(0, 0, 0, 0.24);
}

#sp-rightmenu ul.mod-menu > li > a[href*="kontakt"]::after,
#sp-rightmenu ul.mod-menu > li > a[href*="Kontakt"]::after,
#sp-leftmenu ul.mod-menu > li > a[href*="kontakt"]::after,
#sp-leftmenu ul.mod-menu > li > a[href*="Kontakt"]::after {
    display: none;
}

#sp-rightmenu ul.mod-menu > li > a[href*="kontakt"]:hover,
#sp-rightmenu ul.mod-menu > li > a[href*="Kontakt"]:hover,
#sp-leftmenu ul.mod-menu > li > a[href*="kontakt"]:hover,
#sp-leftmenu ul.mod-menu > li > a[href*="Kontakt"]:hover {
    opacity: 1;
    color: #111;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.35);
    text-shadow: none;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.34),
        0 10px 28px rgba(0, 0, 0, 0.28),
        0 0 26px rgba(255, 57, 214, 0.2);
}

#sp-page-builder .fa,
#sp-page-builder .fas,
#sp-page-builder .fab,
#sp-page-builder .fa-solid,
#sp-page-builder .fa-brands,
#sp-page-builder .sppb-icon,
#sp-page-builder .sppb-icon-container,
#sp-page-builder [class*="sppb-icon"],
#sp-page-builder [class*="addon-feature"] i,
#sp-page-builder [class*="feature"] i,
#sp-main-body .fa,
#sp-main-body .fas,
#sp-main-body .fab,
#sp-main-body .fa-solid,
#sp-main-body .fa-brands,
#sp-main-body .sppb-icon,
#sp-main-body .sppb-icon-container,
#sp-main-body [class*="sppb-icon"],
#sp-main-body [class*="addon-feature"] i,
#sp-main-body [class*="feature"] i {
    color: #000 !important;
    background: none !important;
    background-size: auto;
    -webkit-background-clip: initial;
    background-clip: initial;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.34);
    -webkit-text-fill-color: #000;
    animation: dj-icon-white-glow 2.8s ease-in-out infinite;
}

@keyframes dj-icon-white-glow {
    0%,
    100% {
        text-shadow:
            0 0 7px rgba(255, 255, 255, 0.38),
            0 0 16px rgba(255, 255, 255, 0.24);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 12px rgba(255, 255, 255, 0.88),
            0 0 26px rgba(255, 255, 255, 0.62),
            0 0 42px rgba(255, 255, 255, 0.32);
        transform: scale(1.035);
    }
}

#sp-page-builder svg,
#sp-main-body svg {
    color: #4520a0;
}

#sp-page-builder svg path,
#sp-page-builder svg circle,
#sp-page-builder svg rect,
#sp-page-builder svg polygon,
#sp-page-builder svg line,
#sp-page-builder svg polyline,
#sp-main-body svg path,
#sp-main-body svg circle,
#sp-main-body svg rect,
#sp-main-body svg polygon,
#sp-main-body svg line,
#sp-main-body svg polyline {
    stroke: currentColor;
}

#sp-page-builder .sppb-addon-content a:not(.sppb-btn):not(.btn),
#sp-main-body .sppb-addon-content a:not(.sppb-btn):not(.btn),
#sp-main-body p a,
#sp-main-body li a {
    color: inherit;
    text-decoration-color: rgba(53, 218, 255, 0.38);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
    transition:
        color 0.22s ease,
        text-decoration-color 0.22s ease,
        text-shadow 0.22s ease;
}

#sp-page-builder .sppb-addon-content a:not(.sppb-btn):not(.btn):hover,
#sp-main-body .sppb-addon-content a:not(.sppb-btn):not(.btn):hover,
#sp-main-body p a:hover,
#sp-main-body li a:hover {
    color: #fff;
    text-decoration-color: rgba(255, 57, 214, 0.72);
    text-shadow:
        0 0 10px rgba(53, 218, 255, 0.28),
        0 0 16px rgba(255, 57, 214, 0.18);
}

#sp-bottom {
    background: rgba(18, 18, 18, 0.96);
}

#sp-bottom .container-inner::after,
#sp-bottom .container-inner:after {
    display: none !important;
    content: none !important;
}

#sp-bottom .row {
    align-items: flex-start;
}

#sp-bottom1,
#sp-bottom2,
#sp-bottom3,
#sp-bottom4 {
    margin-bottom: 0;
}

#sp-bottom .sp-module {
    margin-bottom: 0;
}

#sp-bottom .sp-module ul.mod-menu,
#sp-bottom .sp-module ul.menu,
#sp-bottom .sp-module ul.mod-list {
    display: block !important;
    max-width: none !important;
    column-count: auto !important;
    columns: auto !important;
    flex-wrap: nowrap !important;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-bottom .sp-module ul.mod-menu > li,
#sp-bottom .sp-module ul.menu > li,
#sp-bottom .sp-module ul.mod-list > li {
    display: block !important;
    width: auto;
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

#sp-bottom .sp-module ul.mod-menu > li > a,
#sp-bottom .sp-module ul.menu > li > a,
#sp-bottom .sp-module ul.mod-list > li > a {
    display: inline-block;
    color: #fff;
    font-family: var(--dj-font-heading) !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 28px;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease,
        text-shadow 0.22s ease;
}

#sp-bottom1 .menu > li > a,
#sp-bottom2 .menu > li > a,
#sp-bottom3 .menu > li > a,
#sp-bottom4 .menu > li > a,
#sp-bottom1 .mod-menu > li > a,
#sp-bottom2 .mod-menu > li > a,
#sp-bottom3 .mod-menu > li > a,
#sp-bottom4 .mod-menu > li > a,
#sp-bottom1 .mod-list > li > a,
#sp-bottom2 .mod-list > li > a,
#sp-bottom3 .mod-list > li > a,
#sp-bottom4 .mod-list > li > a {
    font-size: 16px !important;
    line-height: 28px !important;
}

#sp-bottom .sp-module ul.mod-menu > li > a:hover,
#sp-bottom .sp-module ul.menu > li > a:hover,
#sp-bottom .sp-module ul.mod-list > li > a:hover,
#sp-bottom .sp-module ul.mod-menu > li.active > a,
#sp-bottom .sp-module ul.menu > li.active > a,
#sp-bottom .sp-module ul.mod-list > li.active > a {
    color: #fff;
    opacity: 1;
    transform: translateX(3px);
    text-shadow:
        0 0 12px rgba(53, 218, 255, 0.36),
        0 0 16px rgba(255, 57, 214, 0.18);
}

#sp-bottom .sp-module ul.mod-menu ul,
#sp-bottom .sp-module ul.menu ul,
#sp-bottom .sp-module ul.mod-list ul {
    display: block !important;
    margin: 8px 0 0;
    padding: 0 0 0 0;
    list-style: none;
}

#sp-bottom .sp-module ul.mod-menu ul li,
#sp-bottom .sp-module ul.menu ul li,
#sp-bottom .sp-module ul.mod-list ul li {
    display: block;
    margin: 0 0 6px;
    padding: 0;
}

#sp-bottom .sp-module ul.mod-menu ul a,
#sp-bottom .sp-module ul.menu ul a,
#sp-bottom .sp-module ul.mod-list ul a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

#sp-bottom .sp-module ul.mod-menu ul a:hover,
#sp-bottom .sp-module ul.menu ul a:hover,
#sp-bottom .sp-module ul.mod-list ul a:hover,
#sp-bottom .sp-module ul.mod-menu ul li.active > a,
#sp-bottom .sp-module ul.menu ul li.active > a,
#sp-bottom .sp-module ul.mod-list ul li.active > a {
    color: rgba(255, 255, 255, 0.96);
    opacity: 1;
    transform: translateX(3px);
}

#sp-bottom .menu-toggler {
    display: none;
}

@media (min-width: 992px) {

    #sp-bottom1,
    #sp-bottom2,
    #sp-bottom3,
    #sp-bottom4 {
        flex: 0 0 auto;
        width: auto;
        min-width: 170px;
        max-width: 260px;
    }

    #sp-bottom2 {
        margin-left: 48px;
    }
}

@media (max-width: 991.98px) {

    #sp-bottom1,
    #sp-bottom2,
    #sp-bottom3,
    #sp-bottom4 {
        margin-bottom: 28px;
    }
}

#sp-footer1 ul.mod-menu,
#sp-footer1 ul.menu,
#sp-footer1 ul.menu-nav,
#sp-footer1 ul.mod-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-footer1 ul.mod-menu > li,
#sp-footer1 ul.menu > li,
#sp-footer1 ul.menu-nav > li,
#sp-footer1 ul.mod-list > li {
    display: block;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

#sp-footer1 ul.mod-menu > li > a,
#sp-footer1 ul.menu > li > a,
#sp-footer1 ul.menu-nav > li > a,
#sp-footer1 ul.mod-list > li > a {
    display: inline-block;
    color: #fff;
    font-family: var(--dj-font-heading) !important;
    font-weight: 600;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease,
        text-shadow 0.22s ease;
}

#sp-footer1 ul.mod-menu > li > a:hover,
#sp-footer1 ul.menu > li > a:hover,
#sp-footer1 ul.menu-nav > li > a:hover,
#sp-footer1 ul.mod-list > li > a:hover {
    color: #fff;
    opacity: 1;
    transform: translateX(3px);
    text-shadow:
        0 0 12px rgba(53, 218, 255, 0.32),
        0 0 16px rgba(255, 57, 214, 0.16);
}

#sp-footer1 ul.mod-menu ul,
#sp-footer1 ul.menu ul,
#sp-footer1 ul.menu-nav ul,
#sp-footer1 ul.mod-list ul {
    display: block;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

#sp-footer1 ul.mod-menu ul li,
#sp-footer1 ul.menu ul li,
#sp-footer1 ul.menu-nav ul li,
#sp-footer1 ul.mod-list ul li {
    display: block;
    margin: 0 0 6px;
    padding: 0;
}

#sp-footer1 ul.mod-menu ul a,
#sp-footer1 ul.menu ul a,
#sp-footer1 ul.menu-nav ul a,
#sp-footer1 ul.mod-list ul a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
}

#sp-footer1 ul.mod-menu ul a:hover,
#sp-footer1 ul.menu ul a:hover,
#sp-footer1 ul.menu-nav ul a:hover,
#sp-footer1 ul.mod-list ul a:hover {
    color: rgba(255, 255, 255, 0.96);
    opacity: 1;
    transform: translateX(3px);
}

#sp-footer2 ul.mod-menu,
#sp-footer2 ul.menu,
#sp-footer2 ul.menu-nav,
#sp-footer2 ul.mod-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-footer2 ul.mod-menu > li,
#sp-footer2 ul.menu > li,
#sp-footer2 ul.menu-nav > li,
#sp-footer2 ul.mod-list > li {
    display: inline-flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

#sp-footer2 ul.mod-menu > li > a,
#sp-footer2 ul.menu > li > a,
#sp-footer2 ul.menu-nav > li > a,
#sp-footer2 ul.mod-list > li > a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        text-shadow 0.22s ease;
}

#sp-footer2 ul.mod-menu > li > a:hover,
#sp-footer2 ul.menu > li > a:hover,
#sp-footer2 ul.menu-nav > li > a:hover,
#sp-footer2 ul.mod-list > li > a:hover {
    color: #fff;
    opacity: 1;
    text-shadow:
        0 0 10px rgba(53, 218, 255, 0.28),
        0 0 14px rgba(255, 57, 214, 0.16);
}

@media (max-width: 767.98px) {

    #sp-footer1,
    #sp-footer2 {
        text-align: center;
    }

    #sp-footer2 ul.mod-menu,
    #sp-footer2 ul.menu,
    #sp-footer2 ul.menu-nav,
    #sp-footer2 ul.mod-list {
        justify-content: center;
    }
}


/* ========================================
   SP PAGE BUILDER FORM BUILDER
   ======================================== */

#sp-page-builder .sppb-form-builder-form label,
#sp-main-body .sppb-form-builder-form label,
#sp-page-builder .sppb-addon-form-builder-form label,
#sp-main-body .sppb-addon-form-builder-form label,
#sp-page-builder .sppb-form-check-label,
#sp-main-body .sppb-form-check-label {
    text-transform: none !important;
    letter-spacing: 0 !important;
}

#sp-page-builder .form-builder-checkbox-content,
#sp-main-body .form-builder-checkbox-content {
    position: relative;
    z-index: 2;
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 24px !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: auto !important;
}

#sp-page-builder .form-builder-checkbox-content *,
#sp-main-body .form-builder-checkbox-content * {
    pointer-events: auto !important;
}

#sp-page-builder .form-builder-checkbox-content input[type="checkbox"],
#sp-main-body .form-builder-checkbox-content input[type="checkbox"] {
    position: static !important;
    display: inline-block !important;
    flex: 0 0 18px;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    margin: 5px 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    appearance: auto;
    -webkit-appearance: checkbox;
    accent-color: #b20b88;
    cursor: pointer;
}

#sp-page-builder .sppb-form-check,
#sp-main-body .sppb-form-check {
    min-height: 24px !important;
    height: auto !important;
    overflow: visible !important;
}

#sp-page-builder .sppb-form-check input[type="checkbox"],
#sp-main-body .sppb-form-check input[type="checkbox"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    accent-color: #b20b88;
}

#sp-page-builder .form-builder-checkbox-content label,
#sp-main-body .form-builder-checkbox-content label,
#sp-page-builder .sppb-addon-form-builder-form .form-builder-checkbox-content label,
#sp-main-body .sppb-addon-form-builder-form .form-builder-checkbox-content label {
    display: inline-flex !important;
    align-items: center;
    flex: 0 1 auto;
    gap: 7px;
    margin: 0 !important;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-transform: none !important;
    pointer-events: auto !important;
    cursor: pointer;
}

#sp-page-builder .sppb-form-check-label,
#sp-main-body .sppb-form-check-label {
    display: inline-block !important;
    flex: 1 1 auto;
    margin: 0 !important;
    padding-left: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-transform: none !important;
    letter-spacing: 0 !important;
    pointer-events: auto !important;
    cursor: pointer;
}

#sp-page-builder .form-builder-checkbox-content label a,
#sp-main-body .form-builder-checkbox-content label a,
#sp-page-builder .sppb-form-check-label a,
#sp-main-body .sppb-form-check-label a {
    color: #fff;
    text-decoration-color: rgba(53, 218, 255, 0.5);
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   TESTIMONIALS - LANGE TEXTE BEGRENZEN
======================================== */

.sppb-testimonial-carousel-message {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.22) transparent;
}

/* Chrome / Edge / Safari */
.sppb-testimonial-carousel-message::-webkit-scrollbar {
    width: 6px;
}

.sppb-testimonial-carousel-message::-webkit-scrollbar-track {
    background: transparent;
}

.sppb-testimonial-carousel-message::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.18);
    border-radius: 999px;
    transition: background .25s ease;
}

.sppb-testimonial-carousel-message:hover::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.45);
}

.sppb-testimonial-carousel-message::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,.65);
}

.sppb-testimonial-carousel-message {
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        #000 0%,
        #000 88%,
        transparent 100%
    );
}

/* ========================================
   TESTIMONIAL - BILD + NAME NEBENEINANDER
======================================== */

.sppb-testimonial-carousel-content-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 24px;
}

.sppb-testimonial-carousel-img-wrap {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

.sppb-testimonial-carousel-name-designation {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex: 1 1 auto;
    width: auto !important;
    margin: 0 !important;
}

.sppb-testimonial-carousel-name {
    margin: 0 0 4px !important;
}

.sppb-testimonial-carousel-designation {
    margin: 0 !important;
}

/* ========================================
   BUTTON-GRUPPEN: ICON OBEN
======================================== */

.dj-button-icon-top .sppb-btn,
.sppb-btn.dj-button-icon-top {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.dj-button-icon-top .sppb-btn i,
.sppb-btn.dj-button-icon-top i {
    margin: 0 !important;
    line-height: 1;
}

/* ========================================
   MOBILE/TABLET: HINTERGRUNDBILDER OHNE FIXED
======================================== */

@media (max-width: 1199.98px) {

    #sp-page-builder .sppb-section,
    #sp-page-builder .sppb-row,
    #sp-page-builder .sppb-column,
    #sp-main-body .sppb-section,
    #sp-main-body .sppb-row,
    #sp-main-body .sppb-column {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }
}

@supports (-webkit-touch-callout: none) {

    #sp-page-builder .sppb-section,
    #sp-page-builder .sppb-row,
    #sp-page-builder .sppb-column,
    #sp-main-body .sppb-section,
    #sp-main-body .sppb-row,
    #sp-main-body .sppb-column {
        background-attachment: scroll !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }
}

/* ========================================
   OPENSTREETMAP: DUNKLE DARSTELLUNG
======================================== */

.dj-dark-map iframe,
.dj-dark-map .leaflet-tile {
    filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.82);
}

.dj-dark-map .leaflet-container {
    background: #111111;
}
