/* Colors */
.primary-color {color: #770000;}
.secondary-color {color: #40000d;}
.dark-color {color: #563d3d;}

.primary-bg-color {background-color: #770000;}
.secondary-bg-color {background-color: #40000d;}
.dark-bg-color {background-color: #563d3d;}


html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background-color: #770000;
    color: #0b2e13;
}

.nav-item > .dropdown-menu {
    background-color: #40000d;
    color: white;
}

.nav-item > .dropdown-menu > .dropdown-item {
    color: white;
}

.nav-item > .dropdown-menu > .dropdown-item:hover {
    background-color: #770000;
}

a.navbar-brand,
a.nav-link {
    font-weight: normal;
}

/* Body */
body {
    /* Padding below navigation bar and above footer */
    position: relative;
    padding-top: 3.5rem;
    color: #3e3e3e;
}

section {
    margin-bottom: 2rem;
}


/* Home page */
.btn-block:hover {
    color: #770000 !important;
}


/* Banner Image with parallax effect */
.parallax-window {
    height: 15rem;
}

.carousel-caption {
    top: 8%;
    bottom: auto;
    text-align: center;
    vertical-align: middle;
    margin:auto;
}

.carousel-caption p {
    font-size: 1rem;
}

.carousel-caption h1 {
    font-size: 2rem;
}

@media (min-width: 30em) {
    /* Bump up size of carousel content */
    .carousel-caption {
        top: 30%;
        bottom: auto;
        text-align: center;
        vertical-align: middle;
        margin:auto;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }

    .carousel-caption h1 {
        font-size: 2.5rem;
    }

    .parallax-window {
        height: 25rem
    }
}

/* "Back to top" button */
a.back-to-top {
    position: fixed;
    display: none;
    width: 3.7rem;
    height: 3.7rem;
    bottom: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    line-height: 3.2rem;
    color: #ffffff;
    background-color: #770000;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease-in-out;
    -webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* Footer on all pages */
.fixed-footer {
    width: 100%;
    /* Set the fixed height of the footer and center vertically */
    height: 3.5rem;
    line-height: 3.5rem;
}

.regular-footer {
    padding: 2.5rem 2rem;
}

footer {
    margin-top: 3rem;
}

footer p:last-child {
    margin-bottom: 0;
}