﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,300&family=Oswald:wght@400;600&display=swap'); /* Necessry as first line because the non-import method doesn't work on iOS https://stackoverflow.com/questions/14676613/how-to-import-google-web-font-in-css-file */

/*STYLE GUIDE - FRONT PAGE

    WHITESMOKE COLOUR = #F5F5F5
    DARK GREY COLOUR = #555555
    MEDIUM GREY COLOUR = #9D9D9D
    LIGHT GREY COLOUR = #DEDEDE
    BACKGROUND OF WEBSITE = #BABABA

    NAVBAR BACKGROUND COLOUR = #2D2D2D
    NAVBAR TEXT COLOUR = #9C9C9C

    SCARY RED = #CC3333
    CREEPY BLUE = #3366CC
    GORY GREEN = #009966
    JUMPY YELLOW = #FFCC66

*/


body, html {
    background-color: #BABABA; /*This colour used to be #DEDEDE however the scary meter rating number was hard to see*/
    height: 100%;
    margin: 0;
}

#searchIcon {
    height: auto;
    width: 17px;
    margin-top: -3px;
}

#disclaimer {
    bottom: 0;
    width: 100%;
    position: fixed;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #CC3333;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #F5F5F5;
    text-align: center;
    box-shadow: 0px 0px 3px #555555;
    min-width: 320px;
}

.closeDisclaimer {
    text-align: left;
    font-size: 2em;
    margin-bottom: -20px;
    margin-right: -20px;
}

.closeDisclaimer:hover {
    cursor: pointer;
}

.navbar-form {
    margin: 0;
    border: 0;
    box-shadow: none;
}

.form-control {
    font-size: 12px;
}

#menuSearchIcon {
    float: right;
    height: auto;
    width: 24px;
    margin-top: 14px;
    margin-right: 15px;
    cursor: pointer;
    /* Previous CSS with glyphicon search icon
    color: white;
    float: right;
    font-size: 17px;
    margin-top: 16px;
    margin-right: 15px;
    cursor: pointer;
    */
}










#imageCoverPhotoBackground {
    position: relative;
    min-width: 320px;
    width: 100%;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



.oopsStyle {
    color: #F5F5F5;
    font-size: 6em;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    margin-top: 150px;
    margin-bottom: -6px;
}

.errorStyle {
    color: #555555;
    font-size: 2.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    background-color: #F5F5F5;
}

.messageStyle {
    color: #F5F5F5;
    font-size: 1.5em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-top: 30px;
}

.searchOption {
    cursor: pointer;
}















/*Responsive CSS*/

@media screen and (max-width: 475px) {

    #disclaimer {
        padding: 10px;
        padding-top: 0;
    }

    .closeDisclaimer {
        margin-bottom: -5px;
        margin-right: -5px;
    }
}

@media screen and (min-width: 768px) /*This is the exact size of when the navbar collapses*/ {

    .navbar-form .input-group .form-control, .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn {
        width: 1%; /*For some reason setting it to 1% makes it fullscreen on my Chrome and Safari*/
    }
    
}

/*End of responsive CSS*/
