﻿body, html {
    font-family: 'Ubuntu', Tahoma, sans-serif;
    color: #777;
}

.parallaxbox {
    position: relative;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.simmelstafel {
    background-image: url("../img/bg/simmelstafel-sm.jpg");
    min-height: 100vh;
}

.harasse {
    background-image: url("../img/bg/harasse-sm.jpg");
    min-height: 38vh;
}

.kochen {
    background-image: url("../img/bg/kochen-sm.jpg");
    min-height: 52vh;
}

.schankanlage {
    background-image: url("../img/bg/schankanlage-sm.jpg");
    min-height: 100vh;
}

.hopfen {
    background-image: url("../img/bg/hopfen-sm.jpg");
    min-height: 100vh;
}


.caption {
    left: 0;
    width: 100%;
    text-align: center;
    color: #000;
    font-family: 'Rock Salt', Tahoma, sans-serif;
    opacity: 0.8;
}

    .caption span.border {
        background-color: #111;
        color: #fff;
        padding: 18px;
        font-size: 25px;
        letter-spacing: 10px;
        line-height: 90px;
    }

.contentbox {
    color: #ddd;
    background-color: #282E34;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
    text-align: justify;
}

    .contentbox h3 {
        letter-spacing: 5px;
        text-transform: uppercase;
        font-size: 20px;
        color: #dddddd;
        text-align: center;
    }


.panel {
    color: black;
}

/*http://stackoverflow.com/questions/24087944/bootstrap-different-img-size-at-lg-md-sm-and-xs*/

/* md */
@media (min-width: 992px) {
    .simmelstafel {
        background-image: url("../img/bg/simmelstafel.jpg");
    }

    .harasse {
        background-image: url("../img/bg/harasse.jpg");
    }

    .kochen {
        background-image: url("../img/bg/kochen.jpg");
    }

    .schankanlage {
        background-image: url("../img/bg/schankanlage.jpg");
    }

    .hopfen {
        background-image: url("../img/bg/hopfen.jpg");
    }

    .contentbox {
        padding: 50px 80px;
    }
}

/* carousel */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    width: 70%;
    margin: auto;
}

.carousel-caption h3 {
    font-weight: bold;
}

/* slideanim */
.slideanim {visibility:hidden;}
.slidefrombottom {
    /* The name of the animation */
    animation-name: slidefrombottom;
    -webkit-animation-name: slidefrombottom;
    /* The duration of the animation */
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    /* Make the element visible */
    visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage from when to slide in the element along the Y-axis */
@keyframes slidefrombottom {
    0% {
        opacity: 0;
        transform: translateY(70%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@-webkit-keyframes slidefrombottom {
    0% {
        opacity: 0;
        -webkit-transform: translateY(70%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}