/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 19 Jul 2016, 7:12:09 PM
    Author     : Ockert
*/

*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    height: 100%;
}

body{
    height: 100%;
    font-family: 'PT Sans', sans-serif;
}

nav{
    width: 100%;
    bottom: 0;
    position: absolute;
    z-index: 999;
    transform: translateY(20%);
    /* min-width: 1600px; */
}
 nav ul {
   width: 100%;
    text-align: center;
}


 nav ul li{
   display: inline-block;
   border-radius: 50%;
   width: 15%;
   padding-bottom: 15%;
   background: #716558;
   position: relative;
   border: 3px solid #e9decd;
   margin: 0 2%;
   z-index: 100;
}

 nav ul li a {
    display: block;
    font-size: 1em;
    text-decoration: none;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    right: 0;
    left: 0;
    padding: 2%;
}


 nav ul li:hover{
    background-color: #918272;
    cursor: pointer;
}

 nav ul li:active{
    background-color: #918272;
}

header{
    background-color: #e9decd;
    position: relative;
    /* overflow: hidden; */
}

header img{
    width: 100%;
    /* position: absolute; */
}
#about{
    text-align: center;
    background: #e9decd;
    color: #716558;
    padding-bottom: 2%;
    padding-top: 6%;
    position: relative;
}
#about p{
    width: 65%;
    margin: 0 auto;
    line-height: 2;
    padding-bottom: 1%;
    padding-top: 2%
}
.backg{
    min-height: 110%;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    /* padding-bottom: 2%; */
}

#b1{
    background-image: url("img/image 1.jpg");
}
#b2{
    background-image: url("img/image 2.jpg");
}
#b3{
    background-image: url("img/image 3.jpg");
}

.bcon{
    width: 100%;
    /* height: 80%; */
    position: absolute;
    background-color: #e9decd;
    /* margin-top: 10%; */
    color: #716558;
    text-align: center;
    bottom: 0;
    padding-bottom: 2%;
}
.bcon h2{  
    font-family: 'Pinyon Script', cursive;
   font-size: 4em;
    padding-top: 1%;
}
.bcon p{
    width: 80%;
    margin: 0 auto;
    line-height: 1.5;
    padding-bottom: 1%;
    padding-top: 2%;
}

#contact{
         /* height: 50%; */
         width: 100%;
         background: #716558;
         text-align: center;
         color: #e9decd;
         line-height: 1.5;
         padding-bottom: 5%;
}

#contact h1{
    font-family: 'Pinyon Script', cursive;
    font-size: 4em;
    line-height: 2;
}

.banners{
        background: #716558;
    padding: 1% 0;
    width: 100%;
}
.banners img{
    width: 100%;
}

#contact h3{
    font-size: 1.5em;
    
}
#contact a{
    text-decoration: none;
    color: #e9decd;
}
#contact p{
    /* text-decoration: none; */
    font-size: 1.3em;
}

footer{width: 100%;/* height: 5%; */background-color: #e9decd;text-align: right;padding: .5%;}

footer a{
    color: #716558;
    text-decoration: none;
}

@media only screen and (max-width: 1000px){
    nav{
         transform: translateY(50%);
    }
    
    nav ul li{
        width: 22%;
        padding-bottom: 22%;
        margin: 0;
    }
    
    #about{
            padding-top: 15%;
    }

    .backg{
        min-height: 150%;
    }
}

@media only screen and (max-device-width: 750px){
 nav ul li a{
        font-size: .4em;
    }

}