@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredericka+the+Great&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    font-size: 10px;
    font-family: 'Josefin Sans', sans-serif;
    scroll-behavior: smooth;
    background-color: white;
}

a{
    text-decoration: none;
    color: black;
    font-style: italic;
}

a:hover{
    color: orange;
    transition: .2s ease color;
}

h2 a{
    font-style: normal;
}

.container{
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    align-content: flex-start;
}

p{
    color: black;
    font-size: 3rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: .05rem;
}

img{
    pointer-events: none;
}

.section-title{
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 10px;
}

.section-title h1 a{
    font-style: normal;
}

.section-title span{
    font-family: 'Fredericka the Great', cursive;
    font-size: 6rem;
}

.section-info p{
    padding: 0 20px;
}

.section-description{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-description h1{
    padding: 30px;
    font-size: 4rem;
    font-weight: 700;
}

.brand h1{
    font-size: 3rem;
    font-weight: lighter;
    text-transform: uppercase;
    color: white;
}

#html5-watermark{
	visibility:hidden;
}

.text-area{
    padding: 30px;
    margin-bottom: 20px;
    background-color: white;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    width: 100%;
}

.text-area a{
    font-weight: 400;
}

.text-area h2{
    font-size: 3rem;
    margin: 20px 0;
}

.text-area p{
    margin-bottom: 30px;
    line-height:inherit;
    font-size: 2rem;
}

.text-area p:last-child{
    margin-bottom: 0;
}

.sub-menu {
    text-align: center;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

.sub-menu ul{
    list-style: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 10px;
}

.sub-menu li{
    font-size: 1.5em;
    padding: 10px;
    padding-bottom: 5px;
}

.sub-menu li a{
    text-transform: uppercase;
    color: #BBBBBB;
    white-space: nowrap;
    font-style: normal;
}

.sub-menu li a:hover{
    color: orange;
}

.sub-menu .selected a{
    color: orange;
    border-bottom: 2px solid orange;
}

.sub-menu .selected a:hover{
    color: #000000;
}



/* Header Section */

#header img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}


#header{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    padding: 0;
}

#header .header{
    min-height: 7vh;
    background-color: white;
    transition: .3s ease background-color;
    padding: 0;
}

#header .header.page{
    border-bottom: 1px solid lightgray;
}

#header .header.scrolling{
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: none;
}

#header .nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    padding: 0;
}

#header .nav-bar .brand-logo{
    height: 80px;
    max-width: 50%;
    z-index: 60;
}

#header .nav-bar .brand-logo.active{
    z-index: -10;
}

#header .nav .nav-cover{
    background-color: white;
    background:none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 50;
}

#header .nav .nav-cover.active{
    z-index: -1;
}

#header .nav ul{
    list-style: none;
    position: absolute;
    background-color: white;
    width: 100vw;
    height: 100vh;
    Left: 100%;
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
    background-image: url(../images/bg-tile-white.jpg);
}

#header .nav ul.active{
    left:0;
}

#header .nav ul li{
    background-color: white;
    min-width: 80%;
    text-align: center;
    padding: 10px 5px 0 5px;
}

#header .nav ul li:last-child{
    padding-bottom: 20px;
    
}

#header .nav ul a{
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    padding: 10px;
    display: block;
}

#header .nav ul li.selected{
    background-color: orange;
}

#header .nav ul li.selected a{
    color: white;
}

#header .nav ul li:hover a{
    color: orange;
}

#header .nav ul li.selected:hover a{
    color: black;
}

#header .nav ul li .social-item{
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 30%;
    padding: 0;
    margin: 0;
    transform: scale(1);
    opacity: .6;
    border: 1px solid white;
    display: inline-block;
}

#header .nav ul li .social-item:hover{
    transform: scale(1.1);
    opacity: 1;
    background-color: orange;
    transition: 0.2s ease;
    transition-property: transform, opacity, background-color;
}

#header .nav-icon{
    height: 80px;
    width: 80px;
    display: inline-block;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    background-color: white;
    top: 0;
    right: 20px;
    border-radius: 50%;
}

#header .nav-icon.active{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#header .nav-icon .bars{
    height: 2px;
    width: 30px;
    position: relative;
    background-color: black;
    z-index: -1;
}

#header .nav-icon .bars::after,
#header .nav-icon .bars::before{
    content: '';        
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: black;
    transition: .3s ease;
    transition-property: top, bottom;
}

#header .nav-icon .bars::after{
    top: 8px;
}

#header .nav-icon .bars::before{
    bottom: 8px;
}

#header .nav-icon.active .bars::after{
    top: 0;
}

#header .nav-icon.active .bars::before{
    bottom:0;
}

.brand-logo img{
    pointer-events: auto;
}
    

/* Header Section */




/* Footer Section */

#footer img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


#footer{
    background-image: url(../images/bg-tile-black.jpg);
    background-attachment: fixed;
}

#footer .footer{
    min-height: 400px;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .8) 100%);
}

#footer h1{
    font-family: 'Fredericka the Great', cursive;
    font-weight: 400;
    text-shadow: 0 4px 10px black;
    text-transform: capitalize;
    font-size: 6rem;
}

#footer h2{
    color: lightgray;
    font-weight: 500;
    font-size: 1.8rem;
    letter-spacing: .1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 0 3px 5px black;
}

#footer .social-icon{
    display: flex;
    margin-bottom: 10px;
}

#footer .social-item{
    height: 50px;
    width: 50px;
    margin: 20px 10px;
    background-color: lightgray;
    border-radius: 30%;
    padding: 0;
    transform: scale(1);
    transition: 0.2s ease;
    transition-property: transform, opacity, background-color;
    box-shadow: 0 3px 6px black;
    cursor: pointer;
}

#footer .social-item img{
    padding: 10px;
    pointer-events: auto;
}

#footer p{
    color: lightgray;
    font-size: 1.4rem;
    text-shadow: 0 4px 5px black;
    font-weight: 400;
}

#footer a{
    color: white;
}

#footer a:hover{
    color:orange;
}

#footer span{
    vertical-align: super;
}

#footer.white {
    background-image: url(../images/bg-tile-white.jpg);
}

#footer.white .footer{
    background-image: linear-gradient(0deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .4) 100%);
}

#footer.white h2,
#footer.white h1,
#footer.white p, 
#footer.white a{
    color: black;
    text-shadow: none;
}

#footer.white .footer a{
    color: gray;
}

#footer.white .footer a:hover{
    color: orange;
}

/* END Footer Section */





/* Media Query - TABLET - */

@media only screen and (min-width: 768px){

    .section-title{
        width: 100%;
        padding:0;
    }

    #header .nav-bar .brand-logo{
        max-width:none;
        height: 100px;
        padding: 0;
    }

    #header .nav-icon{
        width: 100px;
        height: 100px;
    }

    #header .nav .nav-cover{
        height: 100px;
    }

    #header .nav ul{
        align-items:center;
    }

    #header .nav ul li{
        min-width: 40%;
    } 
    
    #header .nav ul li{
        margin-left: 0;
    }

}

/* END of Media Query - TABLET - */


/* Media Query - DESKTOP - */

@media only screen and (min-width: 1200px){

    .container{
        max-width: 1200px;
        margin: 0 auto;
    }

    #header .header{
        background-color: transparent;
        max-width: none;
        margin: 0;
    }

    #header .nav-bar .brand-logo{
        height: auto;
    }

    #header .brand-logo img{
        height: 16vh;
        width: auto;
        transition:.3s ease height;
    }

    #header .brand-logo.scrolling{
        z-index: 60;
    }

    #header .brand-logo.scrolling img{
        height: 80px;
    }

    #header .brand-logo.active.scrolling{
        z-index: 100;
    }

    #header .nav-icon{
        display: none;
    }

    #header .nav .nav-cover{
        display: none;
    }

    #header .nav .nav-cover:active{
        display: none;
    }

    #header .nav ul{
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
        background-image: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        align-content: stretch;
    }

    #header .nav ul li{
        display: inline-block;
        min-width: 0;
        background-color: transparent;
        color: white;
        margin-top: 0;
        padding-top: 5px;
        border-radius: 10px;
    }

    #header .nav ul li a{
        font-size:1.8rem;
        color: white;
    }

    #header .nav ul.scrolling li a{
        color: black;
    }

    #header .nav ul.scrolling li.selected a{
        color: white;
    }

    #header .nav ul.scrolling li a:hover{
        color: orange;
    }

    #header .nav ul.scrolling li.selected a:hover{
        color: black;
    }


    #header .nav ul a::after{
        display: none;
    }

    #header .nav ul li:last-child{
        padding: 10px;
        text-align: right;
        display: none;
    }

    #header .nav ul.scrolling li:last-child{
        display: block;
    }

    #header .nav ul li .social-item{
        border: none; 
    }

    #footer .footer{
        max-width: none;
    }

    #footer .social-item:hover{
        transform: scale(1.2);
        opacity: 1;
        background-color: orange;
    }

    .sub-menu ul{
        flex-flow: row nowrap;
    }

    .sub-menu li{
        font-size: 2em;
        padding: 15px;
        padding-bottom: 15px;
    }

}

/* END of Media Query - DESKTOP - */
