/* Fonts */

/* fira-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: 'Fira Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/fira-sans/fira-sans-v17-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('/fonts/fira-sans/fira-sans-v17-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* fira-sans-italic - 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: 'Fira Sans';
    font-style: italic;
    font-weight: 400;
    src: url('/fonts/fira-sans/fira-sans-v17-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('/fonts/fira-sans/fira-sans-v17-latin-italic.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

/* Allgemein*/

body {
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.1rem;
}

.darkred {
    color: rgb(192, 19, 19);
}

.header {
    color: whitesmoke;
}

.kursiv {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1rem;
    font-style: italic;
    color: #999;
}

.vers {
    font-size: 0.8rem;
    color: #999;
}

.before::before,
 .after::after {
    content: "\A";
    white-space: pre;
  }

#friede, #die_worte, #gesandter, #wort, #erbarmer, #gerechtigkeit_friede {
    padding-top: 60px;
}

  /* Navigation */

.navbar {
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(1, 43, 66) 100%)
}

.nav-link {
    cursor: pointer;
}

.nav-link:active,
.nav-link:hover {
    color: rgb(192, 19, 19);
}

.dropdown-item {
    cursor: pointer;
}

.dropdown-item:active,
.dropdown-item:hover {
    color: rgb(192, 19, 19);
}

.navbar,
.carousel {
    border-bottom: 1px solid #888;
}

/*Abstand Image Slider*/
.abstand-slider {
    padding-top: 80px;
}

/* Image Slider */
.slider-image {
    width: 100vw;
    height: 75vh;
    background-position: center;
    background-size: cover;
}

/* Hero */
main {
    width: 100%;
    height: 100vh;
    background-image: url(/img/slider01.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: end;
}

.hero-h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 3px 3px 4px black;  
}
@media (max-width: 768px) {
    .hero-1 {
        font-size: 2.4rem;
        color: white;
        text-shadow: 3px 3px 4px black;  
    }   
}

@media (max-width: 599px) {
    .hero-h1 {
        font-size: 2.3rem;
        color: white;
        text-shadow: 3px 3px 4px black;  
    }   
}

@media (max-height: 415px) {
    .hero-h1 {
        font-size: 2rem;
        color: white;
        text-shadow: 3px 3px 4px black;  
    }   

    .hero-h2 {
        font-size: 1.5rem;
        color: white;
        text-shadow: 3px 3px 4px black;
    }
}

@media (max-height: 350px) {
    .hero-h1 {
        font-size: 1.8rem;
        color: white;
        text-shadow: 3px 3px 4px black;  
    }   

    .hero-h2 {
        font-size: 1.3rem;
        color: white;
        text-shadow: 3px 3px 4px black;
    }
}

.hero-h2 {
    color: white;
    text-shadow: 2px 2px 3px black;
    display: block;
    background-color: rgb(1, 43, 66);
    padding: 10px 20px;
    width: fit-content;
}



/* Content */
.subhead-image {
    height: 55vh;
    border-radius:10px;
    background-position: center;
    background-size: cover;
    
}

@media (max-width: 768px) {
    .subhead-image {
        height: 40vh;
        border-radius:10px;
        background-position: center;
        background-size: cover;
        
    }   
}

@media (max-width: 500px) {
    .subhead-image {
        height: 35vh;
        border-radius:10px;
        background-position: center;
        background-size: cover;
        
    }   
}

.round-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
}

/*Weitere Themen*/
.abstand-bild {
    padding-top: 80px;
}

/* Footer */
.footer {
font-family: sans-serif;
font-size: 1rem;
text-align: center;
border-top: 1px solid #888;
}

/*Datenschutz*/
.abstand {
    padding-top: 100px;
}

.card-image {
    height: 35vh;
    background-position: center;
    background-size: cover;
}

/*scroll-animations */

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateZ(100%);
    transition: all 1s;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0);
}
