/*  My ASCII art

ooo        ooooo   .oooooo.                          
`88.       .888'  d8P'  `Y8b                            
 888b     d'888  888               /\.../\         
 8 Y88. .P  888  888              ( =^.^= )        
 8  `888'   888  888              /       \    PURR...   
 8    Y     888  `88b    ooo     /   ...   \            
o8o        o888o  `Y8bood8P'    \,,/     \,,/           

*/

/* ---------------------
   ----- CSS RESET -----
   ---------------------  */

* {
	margin: 0;
	padding: 0;
	text-align: center; 
}

/* ---------------------------
   ----- FONT-FACE RULES -----
   ---------------------------  */

@font-face {
	font-family: 'Papyrus', cursive;
	src: url("../fonts/PAPYRUS.ttf");
}

@font-face {
	font-family: bradley;
	src: url("../fonts/BRADHITC.ttf");
}

/* -----------------------------------------
   ---- SIDE NAVIGATION / HAMBURGER ICON ---
   -----------------------------------------  */

nav-2 {
	position: fixed; 
	top: 100px;
	left: -120px; 
	z-index: 50;
	font-size: 3.5em;
	padding: 0px 10px 30px 10px;
	background-color:  rgba(255,255,255,0.75);
	border-radius: 10px;
	border: solid 2px #076091;
	transition: left .5s;
}

	.slide-the-drawer {
		left: 15px;
	}

nav-2 ul {
	list-style: none;
}

nav-2 ul li {
	list-style: none;
	display: block;
}

button#hamburger-icon {
	position: fixed;
	top: 25px;
	left: -90px;
	z-index: 50;
	font-size: 3.5em;
	line-height: 1em;
	color: #06537e;
	border-radius: 20%;
	background-color: #d6d6d5;
	border: solid 2px #06537e;
	padding: 2.75px 7px 2.75px 7px;
}

button#hamburger-icon:hover {
	background-color: #013b65;
	color: #ffbf00;
}


/* ---------------------------------------
   ---- KEYFRAME RULES AND TRANSITION/ ---
   ----- TRANSFORM RULES FOR FADE-INS ----
   ---------------------------------------  */

@keyframes fade-in-logo {
	0%			{opacity: 0;};
	100%		{opacity: 1;};
}

	@-moz-keyframes fade-in-logo {
		0%			{opacity: 0;};
		100%		{opacity: 1;};
	}

	@-o-keyframes fade-in-logo {
		0%			{opacity: 0;};
		100%		{opacity: 1;};
	}

	@-webkit-keyframes fade-in-logo {
		0%			{opacity: 0;};
		100%		{opacity: 1;};
	}

	@-ms-keyframes fade-in-logo {
		0%			{opacity: 0;};
		100%		{opacity: 1;};
	}

.fade-in-logo {
	animation-name: fade-in-logo;
	animation-duration: 4s;
		-moz-animation-name: fade-in-logo;
		-moz-animation-duration: 4s;
		-o-animation-name: fade-in-logo;
		-o-animation-duration: 4s;
		-webkit-animation-name: fade-in-logo;
		-webkit-animation-duration: 4s;
		-ms-animation-name: fade-in-logo;
		-ms-animation-duration: 4s;
}

@keyframes fade-in-page-title {
	0%			{opacity: 0; transform: scale(0);};
	100%		{opacity: 1; transform scale: scale(1);};
	}

	@-moz-keyframes fade-in-page-title {
		0%			{opacity: 0; transform: scale(0);};
		100%		{opacity: 1; transform scale: scale(1);};
	}

	@-o-keyframes fade-in-page-title {
		0%			{opacity: 0; transform: scale(0);};
		100%		{opacity: 1; transform scale: scale(1);};
	}

	@-webkit-keyframes fade-in-page-title {
		0%			{opacity: 0; transform: scale(0);};
		100%		{opacity: 1; transform scale: scale(1);};
	}

	@-ms-keyframes fade-in-page-title {
		0%			{opacity: 0; transform: scale(0);};
		100%		{opacity: 1; transform scale: scale(1);};
	}

.fade-in-page-title {
	position: absolute; top: 13vh; left: 45vw;
	transition: transform 1.5s;
	animation-name: fade-in-page-title;
	animation-duration: 1.5s;
		-moz-animation-name: fade-in-page-title;
		-moz-animation-duration: 1.5s;
		-o-animation-name: fade-in-page-title;
		-o-animation-duration: 1.5s;
		-webkit-animation-name: fade-in-page-title;
		-webkit-animation-duration: 1.5s;
		-ms-animation-name: fade-in-page-title;
		-ms-animation-duration: 1.5s;
	}

 #page-title-review {
	position: absolute; top: 13vh; left: 40vw;
	transition: transform 1.5s;
	animation-name: fade-in-page-title;
	animation-duration: 1.5s;
		-moz-animation-name: fade-in-page-title;
		-moz-animation-duration: 1.5s;
		-o-animation-name: fade-in-page-title;
		-o-animation-duration: 1.5s;
		-webkit-animation-name: fade-in-page-title;
		-webkit-animation-duration: 1.5s;
		-ms-animation-name: fade-in-page-title;
		-ms-animation-duration: 1.5s;
	}

/* ------------------------------------------
   ----- SEMANTIC TAGS & GLOBAL CLASSES -----
   ------------------------------------------  */

body {
	background-image: url('../img/olive-leaf-pattern_opac_21.jpg');
	background-size: 20vw;
  	background-color: white;
 }

header {
	padding: 1vh 15vw;  
}

header section#logo {
	float: left;  
	margin-bottom: -10px;
}

header section#icons {
	float: right;
}

header section#logo img{
	width: 300px;
}

header section#icons ul li {
	display: inline;
	list-style: none;
}

header section#icons img#instagram {
	width: 60px;
	padding: 3.5vh 1vh;
}

header section#icons img#facebook {
	width: 60px;
	padding: 3.5vh 1vh;
}

figure.fotorama {
	display: inline-block;
	width: 100vw;
	text-align: center;
	margin-top: -1.05vh;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1vh;
	padding-bottom: 0vh;
}

figure.fotorama img {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

#slide-show img{
	width: 100%;  
	margin-top: -1vh;
	margin-left: auto;
	margin-right: auto;
}

#page-image img{
	width: 100%;  
	margin-top: -1vh;
	margin-left: auto;
	margin-right: auto;
}

.current-page {
	color: #ab8103;
}

.left {
	float: left;
}

.right {
	float: right;
}

nav {
	display: block;
	clear: both;
	border-top: #095986 solid 1px;
	border-bottom: #095986 solid 1px;
}

nav ul li{
	display: inline-block;
	color: #095986;
	padding-left: .9vw;
	padding-right: .9vw;
}

nav ul li a {
	color: #095986;
	text-decoration: none;
}

nav ul li a:visited {
	color: #095986;
}

nav ul li a:active {
	color: #ffbf00;
}

h1 {
	clear: both;
	font-family: 'Oregano', cursive;
	font-weight: lighter;
	font-size: 40pt;
	color: #095986;
}

h2 {
	float: left;
	display: inline;
	font-family: 'Oregano', cursive;
	font-weight: lighter;
	font-size: 40pt;
	color: #095986;
}

h3 {
	display: inline-block;
	text-align: center;
	font-weight: lighter;
	font-family: 'Macondo', cursive;
	font-size: 22pt;
	color: #095986;
}

h4 {
	text-align: center;
	font-family: 'Macondo', cursive;
	font-size: 26pt;
	font-weight: lighter;
	color: #ab8103;
}

h5 {
	clear: both;
	text-align: left;
	letter-spacing: .04em;
	font-family: 'Oregano', cursive;
	font-weight: lighter;
	font-size: 22pt;
	line-height: -5.0em;
	color: #095986;
}

h6 {
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 1.1em;
	color: #ffbf00;
}

main p {
	display: block;
	margin-top: 1vh;
	padding-left: 26vw;
	padding-right: 26vw;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-size: 1.5em;
	color: #095986;
}

main a#reservations {
	display: block;
	text-decoration: none;
	padding: .1vw 2vw;
	margin-top: 1vh;
	margin-left: auto;
	margin-right: auto;  
	text-align: center;
	width: 200px;
	background-color: #ffbf00; 
	border-radius: 15px;
	border: solid 2px #095986;
	font-family: 'Oregano', cursive;
	font-size: 2.65em;
	color: #095986;
}

main a#reservations:hover {
	text-align: center;
	padding: .3vw 2vw;
	border-radius: 15px;
	background-color: #013b65;
	font-family: 'Macondo', cursive;
	font-size: 2.3em;
	color: #ffbf00;
}

footer {
	clear: both;
	background-color: #013b65;
	width: 100%;
	margin-top: 4vh;
	margin-bottom: 0vh;
}

footer section.col {
	display: inline-block;
 	padding: 2vh 3vw; 
	vertical-align: top;
}

footer section#address {
	text-align: center;
	padding: 2vh 3vw;  
	vertical-align: top;
	font-family: 'Lato', sans-serif;
	font-size: 1.0em;    
	line-height: 1.3em;
	letter-spacing: 1.6px;
	color: white;
}

footer section#hours {
	text-align: center;
	padding: 1vh 3vw;  
	vertical-align: top;
	font-family: 'Lato', sans-serif;
	font-size: 1.0em;  
	line-height: 1.3em;
	letter-spacing: 1.6px;
	color: white;
}

footer section#hours img{
	width: 32px;
	text-align: center;
	padding-top: 2vh;
	padding-bottom: 1vh;
}

footer section#logo2 {
	padding: 2vh 3vw; 
 	vertical-align: top;
}

footer section#logo2 img {
	width: 200px;
}

/* ----------------------------------
   ----- TRANSITION / TRANSFORM -----
   ----------------------------------  */

nav ul li a h3, nav-2 ul li a h3 {
	transition: transform .7s;   
}

nav ul li a h3:hover, nav-2 ul li a h3:hover {
	color: #ffbf00;
	transform: scale(1.13);
		-moz-transform: scale(1.13);
		-ms-transform: scale(1.13);
		-o-transform: scale(1.13);
		-webkit-transform: scale(1.13);
}

section#icons ul li a img {
	transition: transform .5s;
}

section#icons ul li a img#instagram:hover, img#facebook:hover {
	transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
}

.links ul li a h3 {
	transition: transform 1s;   
}

.links ul li a h3:hover {
	color: #d39f05;
	transform: scale(1.1);
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
}


/* -------------------------
   ----- CONTACT PAGE ------
   -------------------------  */

#google-map {
	margin-left: 15vw;
	margin-right: 15vw;
	padding-top: 2vw;
	padding-bottom: 3vw;
	margin-top: -1vh;
	margin-bottom: -7vh;
	background-color: #06537e;
}

main section#google-map a#reserve {
	display: block;
	text-decoration: none;
	padding: .1vw 2vw;
	width: 200px;
	margin-top: 1vh;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-color: #ffbf00; 
	border-radius: 15px;
	border: solid 1px white;
	font-family: 'Oregano', cursive;
	font-size: 2.65em;
	color: #095986;
}

main section#google-map a#reserve:hover {
	text-align: center;
	padding: .1vw 2vw;
	border-radius: 15px;
	background-color: #013b65;
	font-family: 'Oregano', cursive;
	font-size: 2.65em;
	color: #ffbf00;
}

iframe#map {
	width: 75%;
	height: 55vh;
	border: solid black 2px;
}

main p#contact-us, p#join {
	padding-left: 10vw;
	padding-right: 10vw;
	text-align: center;
	font-family: 'Oregano', cursive;
	font-size: 1.8em;
	letter-spacing: .045em;
	color: white;
}

form ul li {
	text-align: center;
	list-style: none;
	color: #ffbf00;
	font-family: "Macondo", cursive;
	font-size: 1.5em;
}

input[type=text] {
	text-align: center;
	background-color: white;
	width: 35%;
	padding: 8px 20px;
	display: block;
	margin-top: 0px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	border: 3px solid #013b65;
	font-family: 'Lato', sans-serif;
	font-size: 14pt;
	color: #013b65;
	border-radius: 15px;
	box-sizing: border-box;
	}

input:hover {
	color: gray;
	border: 1px solid white;
	background-color: #013b65;
}

input:focus { 
	background-color: #013b65;
	color: white;
}

input[type=submit] {
	text-align: center;
	padding: .35vw 2vw;
	width: 170px;
	border-radius: 15px;
	background-color: #ffbf00;
	font-family: 'Macondo', cursive;
	font-size: 20pt;
	color: #095986;
}

input[type=submit]:hover {
	text-align: center;
	padding: .35vw 2vw;
	border-radius: 15px;
	background-color: #013b65;
	font-family: 'Macondo', cursive;
	font-size: 20pt;
	color: #ffbf00;
}

figure.col-contact {
	display: inline-block;
 	padding: 1vh 3vw; 
}

figure#contact-address, #contact-hours {
	text-align: center;
	padding: 1vh 3vw; 
	font-family: 'Lato', sans-serif;
	font-size: 1.5em;      
/*	line-height: 1.1em;  */
	letter-spacing: .015em;  
	color: white; 
}


/* ---------------------
   ----- MENU PAGE -----
   ---------------------  */

section.category {
	display: inline-block;
	width: 70%;
	margin-top: 1vh;
	padding-left: 15vw;
	padding-right: 15vw;
}

article.category-name {
	float: left;   
	display: inline;
	width: 100%;
	font-family: 'Oregano', cursive;
	font-size: 40pt;
	color: #095986;
	border-bottom: #095986 solid 1px;
}

article.category-name img {
	width: 60px;
	float: left;    
 	display: inline;
}

.item {
	clear: right;  
	margin-top: 0.25em;
	margin-bottom: .5em;
	padding-top: 1vh;
	width: 45%;
	display: block;
}


/* ----------------------------------
   ----- STORY & REVIEWS PAGES ------
   ---------------------------------- */

.story-content {
	display: inline-block;
	text-align: left;
	padding: 1vh 20vw;
}

.story-content article#Darius-history p {
/*	display: inline;  */
	text-align: left;
	width: 50%;
	font-family: 'Lato', sans-serif;
	font-size: 1.3em;
	color: #095986;  
}

.story-content article#Darius-review p {
	text-align: left;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding: 1vh 0vw;
	font-family: 'Lato', sans-serif;
	font-size: 1.3em;
	color: #095986;  
}

.story-content article#Customer-reviews p {
	text-align: center;
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 1vh 0vw;
	font-family: 'Lato', sans-serif;
	font-size: 1.3em;
	color: #095986;  
}

img#chef-photograph {
	float: left;
	width: 40%;
	margin-right: 3vw;
	max-width: 100%;
	box-shadow: 10px 10px 10px grey;
	border: solid #095986 1px;
	margin-top: 3vh;
	margin-bottom: 2vh;
}

.links {
	display: block;
	clear: both;
}

.links ul li{
	display: inline-block;
	color: #095986;
	padding-left: .9vw;
	padding-right: .9vw;
}

.links ul li a {
	color: #095986;
	text-decoration: none;
}

.links ul li a:visited {
	color: #095986;
}

.links ul li a:active {
	color: #ffbf00;
}


/*  MEDIA SCREEN BREAKPOINTS  */

@media screen and (min-width: 1366px) and (max-width: 1919px) {

	.story-content article#Darius-history p {
		float: none;
		text-align: left;
		width: 100%;
		margin-top: 1vh;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

}

/* if viewport increases AFTER hamburger icon has been pressed and
	it disappears, this will erase the mobile nav from the screen  */

@media screen and (min-width: 768px) {
	nav-2 {
		display: none; 
	}
}

@media screen and (min-width: 513px) and (max-width: 1365px) {

	header {
		padding: 1vh 10vw;  
	}

	footer section#address, section#hours {
		padding: 2vh 2vw;
		font-size: 1em;  
	}

	footer section#logo2 {
		padding: 2vh 1vw; 
 		vertical-align: top;
	}

	.fade-in-page-title {
		position: static;
	}

 	#page-title-review {
		position: static;
	}

	.item {
		width: 48%;
		margin: 0vw;
	}

	h4 {
		font-size: 1.8em;
	}

	h5 {
		font-size: 1.6em;
	}

	input[type=text] {
		text-align: center;
		background-color: white;
		width: 40%;
	}

	.story-content {
		display: inline-block;
		text-align: left;
		padding: 1vh 10vw; 
	}

	img#chef-photograph {
		float: left;
		width: 50%;
	}

	.story-content article#Darius-history p {
		float: none;
		text-align: left;
		width: 100%;
		margin-top: 1vh;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	#google-map {
		margin-left: 5vw;
		margin-right: 5vw;
	}

}


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

	header section#logo {
		float: none; 
	}

	header section#logo img {
		width: 200px;
	}

	header section#icons {
		float: none;
	}

	header section#icons img#instagram {
		width: 40px;
		padding: 0vh 1vh;
	}

	header section#icons img#facebook {
		width: 40px;
		padding: 0vh 1vh;
	}

	.fade-in-page-title {
		position: static;
	}

 	#page-title-review {
		position: static;
	}

	nav {
		display: none;
	}

	button#hamburger-icon {
		left: 38px;
	}

	h1 {
		font-size: 36pt;
	}

	h4 {
		font-size: 1.8em;
	}

	h5 {
		font-size: 1.6em;
	}

	.category {
		display: inline-block;
		width: 96%;  
		color: #095986;
		padding-left: 0vw;
		padding-right: 0vw;
	}


	#google-map {
		margin-left: 5vw;
		margin-right: 5vw;
	}

	iframe#map {
		width: 85%;
		height: 45vh;
		border: solid black 2px;
	}

	input[type=text] {
		text-align: center;
		background-color: white;
		width: 65%;
	}

	img#chef-photograph {
		float: none;
		text-align: center;
		width: 75%;
		max-width: 100%;
		margin-left: 10%;
		margin-right: 10%;
		margin-bottom: 1vh;
	}

	.story-content {
		display: block;
		padding: 1vh 10vw; 
	}

	.story-content article#Darius-history p {
		float: none;
		width: 100%;
		margin-top: 1vh;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
		font-size: 1.1em;
	}

	.story-content article#Customer-reviews p {
		text-align: center;
		width: 100%;
		font-size: 1.1em;
	}

	.story-content article#Darius-review p {
		font-size: 1.1em;
	}

	footer {
		margin-top: 4vh;
	}

	footer section.col {
		display: block;
		vertical-align: top;
		padding: 1vh 3vw;  
		margin-top: 0vh;
		margin-bottom: 0vh;
 		margin-left: 0vw;
		margin-right: 0vw;   
     }

	footer section#logo {
    	display: block;
    	padding: 1vh 6vw;  
		vertical-align: top;
	}

	main p {
		font-size: 1.4em;
		padding-left: 16vw;
		padding-right: 16vw;
	}

	.item {
		display: block;
		width: 100%;
		margin: 0vw;
	}

} 


