@font-face {
    font-family: "majesti";
    src: url(fonts/Majesti-Banner-Medium.otf) format("opentype");
}
@font-face{
    font-family: "majesti_light";
    src: url(fonts/Majesti-Banner-Light.otf) format("opentype");
}
@font-face{
    font-family: "majesti_boldita";
    src: url(fonts/Majesti-Banner-BoldItalic.otf) format("opentype");
}
@font-face{
    font-family: "majesti_lightita";
    src: url(fonts/Majesti-Banner-LightItalic.otf) format("opentype");
}

body {
    background: linear-gradient(to bottom, rgba(0,0,0, 0.8), rgba(0,0,0, 0.4)), 
        url(images/plaza.jpg);
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
	cursor: default;
}

h1 {
    color: rgb(138,140,143); /* Cool Down */
    font-size: 50px;
}

h2 {
    color: rgb(215,228,194); /* Bamboo */
    font-family: "majesti_boldita";
    font-size: 35px;
}
        
ul {list-style-type: none;}

#main-wrap {
	padding-left: 275px;
}
        
/* Main Page Layout */
#sidebar {
    background-color: rgba(10,10,10,0.85);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    color: white;
    width: 275px;
	height: 100%;
}

/* List Link Color and Styling */
#sidebar ul a {
    font-family: "majesti";
    text-decoration: none;
    color: white;
    font-size: 23px;
    line-height: 45px;
	display: inline-block;
	width: 200px;
}
#sidebar ul a:hover {
	color: rgb(240,78,35);
	background-color: rgba(138,140,143,.1);
} /* Spicy */
    
#logo {padding: 25px;}
    
/* Social Media Links */
#social {
    left: 0; bottom: 10px;
    position: fixed;
    margin-left: 40px;
}
#social img {
	margin: 10px;
	padding-right: 15px;}
#social img:hover {opacity: 0.65;}
        
#signup {margin: 35px;} /* Newsletter */

#hours {margin: 40px; }
        
.main-content {
    text-align: center;
    overflow: auto;
	font-size: 16px;
    color: white;
	width: 700px;
	margin: 0 auto;
	background-color: rgba(10,10,10,0.65);
	padding-left: 40px;
	padding-right: 40px;
	min-height: 100vh;
	height: 0; /* Overflow fails without a set height */
}

#footer {
    min-height: 40px;
    position: absolute;
    right: 0; bottom: 0; left: 0;
    /* background-color: rgb(215,228,194); */
    text-align: right;
    color: white;
    padding-right: 20px;
    margin-left: 275px;
}

#contact-info {
	background-color: rgba(10,10,10,0.65);
}

.column {float:left; width:42%; padding:0 7%;}
.left-column {padding-left:0;}
.right-column {padding-right:0;}

.price {float:right; padding-left:2em;}
.menu-title {text-align: center;}
.menu-item {margin-bottom:1em; position:relative;}

/* Fix alignment for center-left (reserve page) */
input[type=text], input[type=password] {
    width: 50%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Gallery */
.gallery-thumb {
    display: block; 
	float: left;
	width: 33%;
	padding-bottom: 30px;
	position: relative;
}

.gallery-img {
	border: 1px solid white;
	width: 180px;
	height: 135px;
}

label {
	display: inline-block;
	width: 150px;
	text-align: right;
	margin-right: 10px;
}

#gallery {
    text-align: center;
    overflow: auto;
    font-family: "majesti_light";
	font-size: 17px;
    color: white;
	min-width: 200px;
}

/* Homepage Slideshow */
.slideshow {
  	width: 620px;
  	margin: 0 auto;
  	overflow: hidden;
  	border: solid 1px white;
}

.slideshow-container {
	width: 1860px;
 	transition: 1s ease;
 	height: 391px;
}

.slideshow-container:hover {
  	animation-play-state: paused;
}

.slide {
  	animation: slide 20s ease infinite;
}

@keyframes slide {
  	0% {
    	transform: translateX(0%);
  	}
	
	16.5% {
		transform: translateX(0%);
	}
  
  	33% {
    	transform: translateX(-33.33%);
  	}
  
  	49.5% {
    	transform: translateX(-33.33%);
  	}
  
  	66% {
    	transform: translateX(-66.66%);
  	}
  
  	82.5% {
    	transform: translateX(-66.66%);
  	}
  
  	100% {
    	transform: translateX(0%);
  	}
}
/* End of Homepage Slideshow */

audio {
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 70px;
	position: absolute;
}

::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.6); 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(0,0,0,0.4); 
}