@import url('https://fonts.verwaltungsportal.de/import/?family=Roboto:300,300i,500,500i,700,700i');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    scrollbar-color: #f8fb10 #ffffff;
    scrollbar-width: thin;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #222222;
    background:
        url('../img/deko1.png') top 195px center no-repeat,
        url('../img/deko2.png') bottom center no-repeat,
        #6d0c06;
    font-size: clamp(1rem, 1vw, 1.125rem);
    /* 1rem = 16px */
    line-height: 1.5;
}

a {
    color: #a60d1f;
}

a:is(:hover, :focus) {
    color: #a60d1f;
    text-decoration: underline;
}

b,
strong {
    font-weight: 500;
}

/* ----------------------------------------------- compact ----------------------------------------------- */

.compact {
    padding: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

@media (min-width: 768px) {
    .compact {
        padding: 20px clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
        margin-top: clamp(30px, 5vw, 60px);
        margin-bottom: clamp(30px, 5vw, 60px);
    }
}

/* ----------------------------------------------- topbar ----------------------------------------------- */

.topbarMobil,
#topbar {
    padding: 10px 0;
}

.topbarMobil {
    row-gap: 10px;
}

/* ----------------------------------------------- logo ----------------------------------------------- */

.logo {
    display: inline-block;
}

.logo img {
    display: block;
}

@media (max-width: 991px) {
    .logo img {
        max-width: calc(100vw - 120px);
        width: 100%;
    }
}

@media (min-width: 992px) {
    .logo {
        margin-top: 10px;
        width: auto;
    }
}

/* #region ------------------------------------- navigation --------------------------------------------- */

.navbar-nav {
    background-color: #ffffff;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        display: block;
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        cursor: pointer;
        background-color: #ffffff;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #a60d1f;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        transition: transform 200ms linear, opacity 200ms linear;
        display: block;
    }

    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    #burgerButton[aria-expanded="true"]::before {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButton::before {
        top: 24px;
        content: "";
    }

    #burgerButton::after {
        top: 32px;
        content: "";
    }

    .navbar-nav {
        margin: 20px 0;
    }

    .navbar-collapse {
        width: calc(100% - 90px);
        max-width: 300px;
        top: 0;
        background: #ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
    }

    .dropdown-toggle-button-wrapper {
        top: 5px;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 2px;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    .navbar-nav {
        border-top: 2px solid #a60d1f;
    }

    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .is-sticky .navbar-nav {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
    }

    nav.horizontally .navbar-nav>li {
        flex-grow: 1;
    }

    nav.horizontally .navbar-nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: block !important;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms linear;
    }

    nav.horizontally .navbar-nav [class*="secondlevel"]>ul {
        left: 100%;
        top: 0;
    }

    nav.horizontally .navbar-nav li {
        position: relative;
    }

    nav.horizontally .navbar-nav li:is(.open, :hover)>ul,
    nav.horizontally .navbar-nav li.open:focus-within>ul,
    nav.horizontally .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
        pointer-events: auto !important;
        opacity: 1 !important;
        visibility: visible;
    }

    nav.horizontally .navbar-nav li.open>ul {
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden;
    }

    nav.horizontally .navbar-nav li:is(:hover, :focus)>ul {
        z-index: 1003;
    }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
    color: #1a1a1a;
    font-weight: 500;
    text-align: left;
    padding: 10px 15px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    nav.horizontally a[class*="toplevel"].dropdown-toggle {
        padding-right: 35px;
    }
}

@media (min-width: 992px) {
    nav.horizontally a[class*="toplevel"] {
        padding: 17px;
        text-align: center;
    }
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within)>a,
nav.horizontally li[class*="toplevel"]>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open>a,
nav.horizontally li[class*="toplevel"].open>a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"]>a,
nav.horizontally li[class*="toplevel"][class*="_over"]>a:is(:hover, :focus) {
    color: #ffffff;
    background-color: #a60d1f;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    padding: 12px 0;
    background: #ffffff;
}

@media (min-width: 992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding: 20px 0;
        background: url('../img/wasserzeichgen-logo.png') bottom 6px right no-repeat, #ffffff;
    }

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 0;
    }

    nav.horizontally [class*="secondlevel"]>ul {
        margin-left: 10px;
        margin-top: -20px;
    }

    nav.horizontally :is([class*="secondlevel"], [class*="thirdlevel"]):before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="secondlevel"]:before {
        height: 0;
        left: 0;
        right: 0;
        top: -0;
    }

    nav.horizontally [class*="thirdlevel"]::before {
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #1a1a1a;
    font-weight: 300;
    text-align: left;
    padding: 4px 30px;
    background-color: transparent;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width:991px) {
    nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
        padding-right: 35px;
    }
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 9px;
    display: block;
    width: 7px;
    height: 7px;
    background-color: #a60d1f;
    opacity: 0;
    transition: opacity 300ms linear;
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus) {
    color: #a60d1f;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::before {
    opacity: 1;
}

/* #endregion ---------------------------------- navigation --------------------------------------------- */

/* #region --------------------------------------- banner ----------------------------------------------- */

#slider,
.slider-wrapper {
    max-height: clamp(300px, 44vw, 430px);
    overflow: hidden;
    height: 100%;
}

@media (min-width: 768px) {
    #headerpic .nivo-directionNav a {
        top: auto;
        bottom: 12px;
    }

    #headerpic .nivo-controlNav {
        pointer-events: none;
    }

    #headerpic .nivo-controlNav a {
        pointer-events: auto;
    }
}

@media (min-width: 992px) {
    #headerpic .nivo-directionNav a {
        bottom: 18px;
    }
}

#headerpic {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

#bannerOverlay {
    margin: 0;
    font-weight: 700;
    color: #a60d1f;
    padding: 15px 0;
    font-size: clamp(1.25rem, 3vw, 2.25rem);
    line-height: 1.3;
}

@media (max-width: 767px) {
    #bannerOverlay {
        border-bottom: 2px solid #f5f5f5;
    }
}

@media (min-width: 768px) {
    #bannerOverlay {
        padding: clamp(15px, 2vw, 30px) 35px;
        background-color: rgba(255, 255, 255, 0.9);
        position: absolute;
        left: 0;
        bottom: 50px;
        z-index: 53;
        border: none;
    }

    #bannerOverlay .row {
        display: block;
    }
}

@media (min-width: 992px) {
    #bannerOverlay {
        bottom: 70px;
    }
}

.slider-mask {
    display: none;
}

/* #endregion ------------------------------------ banner ----------------------------------------------- */

/* ------------------------------------------------ content ----------------------------------------------- */

#content {
    text-align: left;
    padding-top: 30px;
    padding-bottom: clamp(30px, 6vw, 60px);
}

@media (min-width: 768px) {
    #content.md-gutter {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (min-width: 992px) {
    #contentCol {
        padding: clamp(20px, 3vw, 30px) clamp(25px, 4vw, 45px) 0 clamp(20px, 4vw, 45px);
    }
}

/* ---------------------------------------------- aside tab --------------------------------------------- */

#asideTab {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    #asideTab {
        padding-top: 30px;
    }
}

#asideTab .tab {
    background: #f5f5f5 linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, #a60d1f 50%) top right / 180px 180px no-repeat;
    padding: 25px;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
    background-color: transparent;
    position: relative;
}

#asideTab .tab::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 6px solid #f5f5f5;
}

#asideTab :is(h1, h2, h3, h4, h5, h6) {
    font-size: 1.375rem;
    color: #a60d1f;
}

#asideTab .tab_link_title a {
    color: #1d1d1d;
    font-weight: 500;
    font-size: 1.125rem;
}

#asideTab .tab_link_mandat a {
    color: #1d1d1d;
}

#asideTab .tab_link_mehr {
    font-size: 0;
}

#asideTab .tab_link_mehr a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    color: #ffffff;
    padding: 8px 55px 8px 20px;
    background: #a60d1f;
}

#asideTab .tab_link_mehr a::after {
    content: "\00BB";
    display: block;
    position: absolute;
    right: 0;
    top: 9px;
    bottom: 9px;
    width: 35px;
    text-align: center;
    font-size: 26px;
    line-height: 18px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
}

#asideTab .tab_link_mehr a:hover,
#asideTab .tab_link_mehr a:focus {
    background: #6d0c06;
}

/* #region ------------------------------------ news -------------------------------------------- */

#news {
    padding-bottom: clamp(40px, 4vw, 60px);
}

@media (min-width: 768px) {
    #news {
        font-size: 1.125rem;
    }
}

#news {
    padding-left: 25px;
    padding-right: 25px;
}

#news .tab_link_entries {
    margin-bottom: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {

    #news .tab_link_entries {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* news events button */

#news .tab_link_mehr {
    color: transparent;
    font-size: 0;
}

#news .tab_link_mehr a {
    background: #a60d1f;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    padding: 8px 55px 8px 20px;
    position: relative;
    text-decoration: none;
    display: inline-block;
}

#news .tab_link_mehr a::after {
    content: "\00BB";
    display: block;
    position: absolute;
    right: 0;
    top: 9px;
    bottom: 9px;
    width: 35px;
    text-align: center;
    font-size: 26px;
    line-height: 18px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

#news .tab_link_mehr a:is(:hover, :focus) {
    background: #6d0c06;
    color: #ffffff;
}

/* news */

#news h2 {
    font-size: 1.875rem;
    margin-bottom: clamp(15px, 4vw, 30px);
}

#news .tab_link_entry {
    padding: 70px 20px 20px 20px;
    background: #ffffff;
    position: relative;
    min-height: 106px;
    display: flex;
    align-items: center;
    border: 6px solid #f5f5f5;
}

@media (min-width:576px) {
    #news .tab_link_entry {
        padding: 20px 30px 20px 135px;
    }
}

#news .tab_link_title a {
    color: #404040;
    font-weight: 400;
    line-height: 1.3;
    display: inline-block;
}

#news .tab_link_date {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 400;
    background: #a60d1f url('../img/kalender-icon.png') top 8px center no-repeat;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    padding: 30px 15px 10px 15px;
}

@media (min-width:576px) {
    #news .tab_link_date {
        right: auto;
        bottom: -6px;
        width: 105px;
        padding: 65px 0 20px 0;
        background-position: top 25px center;
    }
}


/* #endregion --------------------------------- news -------------------------------------------- */

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
    color: #a60d1f;
    font-weight: 500;
    line-height: 1.2;
    font-family: "Roboto", sans-serif;
}

h1,
.h1,
.legacy_h1 {
    font-size: clamp(2rem, 4vw, 2.25rem);
}

h2,
.h2,
.legacy_h2 {
    font-size: clamp(1.875rem, 3vw, 2rem);
}

h3,
.h3,
.legacy_h3 {
    font-size: 1.75rem;
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
    font-size: 1.625rem;
}

h5,
.h5,
.legacy_h5 {
    font-size: 1.5rem;
}

h6,
.h6,
.legacy_h6 {
    font-size: 1.375rem;
}

/* --------------------------------------------- konkaktFooter -------------------------------------------- */

#konkaktFooter {
    font-size: 1rem;
    padding: 30px 0;
    color: #ffffff;
    background: #a60d1f;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    #konkaktFooter>.row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        bottom: 0;
        right: 85px;
        top: 0;
        margin: auto;
        width: 78px;
        height: 200px;
        background: url('../img/violinschluessel.png') center no-repeat;
    }
}

@media (min-width: 992px) {
    #konkaktFooter {
        padding: 30px 55px;
    }
}

#konkaktFooter :is(h1, h2, h3, h4, h5, h6, .tabHeadline) {
    color: #ffffff;
    font-weight: 500;
}

#konkaktFooter .tabHeadline {
    font-size: 1.625rem;
}

#konkaktFooter a {
    color: #ffffff;
    text-decoration: underline;
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
    padding-top: 20px;
}

#f5>.row {
    row-gap: 20px;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a {
    color: #1a1a1a;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #a60d1f;
    text-decoration: underline;
}

#innerfooter li+li::before {
    content: "";
    margin: 0 6px;
}

@media (min-width: 992px) {
    #innerfooter li+li::before {
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    #innerfooter li {
        display: block;
        text-align: center;
        padding: 5px;
        margin: 0;
    }

    #innerfooter li+li::before {
        display: none;
    }
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

#vernetzt {
    gap: 12px;
    text-align: right;
    font-size: 0.9375rem;
    color: #1a1a1a;
    line-height: 1.3;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}