:root {
    --bb-orange: #EE5E07;
    --bb-dark: #1e1e1e;
}
body {
    background-color: #fafafa;
}
.navbar {
    background-color: var(--bb-dark) !important;
}
.navbar-brand, .nav-link {
    color: #fff !important;
}
.nav-link.active {
    color: var(--bb-orange) !important;
}
.hero {
    background: linear-gradient(rgba(30,30,30,0.5),rgba(30,30,30,0.5)), url('/img/hero1.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
}
.footer {
    background-color: var(--bb-dark);
    color: #ccc;
    padding: 1rem 0;
    text-align: center;
}
.text-shadow {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}
.carousel-caption {
    background: rgba(0,0,0,0.4);
    border-radius: 0.5rem;
    padding: 1rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: $zindex-fixed;
    }
}
