@charset "UTF-8";
/* CSS Document */

*{
list-style: none;
text-decoration: none;
} 

h1{
font-size: 2.5rem;
color: #fff;
padding: 17.813rem 3.125rem 3.125rem 3.125rem;
text-shadow: 2px 2px 1px #000;
line-height: 1.1;

}	
	
.main-head{
background-color: #b36b00;
}
	
.logo{
flex: 1 1 2.5rem; 
padding: 1.25rem;
}

.logo img{
width: 300px;
height: 120px;
}

nav{
display: flex;
align-items: center;
justify-content: space-around;
}
	
.navbutton{
font-family: "Bodoni Moda", serif;
font-weight: 400;
font-size: 1rem;
padding-top: 0.625rem;
padding-right: 2.5rem;
padding-left: 1.25rem;
/*display: inline-block;*/
text-align: center;
position: relative;
}

.navbutton a{
color: #000;
}
	
.navbutton:hover a{
color: #fff;
}

.dropdown-box{
display: none;
position: absolute;
padding-top: 0.5rem;
margin-left: -3.1rem;
z-index: 99;
}
	
.navbutton:hover .dropdown-box{
display: block;
}
	
.dropdown-box .navbutton:hover a{
color: #FBC02D;
transition-duration: 500ms;
text-shadow: .0.031rem .0.031rem 0.031rem #fff;
}

.hero{
background: linear-gradient(rgba(0, 0, 0, 0.5), transparent),
url("../images/index-large-back-1440x935-6.jpg");
min-height: 90vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
	
footer{
min-height: 4.688rem; /*75px*/
text-align: center;
padding-top: 0.625rem; /*10px*/
padding-bottom: 0.625rem;
background-color: #b36b00;
}
	
footer p{
font-family: "Bodoni Moda", serif;
font-size: 0.625rem;
}
	
.off-screen-menu{
display: none;
}
	
.hamburger{
display: none;
}


/* RESPONSIVE */

/* 1024 */
@media screen and (max-width: 1024px){
.navbutton{
display: none;	
}	

.hamburger{
display: block;
padding: 1.563rem;
}
	
.off-screen-menu{
background-color: #b36b00;
height: 100vh;
width: 50%;
max-width: 450px;
position: fixed;
top: 0;
right: -450px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
transition: .3s ease;
}
			
.ham-menu{
height: 50px;
width: 40px;
margin-left: auto;
position: relative;
}
	 
.ham-menu span{
height: 5px;
width: 100%;
background-color: #000;
border-radius: 25px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: .3s ease;
cursor: pointer;
}
	
.ham-menu span:nth-child(1){
top: 25%;
}
	
.ham-menu span:nth-child(3){
top: 75%;
}
		
.ham-menu.active span{
background-color: #FF0307;
}
	
.ham-menu.active span:nth-child(1){
top: 50%;
transform: translate(-50%, -50%) rotate(45deg);
}
	
.ham-menu.active span:nth-child(2){
opacity: 0;
}
		
.ham-menu.active span:nth-child(3){
top: 50%;
transform: translate(-50%, -50%) rotate(-45deg);
}

.off-screen-menu ul{
display: block;
}
			
.off-screen-menu ul li{
font-size: 1.125rem;	
padding: 0.938rem 0.625rem;
}
		
.off-screen-menu a{
color: white;
}
			
.off-screen-menu a:hover{
color: #FFC107;
}
	
.off-screen-menu.active{
right: 0;
}

h1{
font-size: 1.875rem;
padding: 3.125rem;
}	
	
.container{
margin: 0.313rem;
}
	}

/* 768 */
@media screen and (max-width: 768px){
h1{
font-size: 1.5rem;
padding: 3.125rem;
}
	} 

/* 480 */
@media screen and (max-width: 480px){
.logo{
padding: 0.5rem 0.5rem 0.5rem 0.75rem;
}

.logo img{
width: 200px;
height: 100px;
}	
	
.hamburger{
padding: 0.938rem;
}
	
.off-screen-menu{
width: 70%;
}
	
.off-screen-menu ul li{
font-size: 1rem;
padding: 0.625rem 0.438rem;
}
	
h1{
font-size: 1rem;
padding: 1.563rem 1.25rem 3.125rem 1.25rem;
line-height: 1.2;
}
	}
	
@media screen and (max-width: 420px){
.off-screen-menu{
width: 80%;
}
	}

/* 375 */
@media screen and (max-width: 375px){
.logo{
padding: 0.625rem 0 0.5rem 0.625rem;
}
	
.logo img{
width: 180px;
height: 80px;
}
	
.off-screen-menu ul li{
font-size: 0.875rem;	
padding: 0.625rem 0.438rem;
}
	
h1{	
font-size: 1rem;
}
	}

/* 320 */
@media screen and (max-width: 320px){
.logo{
padding: 0.625rem 0 0.625rem 0.313rem;
	}
	
.logo img{
width: 160px;
height: 60px;
}
	
.off-screen-menu{
width: 90%;
}	

	}



