:root{
    --bs-body-bg: rgb(255, 255, 255);
    --bs-body-color: #404040; /*#464646;*/

    --grey-dark: rgb(140, 79, 98);
    --grey-light: rgb(244, 244, 244);

    --color-accent: rgb(196, 11, 68);
    --color-accent-hover: #911138;

    --svg-fill: rgb(102, 102, 102);
}

/* Bootstrap */

.navbar{
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.699);
}

.navbar-nav .nav-item:first-child .nav-link {
    padding-left: 0;
}

.btn-outline-primary{
    --bs-btn-color: var(--color-accent);
    --bs-btn-border-color: var(--color-accent);
    --bs-btn-hover-bg: rgb(193, 70, 109);
    --bs-btn-hover-border-color: rgb(193, 70, 109);
    --bs-btn-active-bg: rgb(193, 70, 109);
    --bs-btn-active-border-color: rgb(193, 70, 109);
    --bs-btn-disabled-color: #656664;
    --bs-btn-disabled-border-color: #656664;
}

.carousel-indicators{
    /* position: static; */
    margin-bottom: 1rem;
    bottom: -20px;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.562);
}
.carousel-indicators .active {
    background-color: white;
}

/* Tags */

html {
    scroll-padding-top: 255px;
    scroll-behavior: smooth;
}

body{
    font-family: 'Lato';
    font-size: 1rem;
    line-height: 1.9;
}

h3{
    font-size: 1.5rem;
}

h4{
    font-size: 1.2rem;
}

a{
    text-decoration: none;
    color: var(--color-accent);
}

a:hover{
    color: var(--color-accent-hover);
}

footer a{
    color: inherit;
}

footer a:hover{
    color: inherit;
}

/* Classes */

.bg-1{
    background-color: var(--grey-light);
}

.bg-2{
    color: white;
    background-color: var(--grey-dark);
}

.mitglied-logo{
    max-height: 48px;
}

.testimonial-init{
    font-family: "caveat";
    font-size: 1.3rem;
}

/* IDs */

#logo-h1{
    line-height: 0.9;
}

    #logo-h1 span{
        font-size: 1.5rem; 
        opacity:0.8;
    }

    #logo-h1.clean {
        font-size: 1.7rem;
    }

    #logo-h1.clean span{
        font-size: 1.2rem !important;
    }

    #logo-h1.handwritten {
        font-family: caveat;
    }

#main-nav, #main-nav-mobile{
    position: sticky;
    top: 0;
    z-index: 100;
}

#main-nav .nav-link{
    color: inherit;
}

#main-nav .nav-link:hover{
    color: rgba(255, 255, 255, 0.85);
}

#main-button{
    --bs-btn-border-color: white;
    --bs-btn-color: white;
}

#textCarousel{
    min-height:390px;
}

#prices, #contact, header{
    line-height: 1.7;
}


#datenschutz-modal, #impressum-modal{
    line-height: 1.6;
}

#more-about > :first-child, 
#more-approach > :first-child, 
#more-topics > :first-child {
    margin-top: 1rem;
}

#more-about > :last-child, 
#more-approach > :last-child, 
#more-topics > :last-child {
    margin-bottom: 0;
}

#feedback{
    font-size: 0.95rem; 
    line-height: 1.9; 
    letter-spacing: 0.06em;
}

/* Media Queries */

@media (min-width: 576px) { /* Small (sm)*/
    
    #textCarousel{
        min-height:300px;
    }

}
  
@media (min-width: 768px) {   /* Medium (md)*/

    html {
        scroll-padding-top: 20px;
    }

    h2 {
        font-size: 1.7rem;
    }

    .mitglied-logo{
        max-height: 54px;
    }

    #textCarousel{
        min-height:250px;
    }

    #header-logo{
        width: 83px;
        height: auto;
    }

    #contact-container{
        border-radius: var(--bs-border-radius);
    }

    #logo-h1.clean {
        font-size: 1.8rem;
        line-height: 1;
    }

    #logo-h1.clean span{
        font-size: 1.2rem !important;
    }

    #feedback{
        letter-spacing: 0.07em;
    }
    #prices, #contact, header{
        line-height: 1.7;
    }
}

@media (min-width: 992px) { /* Large (lg)*/
    
    .box-left-highlight{
        border-left: 10px solid var(--grey-dark) !important;
    }

    .box-top-highlight{
        border-top: 10px solid var(--grey-dark) !important;
    }

    .box-right-highlight{
        border-right: 10px solid var(--grey-dark) !important;
    }

    #textCarousel{
        min-height:200px;
    }

}


@media (min-width: 1200px) {  /* Extra large (xl)*/
    
    #textCarousel{
        min-height:210px;
    }

}
  
  
@media (min-width: 1400px) { /* XXL (xxl)*/

}

/* Media Queries Max-width */

@media (max-width: 768px) {   /* Medium (md)*/
    
    .bg-sm-1 {
        background-color: var(--grey-light);
        color: var(--bs-body-color);
    }

    .bg-sm-2{
        background-color: var(--grey-dark);
        color: white; 
    }

    .c-pt-mobile{
        padding-top: 1.6rem !important;
    }

}