/* CSS File for the Landing Page. */

/* -------------------------- */
/*     Global Page Styles     */
/* -------------------------- */
@media only screen {
    html {
        position: relative;
        min-height: 100%;
        height: 100%;
    }
    
    body {
        height: 100%;
    }
    
    #content {
        /* Removed due to the direct modifications to the images themselves. */
        /* background-color: rgba(255,255,255,0.8); */
    }
}

/* -------------------------- */
/*    Standard Page Styles    */
/* -------------------------- */
@media only screen and (min-width: 768px) {
    body {
        /* padding-bottom: 52px; */
    }
    
    .navigation {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        z-index: 10;
    }
}

/* -------------------------- */
/*     Mobile Page Styles     */
/* -------------------------- */
@media only screen and (max-width: 767px) {
    .carousel-indicators {
        margin-top: 0;
        margin-bottom: 4rem;
    }
}



/* -------------------------- */
/*    Global Header Styles    */
/* -------------------------- */
@media only screen {
    #header {
        padding-top: 52px;
        height: 100%;
    }
    
    #landing-carousel {
        position: relative;
        height: 100%;
        width: 100%;
    }
    
    #carousel-overlay-wrapper {
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        height: 20%;
        z-index: 2;
    }
    
    .carousel-inner {
        height: 100%;
    }
    
    .carousel-item {
        height: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: top; 
    }
    
    .carousel-item > h1, 
    .carousel-item > h2, 
    .carousel-item > h3, 
    .carousel-item > h4, 
    .carousel-item > h5, 
    .carousel-item > h6 {
        width: 70%;
        height: 45%;
        overflow: auto;
        margin: auto;
        position: absolute;
        top: 0; left: 0; bottom: 0; right: 0;
        text-align: center;
        z-index: 1;
        overflow: visible;
    }
    
    .carousel-caption {
        margin-bottom: 20px !important;
    }
    
    #carousel-image-1 {
        background-image: url("../img/carousel-image-1.jpg");
        color: #ffffff;
    }
    
    #carousel-image-2 {
        background-image: url("../img/carousel-image-2.jpg");
        color: #ffffff;
    }
    
    #carousel-image-3 {
        background-image: url("../img/carousel-image-3.jpg");
        color: #ffffff;
    }
    
    #carousel-image-4 {
        background-image: url("../img/carousel-image-4.jpg");
        color: #ffffff;
    }
    
    #carousel-image-5 {
        background-image: url("../img/carousel-image-5.jpg");
        color: #ffffff;
    }
    
    #carousel-image-6 {
        background-image: url("../img/carousel-image-6.jpg");
        color: #ffffff;
    }
    
    #logo {
        max-height: 52.8px;
        max-width: 209.66px;
        height: auto;
        width: 100%;
    }
    
    #click-to-call {
        color: #fdbd40;
        text-decoration: none;
    }
    
    #click-to-call:hover {
        color: #f89c26;
    }
    
    #click-to-call > h1, #click-to-call > h2, #click-to-call > h3, #click-to-call > h4, #click-to-call > h5, #click-to-call > h6 {
        margin: 0px;
    }
    
    .carousel-item:after {
        content:"";
        display:block;
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        background:rgba(0,0,0,0.7);
        z-index:0;
    }
}

/* -------------------------- */
/*   Standard Header Styles   */
/* -------------------------- */
@media only screen and (min-width: 768px) {
    #carousel-overlay {
        margin-left: auto;
        margin-right: auto;
        width: 536px;
        height: 100%;
        background-image: url("../img/128236124-color.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top; 
    }
}

/* -------------------------- */
/*    Mobile Header Styles    */
/* -------------------------- */
@media only screen and (max-width: 767px) {
    html {
        height: 100%;
    }
    
    body {
        height: 100%;
    }
    
    .carousel-indicators {
        display: none !important;
    }

    #carousel-overlay {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 536px;
        height: 100%;
        background-image: url("../img/128236124-color.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top; 
    }
}



/* -------------------------- */
/*   Standard Footer Styles   */
/* -------------------------- */
@media only screen and (min-width: 768px) {
    body {
        /* Margin bottom by footer height */
        margin-bottom: 96px;
    }
    
    #footer {
        position: relative;
        /* Set the fixed height of the footer here */
        height: 96px;
        line-height: 32px;
        padding-bottom: 16px;
    }
}

/* -------------------------- */
/*    Mobile Footer Styles    */
/* -------------------------- */
@media only screen and (max-width: 767px) {
    body {
        /* Margin bottom by footer height */
        margin-bottom: 140px;
    }

    #footer {
        position: relative;
        /* Set the fixed height of the footer here */
        height: 140px;
        line-height: 32px;
        padding-bottom: 60px;
    }
}



/*
Color Scheme:

Dark Orange
#f89c26

Dark Gray
#5b6670

Light Orange
#fdbd40
*/