:root {
    --main-color: #00cc44;
    --main-negative-color: white;
}

@font-face {
    font-family: Voltaire;
    src: url(/webfonts/Voltaire-Regular.ttf);
}
@font-face {
    font-family: OpenSans;
    src: url(/webfonts/OpenSans-Regular.ttf);
}

body {
    padding-top: 4.5rem;
    font-family: OpenSans;
    overflow-x: hidden;
    min-height: calc(100vh - 4.5rem);
    background-attachment: fixed;
    background-size: 100vw 100vh;
    background-image: url('/img/hintergrund.jpg');
}
h1, h2, h3 {
    font-family: Voltaire;
}
/*
    NAVIGATION BAR
*/
.navbar {
    background-color: var(--main-color);

    /* height: 50px; */
}
.navbar-brand {
    height: 56px;
    position: relative;
}
.navbar-brand img {
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}
@media(max-width:992px)  {
    .navbar-brand img {
        height: 100%;
    }
}
.navbar .nav-link, .navbar .navbar-brand, .navbar .fas {
    color: var(--main-negative-color);
}
.navbar-collapse {
    z-index: 5;
    xbackground-color: var(--main-color);
}

.nav-item.dropdown.show {
    background-color: var(--main-negative-color);
}

.nav-item:hover, .nav-item.dropdown.show {
    background-color: var(--main-negative-color);
}
.nav-item.dropdown.show a.nav-link, .nav-item:hover a.nav-link {
    color: var(--main-color);
}

#main::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100vw;
    background: rgba(255,255,255, 0.4);
    z-index: -1;
}
#main {
    height: calc(100vh - 2.5rem - 4.5rem);
    overflow-y: auto;
    overflow-x: hidden;
}


footer {
    background-color: var(--main-color);
    height: 2.5rem;
}

.start {
    text-align: center;
}

.start .logo {
    height: 4rem;
}

.carousel-item {
    height: 50vh;
    width: 100%;
    /* min-height: 300px; */
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.carousel-item p {
    /* color: var(--main-color); */
    color: black;
    text-shadow: 
        5px 0 10px white,
        -5px 0 10px white,
        0 5px 10px white,
        0 -5px 10px white,
        3px 3px 10px white,
        3px -3px 10px white,
        -3px 3px 10px white,
        -3px -3px 10px white;
}
.carousel-item .carousel-cite {
    font-size: 14pt;
}
.carousel-item .carousel-author {
    font-size: 11pt;
    text-align: end;
}

#carouselExampleIndicators {
    width: 75%;
    margin: auto;
}
/*
    TEAM
*/
.img-responsive {
    width: 100%;
}

/*
    TERMINE
*/
.termine {
    margin: 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: solid var(--main-color) 1px;
}

.angebot p, .termine p {
    text-align: justify;
    hyphens: auto;
}
/*
    ATELIER
*/

.room {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: solid var(--main-color) 1px;
}
.room > .row {
    margin-bottom: 1rem;
}

.sig {
    height: 5rem;
    width: auto;
}

/*
    KOOPERATIONSPARTNER
*/

.schulen h3 {
    text-align: end;
}

.partner .row {
    margin-bottom: 3rem;
}
.partner .row div:first-child{
    text-align: end;
}
#bastelangebote { 
    text-align: center;
}
#bastelangebote a {
    background-color: var(--main-color);
    margin-bottom: 15px;
}
.angebot {
    margin-bottom: 2rem;
}
.row.bastelangebot img {
    width:100%;
}

/*.bastelangebot > .col-sm-3 {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-content: space-between;
    justify-content: space-between;
}*/

.bastelangebote {
    padding-top: 5rem; 
    padding-bottom: 1rem;
}

.bastelangebote .card {
    box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
    margin-bottom: 1em;
}
.bastelangebote .card:hover {
    cursor: pointer;
}

.bastelangebote .card .card-img-top {
    height: 150px;
    width: calc(100% - 2px);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: 1px
}

.bastelangebote .card .card-body {
    min-height: 7em;

}
.bastelangebote .modal-content {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
}

.bastelangebote .modal-dialog {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
}
.bastelangebote .modal-body {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.bastelangebote .modal-content button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10000;
}