/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */

/* Special class on .container surrounding .navbar, used for positioning it into place. */
.navbar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background-color: #ffc038;
    padding-top: 10px;
    border-bottom: 1px solid #ccc;
}

/* Flip around the padding for proper display in narrow viewports */
.navbar-wrapper .container {
    padding-left: 0;
    padding-right: 0;
}
.navbar-wrapper .navbar {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-wrapper #brand {
    padding: 0;
    margin: 10px 0 10px 0;
    font-size: 48px;
    background-color: transparent;
}
.navbar-wrapper #brand a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: Helvetica;
}
.navbar-wrapper #brand .pull-right {
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
    height: 400px;
    margin-bottom: 30px;
}
.carousel h1 {
    font-size: 35px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
    padding-bottom: 50px;
    text-shadow: 3px 2px 2px rgba(0,0,0,0.6)
}
/* Declare heights because of positioning of img element */
.carousel .item {
    height: 400px;
    background-color: #777;
}
.carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 400px;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    .navbar-wrapper {
        background-color: transparent !important;
        padding-top: 0px;
    }
    .navbar-wrapper #brand {
        display: none;
    }
    .carousel {
        margin-bottom: 0px;
    }
}

@media (min-width: 768px) {
    /* Navbar positioning foo */
    .navbar-wrapper {
    }
    .navbar-wrapper .container {
        padding-left:  15px;
        padding-right: 15px;
    }
    .navbar-wrapper .navbar {
        padding-left:  0;
        padding-right: 0;
    }

    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 20px;
        font-size: 21px;
        line-height: 1.4;
    }
}

@media (min-width: 992px) {
}
