:root {
    --bs-body-font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-link-color-rgb: 67, 122, 83;
    --bs-link-hover-color-rgb: 0, 0, 0;
    --color-accent-dark: 29, 99, 65;
    --color-accent-mid: 67, 122, 83;

    /* --bs-body-color: #6EB386; */
    /* --bs-body-color: #2B5434; */
}

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

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

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

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

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

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

/* desktop or touch desktop */
@media (pointer: fine),
(pointer: none) {
    body {
        min-width: 400px;
    }
}


main {
    margin: 4em 0;
}

nav,
h1,
h2,
h3,
#page-info-wrapper {
    font-family: "Josefin Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

h2,
h3,
h4 {
    color: rgb(var(--color-accent-dark));
}

nav.sticky-top{
    background-color: rgba(var(--color-accent-mid), .75);
    backdrop-filter: blur(1px);
}

nav {
    --bs-link-color-rgb: 255, 255, 255;
    padding: .75em 0;
}

nav ul {
    list-style: none;
    margin: 0;
}

nav a {
    font-size: 1.15em;
    margin-right: 1.5em;
    color: #fff;
}
nav .nav-link {
    color: #fff;
}
.navbar-toggler{
    border: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
  }
article {
    margin-bottom: 4em;
    scroll-margin: 4rem;
    position: relative;
}
article:not(:last-child)::after {
    content:'';
    bottom: 1px;
    height: 10px;
    transform: translateY(2em);
    display: block;
    background-color: rgb(var(--color-accent-dark));
    filter: blur(7px);
    --mask:
        radial-gradient(3.73px at 50% calc(100% + 1.20px),#0000 calc(99% - 1px),#000 calc(101% - 1px) 99%,#0000 101%) calc(50% - 6px) calc(50% - 2px + .5px)/12px 4px repeat-x,
        radial-gradient(3.73px at 50% -1.2px,#0000 calc(99% - 1px),#000 calc(101% - 1px) 99%,#0000 101%) 50% calc(50% + 2px)/12px 4px repeat-x;
    -webkit-mask: var(--mask);
            mask: var(--mask);
     
}
article h2 {
    margin-bottom: .35em;
}

article span {
    display: inline-block;
    max-width: 700px;
}

article section {
    margin-bottom: 3rem;
}

article section>* {
    padding-left: 1.5rem;
}

article section h3 {
    box-shadow: -2px 0px rgb(var(--color-accent-mid));
}

article section:last-of-type {
    margin-bottom: 0;
}

a {
    position: relative;
    text-decoration: none;
}

a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--bs-link-hover-color-rgb));
    bottom: -1px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

#page-info-wrapper {
    margin: 6em 0;
}

#page-slogan {
    display: inline-block;
    text-shadow: 1px 1px rgba(0, 0, 0, .2);
}

#page-slogan .accent {
    color: rgb(var(--color-accent-mid));
}

.page-header {
    background-image: url('../assets/img/header.jpg');
    background-size: cover;
    height: 100%;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    border-radius: 6px;
}

.schedule-card {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: .5rem;
    display: flex;
    max-width: 700px;
    margin-bottom: .5em;
}

.schedule-timer {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-align: center;
    margin-right: 1rem;
    background-color: rgb(var(--color-accent-dark));
    border-radius: calc(var(--bs-border-radius) / 2);
    color: #fff;
    padding: .5rem;
    height: 63px;
    aspect-ratio: 1/1;
}

.schedule-timer .day {
    font-size: larger;
}

.schedule-timer .month {
    font-size: small;
}

.schedule-content {
    display: flex;
    flex-direction: column;
}

.schedule-content .title {
    color: var(--bs-body-color);
    font-size: larger;
    box-shadow: none;
    margin-bottom: 0;
}

.schedule-content .details>* {
    font-size: smaller;
}


.contact-list{
    list-style: none;
    margin: 1em 0 0;
    padding: 0;
}
.contact-list li{
    margin-bottom: .5em;
}
.contact-list li>i.bi {
    margin-right: 1em;
}
#zitate {
    color: #fff;
    font-weight: 100;
    display: flex;
    flex-direction: column;
}
#zitate .quote-wrapper{
    height: 410px;
    overflow: hidden;
}
#zitate .card{
    border: none!important;
    margin-right: auto !important;
    margin-left: auto !important;
}
#zitate .card-subtitle{
    text-align: right;
    padding-right: 1.25rem;
}
.quote-indicator-wrapper{
    display: flex;
    gap: .5em;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    
}
.quote-indicator{
    height: 10px;
    aspect-ratio: 1/1;
    border:1px solid rgb(var(--color-accent-mid));
    border-radius: 10px;
    cursor: pointer;
}
.quote-indicator.active{
    background-color: rgb(var(--color-accent-mid));
    
}
.quote{
    /* transition: all .25s ease-out; */
    display: flex;
    flex-direction: column;
    max-width: 700px;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    #zitate .quote-wrapper{
        height: 275px;
    }
    #zitate .card{
        width: 48rem;
    }
}

