/* Fonts */


/* cinzel-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2'); 
}
/* pt-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/pt-sans-v18-latin-regular.woff2') format('woff2');
}
/* pt-sans-700 - latin */
@font-face {
  font-display: swap; 
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/pt-sans-v18-latin-700.woff2') format('woff2');
}

/* Farbpalette */
:root {
  --anthrazit:    #212529;
  --petrol:       #73B5BF;
  --stahlblau:    #7385BF;
  --graublau:     #A6B4BF;
  --mintgruen:    #73BFB0;
  --blaugrau:     #729CBE;
  --weiss:        #FFFFFF;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--anthrazit);
    scroll-behavior: smooth;
    background-color: var(--weiss);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*:focus, .btn.focus, .btn:focus, button:focus {
    outline: 0 none;
    border: 0;
    border-color: transparent;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)!important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)!important;
}
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--weiss);
    border-radius: 0px
}
::-webkit-scrollbar-thumb {
    background: var(--mintgruen);
    border-radius: 3px
}
::selection {
    background: var(--mintgruen);
    color: var(--weiss);
}
::-moz-selection {
    background: var(--mintgruen);
    color: var(--weiss);
}

a {
    color: var(--anthrazit);
    text-decoration: none;
}
a:hover {
    color: var(--blaugrau);
}
figure {
    margin: 0;
    padding: 0;
}
strong, .strong {
    font-weight: 700;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6{
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

h1, .h1, h2, .h2 {
    font-size: 40px;
    line-height: 50px;
}

.video-hero h1 {
    font-size: 80px;
    line-height: 84px;
}

.video-hero h2 {
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

h3, .h3, h4, .h4, h5, .h5, h6, .h6, .loud {
    font-size: 24px;
    line-height: 28px;
}

.stern,
.sterntop {
    position: relative;
    padding-left: 90px;
    background-image: url("/images/stern.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 70px;
    min-height: 70px;
}
.sterntop {
    padding-left: 0px;
    padding-top: 90px;;
    background-position: top center;
    min-height: 70px;
}


.navbar-brand {
    position: relative;
    z-index: 500;
}



@media screen and (max-width: 1399px) {
    .video-hero h1 {
        font-size: 50px;
        line-height: 54px;
    }
    h1, .h1, h2, .h2 {
        font-size: 34px;
        line-height: 42px;
    }
    h3, .h3, h4, .h4, h5, .h5, h6, .h6, .loud {
        font-size: 20px;
        line-height: 24px;
    }
}


@media screen and (max-width: 992px) {
    .video-hero h1 {
        font-size: 38px;
        line-height: 42px;
    }
    h1, .h1, h2, .h2 {
        font-size: 22px;
        line-height: 26px;
    }
    h3, .h3, h4, .h4, h5, .h5, h6, .h6, .loud {
        font-size: 18px;
        line-height: 22px;
    }

    .stern,
    .sterntop {
        position: relative;
        padding-left: 55px;
        background-image: url("/images/stern.webp");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: 45px;
        min-height: 45px;
    }
    .sterntop {
        padding-left: 0px;
        padding-top: 55px;;
        background-position: top center;
        min-height: 70px;
    }


}


.fs-14 {
    font-size: 14px;
    line-height: 20px;
}


.ratio169 {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ratio11 {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ratio45 {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.ratio43 {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/***********
Hintergrundfarben
************/

.bg-blaugrau {
    background-color: var(--blaugrau);
    color: var(--weiss);
}
.bg-blaugrau a{
    color: var(--weiss);
}
.bg-blaugrau a:hover{
    color: var(--anthrazit);
}

.bg-light {
    background-color: #f7f8f9!important;
}

.is-fixed .bg-blurry {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 1.8s ease, backdrop-filter 1.8s ease;
}

.bg-light-2col {
    background: #F7F8F9;
    background: linear-gradient(180deg, rgba(247, 248, 249, 1) 0%, rgba(247, 248, 249, 1) 30%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
}

.bg-light-2col70 {
    background: #F7F8F9;
    background: linear-gradient(180deg, rgba(247, 248, 249, 1) 0%, rgba(247, 248, 249, 1) 70%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 1) 100%);
}

/***********
Textfarben
************/

.text-schwarz {
    color: var(--anthrazit);
}
.text-blaugrau {
    color: var(--blaugrau);
}
.text-weiss {
    color: var(--weiss);
}


/*********
Abstände
*********/

.space-xxl-t {
    padding-top: 100px;
}
.space-xxl-b {
    padding-bottom: 100px;
}

.space-xxl-y {
    padding-top: 100px;
    padding-bottom: 100px;
}

.space-xl-y {
    padding-top: 70px;
    padding-bottom: 70px;
}

.space-xl-t {
    padding-top: 70px;
}

.space-xl-b {
    padding-bottom: 70px;
}

.space-sm-y {
    padding-top: 35px;
    padding-bottom: 35px;
}

.space-sm-t {
    padding-top: 35px;
}

.space-sm-b {
    padding-bottom: 35px;
}

.space-0 {
    padding: 0 !important;
}

@media (min-width: 768px) {
    .space-xxl-t {
        padding-top: 140px;
    } 
    .space-xxl-b {
        padding-bottom: 140px;
    }        
    .space-xxl-y {
        padding-top: 140px;
        padding-bottom: 140px;
    }
    .space-xl-y {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .space-xl-t {
        padding-top: 100px;
    }

    .space-xl-b {
        padding-bottom: 100px;
    }

    .space-sm-y {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .space-sm-t {
        padding-top: 50px;
    }

    .space-sm-b {
        padding-bottom: 50px;
    }

}

/*********
Buttons
**********/

.btn {
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    padding: 10px 50px;
    border-radius: 0px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.3s ease;
    font-weight: 700;
}



/* default button */
.btn-default,
.btn-primary {
    background-color:var(--blaugrau);
    border: 1px solid var(--blaugrau);
    color: var(--weiss);
}
.btn-default:hover,
.btn-primary:hover {
    background-color: var(--weiss);
    border: 1px solid var(--blaugrau);
    color: var(--blaugrau);
}




/* default button */
.bg-blaugrau .btn-default {
    background-color:var(--weiss);
    border: 1px solid var(--weiss);
    color: var(--blaugrau);
}
.bg-blaugrau .btn-default:hover{
    background-color: transparent;
    border: 1px solid var(--weiss);
    color: var(--weiss);
}


/* outline button */
.btn-outline {
    background-color:transparent;
    border: 1px solid var(--blaugrau);
    color: var(--blaugrau);
}
.btn-outline:hover{
    background-color: var(--blaugrau);
    border: 1px solid var(--blaugrau);
    color: var(--weiss);
}


.video-hero .btn-outline {
    background-color:transparent;
    border: 1px solid var(--blaugrau);
    color: var(--blaugrau);
}
.video-hero .btn-outline:hover{
    background-color: var(--blaugrau);
    border: 1px solid var(--blaugrau);
    color: var(--weiss);
}



/*********
NAV
**********/
#stickyheader {
    position: relative;
    z-index: 1000;
    top: 50px;
}

#stickyheader.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}



/* Zentrierung wirklich auf Container */
.main-nav .navbar-collapse {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* Nav Links */
.main-nav .nav-link {
  color: var(--blaugrau);
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--mintgruen); 
}

.mod-languages__list {
    font-weight: 700;
}

.mod-languages__list li:first-child::after {
    content: '/';
    margin: 0 5px;
    color: var(--blaugrau);
}


@media (min-width: 992px) and (max-width: 1399.98px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 2px;
        padding-left: 2px;
        font-size: 15px;
    }
}


@media (min-width: 1400px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 5px;
        padding-left: 5px;
        font-size: 18px;
    }
}

/* Dropdown */

.dropdown-menu {
    border: none;
}

.dropdown-toggle::after {
  display: none; /* Pfeil entfernen */
}

.dropdown-menu {
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* CTA */
.nav-cta {
  z-index: 50;
}

.nav-cta .btn {
  white-space: nowrap;
}


.dropdown-menu li.current>a {
    background-color: var(--lila);
    color: var(--weiss);
}

.navbar-toggler {
    border: 0px solid transparent;
    border-radius: 0;
}


/*********
CONTENT VIDEO HERO
**********/



/* Grundstruktur */
.video-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 40px); /* 🔑 Desktop Limit */
  min-height: 60vh;
  overflow: hidden;
}

/* Video */
.video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔑 für Mobile */
}

/* Verlauf: unten dunkel → oben transparent */
.video-hero__overlay {
  position: absolute;
  inset: 0;
  background:  rgba(255, 255, 255, 0.9);
  z-index: 1;
}

/* Content-Ebene */
.video-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end; /* 🔑 Content unten */
  padding-bottom: 10vh;
}


@media (max-width: 767.98px) {
  .video-hero {
    aspect-ratio: 4 / 5;
    min-height: 80vh;
  }

  .video-hero__content {
    padding-bottom: 5vh;
  }

  .video-hero__overlay {
    background:  rgba(255, 255, 255, 0.9);
  }
}

/*********
CONTENT Image HERO
**********/



/* Grundstruktur */
.image-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 800;
  max-height: calc(100vh - 100px); /* 🔑 Desktop Limit */
  min-height: 40vh;
  overflow: hidden;
}

/* Video */
.image-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔑 für Mobile */
}

.image-hero__image img {
    position: fixed;
    top: 0;

}

/* Verlauf: unten dunkel → oben transparent */
.image-hero__overlay {
  position: absolute;
  inset: 0;
  background:  rgba(255, 255, 255, 0.9);
  z-index: 1;
}

/* Content-Ebene */
.image-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end; /* 🔑 Content unten */
  padding-bottom: 10vh;
}


@media (max-width: 767.98px) {
  .image-hero {
  aspect-ratio: 1 / 1;
    min-height: 40vh;
  }
.image-hero__image img {
    object-fit: contain;

}

  .image-hero__content {
    padding-bottom: 5vh;
  }

  .image-hero__overlay {
    background:  rgba(255, 255, 255, 0.9);
  }
}




.border-white {
    border: 2px solid var(--weiss);
}

.border-mint {
    border: 2px solid var(--mint);
}

.card-title {
    color: var(--schwarz);
}

#homenews .card-title {
    color: var(--violett);
}

.card-text {
    color: var(--violett);
}

.check-icon {
    padding-left: 50px;
    background-image: url("../images/check-icon.svg");
    background-repeat: no-repeat;
    background-size: 35px auto;
    background-position: left center;
}




.accordion {
    --bs-accordion-color: var(--weiss);
    --bs-accordion-bg: var(--violett);
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: none;
    --bs-accordion-border-width: 0px;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 20px;
    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 0.25rem;
    --bs-accordion-btn-color: var(--weiss);
    --bs-accordion-btn-bg: var(--aubergine);
    --bs-accordion-btn-icon: url(../images/accordion-arrow.svg);
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url(../images/accordion-arrow.svg);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 0.5rem;
    --bs-accordion-active-color: var(--weiss);
    --bs-accordion-active-bg: var(--aubergine);
}


.accordion-button {
    padding: 5px var(--bs-accordion-btn-padding-x);
    text-transform: uppercase;
}

.accordion-item {
    margin-bottom: 25px;  
}

footer a {
  color: var(--violett);
}

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







/* Wrapper */
.article-header {
  position: relative;
  width: 100%;
  min-height: 70vh;
}

/* Bild-Ebene */
.article-header__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Verlauf: unten weiß → oben transparent */
.article-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.85) 30%,
    rgba(255,255,255,0.0) 70%
  );
  z-index: 1;
}

/* Content */
.article-header__content {
  position: absolute;  
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.article-intro {
  font-size: 1.125rem;
  max-width: 42rem;
}
@media (max-width: 991.98px) {
  .article-header {
    min-height: 60vh;
  }

  .article-header__content {
    padding-bottom: 2.5rem;
  }

  .article-intro {
    font-size: 1rem;
  }
}






#v-pills-tab > div:not(.active) {
    opacity: 0.4;
}

.date-vert {
    font-family: 'Cinzel', serif;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--blaugrau);
    border-left: 2px solid var(--blaugrau);
    padding: 5px 10px;
}

@media (min-width: 992px) {
    /* Figure über Container hinaus bis zum Bildschirmrand */
    .full-bleed-figure {
    height: 100%;
    position: relative;
    left: 0%;
    width: calc(50vw - 18px);/*12px container padding + 6px scrollbar*/
    overflow: hidden;
    border: 0px solid #000;
    }
}

@media (max-width: 767.98px) {
    .smallequal {
        min-width: 75%;
        max-width: 290px;
        text-align: center;
    }
}

.fancybox__backdrop {
    background: var(--graublau);
}

.f-carousel {
--f-carousel-gap: 8px;
--f-carousel-slide-width: calc((100% - 8px) / 1);
}

@media (min-width: 768px) {
    .f-carousel {
    --f-carousel-gap: 8px;
    --f-carousel-slide-width: calc((100% - 8px) / 2);
    }
}

@media (min-width: 992px) {
    .f-carousel {
    --f-carousel-gap: 8px;
    --f-carousel-slide-width: calc((100% - 16px) / 3);
    }
}


figure.ausstellungimage {
    position: relative;
}

figure.ausstellungimage figcaption {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--weiss);
    background-color: var(--blaugrau);
    padding: 5px 10px;
    font-size: 14px;
    text-align: center;
    min-width: 90px;
}


.besuchtext {
    padding: 50px 30px 50px 15px;
    border-left: 2px solid var(--blaugrau);
}


.infoicon {
    background-image: url(../images/open-pin.png);
    background-position: top left;
    background-repeat: no-repeat;
    padding-left: 55px;
}

.clockicon {
    background-image: url(../images/icon-clock.webp);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 40px auto;
    padding-left: 55px;
}

.ticketicon {
    background-image: url(../images/icon-ticket.webp);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 40px auto;    
    padding-left: 55px;
}


.border-top-blue {
    border-top: 15px solid var(--blaugrau);
}

.lang-active a,
.mod-languages__list a:hover {
    border-bottom: 1px dotted var(--blaugrau);
}


.prz5 {
    position: relative;
    z-index: 5;
}

.detail-introtext {
    font-weight: bold;
}

.nocursor {
    cursor: default;
}

.ausstellung-detail figcaption {
    position: absolute;
    bottom: 5px;
    right:10px;
    font-size: 12px;
}

.downloadicons a {
    display: inline-block;
    padding: 0 0 0 25px;
    background-image: url(../images/icon-download.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 15px auto;
}

@media (min-width: 992px) {
    #ausstellungenslider .f-button.is-arrow.is-prev {
        left: -50px;
    }

    #ausstellungenslider .f-button.is-arrow.is-next {
        right: -50px;
    }
}

.text-muted {
    color: var(--blaugrau) !important;
    font-size: 12px;
}

.formContainer label {
    display: none;
}

.formContainer .form-check label {
    display: inline-block;
}

.form-control,
.form-select,
.form-check-input[type=checkbox] {
    border-radius: 0px;
}

.rsform {
    padding: 20px;
    box-shadow: #9d9d9d 0px 4px 8px;
}

.multiply {
mix-blend-mode: multiply;
}

.bg-superlight {
    background-color: #FBFBFB!important;
}

.nomarginbutton p{
    margin-bottom: 0px;
}

.video-hero__content {
    color: var(--anthrazit);
}