/*--
            
                                      
  r9@@@x                x@@@6r        
 6@@@ @@@x            x@@@ @@@9       
6@@@@ @@@@@          @@@@@ @@@@9      
 L3@@ @@@@@          @@@@@ @@37       
  l38@@##8J          L8##@@83l        
                                      
             9@@@@9                   
         $    @@@@    $               
         @,   ;@@;   ,@               
          '@@@'  '@@@'                
                                      
site design, html, css, & tiny cat face
by Meredith Lewis. tyvm have a nice day

--*/

/*-- CSS RESET --*/

* {
	margin: 0;
	padding: 0;
	font-family: "Century Gothic", "Louis George Cafe", "Avenir Next", sans-serif;
	list-style-type: none;
	}

@font-face {
	font-family: "Run Wild";
 	src: url("fonts/RunWild-Demo.ttf");
  }

@font-face {
	font-family: "Louis George Cafe";
 	src: url("fonts/Louis-George-Cafe.ttf");
  }

@font-face {
	font-family: "Century Gothic";
 	src: url("fonts/Century Gothic");
  }

a {
	text-decoration: none;
	color: black;
}

/*--------- CSS KEYFRAMES ---------*/

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

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

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


@keyframes takeoutspin {
	0%		{transform: rotate(0deg);}
	100% 	{transform: rotate(359deg);}
	}

	@-moz-keyframes takeoutspin {
	0%		{transform: rotate(0deg);}
	100% 	{transform: rotate(359deg);}
	}

	@-o-keyframes takeoutspin {
	0%		{transform: rotate(0deg);}
	100% 	{transform: rotate(359deg);}
	}

	@-webkit-keyframes takeoutspin {
	0%		{transform: rotate(0deg);}
	100% 	{transform: rotate(359deg);}
	}


/*-------- CSS ANIMATION ---------*/

.fade-in {
	animation-name: fade-in;
	animation-duration: 1s;
}

.takeoutspin {
	animation-name: takeoutspin;
	animation-duration: 4s;
	animation-delay: 1s;
	animation-iteration-count: infinite;
}

/*-----------------------------------*/
/*------ RESPONSIVE NAVIGATION ------*/
/*-----------------------------------*/

@media screen and (min-width: 876px){

button#hamburger { display: none; }

nav {
	font-size: 1.25em;
	text-align: center;
	padding: 0 0 1em 0;
}

	nav li {
		display: inline-block;
		padding: .2em 1em .2em 1em;
		margin-right: .5em;
		background-color: #ecbe25;
	}

		nav li:hover {
			background-color: gold;
		}
}

li.order-online {
	background-color: crimson;
	margin-right: 0;
}

#order-online:hover {
	background-color: gold;
}

li#active {
	background-color: maroon;
}

li#active a {
	color: white;
}

/*--------- HAMBURGER ---------*/

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

button#hamburger {
			display: block;
			position: fixed;
			top: 0;
			z-index: 2;
			font-size: 2.25em;
			line-height: 1em;
			padding: .0em .25em .25em .25em;
			margin: .2em;
			color: black;
			background-color: #ecbe25;
			border: none;
			border-radius: 5%;
		}

	button#hamburger:hover {
		}

		#hamburger.toggled {
				background-color: black;
				color: #ecbe25;
			}

		nav {
			position: fixed;
			top: 0;
			font-size: 1.5em;
			text-align: left;
			width: 10.5em;
			padding: 2.75em 0 1em 0;
			background-color: rgba(240,220,180,0.9);
			top: -20em;
			transition: transform .5s;
			z-index: 1;
		}

			.slide-the-drawer {
				transform: translateY(20em);
			}

			nav li {
				padding-left: 1em;
			}

			nav li:hover {
				background-color: crimson;
			}

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

				nav ul li a:hover {
					text-decoration: none;
					color: white;
				}

li.order-online {
	background-color: rgba(255,255,255,0);
}

	li.order-online a {
		color: #ae1f24;
	}

}

/*-------------------------------*/
/*--------- BASE PAGE LAYOUT ----*/
/*-------------------------------*/

body {
		background-image: url("img/pexels-pale-mangoes-2.jpg");
		background-repeat: no-repeat,
		background-position: center;
		background-size: cover;
	}

header {
		width: 40vw;
		margin: auto;
		padding: 1em 0px .5em 0px;
}


.landingpage {
	padding: 15px;
	text-align: center;
}

.space {
	padding-top: 5px;
	padding-bottom: 5px;
}

/*-------------------------------*/
/*--------- TEXT STYLING --------*/
/*-------------------------------*/

h3 {
	font-family: "Run Wild";
	font-weight: 600;
	font-size: 1.67em;
}

h4 {
	font-size: 1.5em;
	color: #ae1f24;
}

.shh {
	float: bottom;
	background-color: rgba(255,255,255,.5);
	max-width: 20em;
}

	.shh a {
		color: #aaa;
	}
	
/*-----------------------------*/
/*-- RESPONSIVE DESIGN RULES --*/
/*-----------------------------*/


/*-- MOBILE: < 660px --*/

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

	body {
		background-image: none;
	}

	header {
		width: 75vw;
	}

	section {
		font-size: .85em;
	}

	menu {
		padding: 1em;
	}

	section.orderbox {
		padding: 1em;
	}
}


/*-- LARGE MOBILE / SMALL TABLET: 661px - 1024px --*/

@media screen and (min-width: 661px) and (max-width: 1024px) {

	body {
		background-image: none;
	}

	header {
		width: 55vw;
		padding: .3em 0 .2em 0;
	}

	menu {
		padding: 2em;
	}

	section.orderbox {
		padding: 2em;
	}
}

/*-- LARGE TABLET 1025px - 1480px --*/

@media screen and (min-width: 1025px) and (max-width: 1480px) {

	header {
		width: 40vw;
		padding: .3em 0 .2em 0;
	}

	menu {
		padding: 2.5em;
	}

	section.orderbox {
		padding: 2.5em;
	}
}

/*-- PLENTY OF REAL ESTATE: > 1481px --*/

@media screen and (min-width: 1481px) {

	header {
		width: 30vw;
		padding: .3em 0 .15em 0;
	}

	menu {
		padding: 3em;
	}

	section.orderbox {
		padding: 3em;
	}
}

/*-----------------------------*/
/*------ RESTAURANT MENU ------*/
/*-----------------------------*/

menu {
	margin: auto;
	width: 80vw;
	min-height: 50vh;
	background-color: white;
	border: 2px solid #f0f0f0;
	column-width: 500px;
		-webkit-column-width: 500px;
		-moz-column-width: 500px;
	column-gap: 6em;
		-webkit-column-gap: 6em;
		-moz-column-gap: 6em;
	column-rule: 1px dotted #ddd;
		-webkit-column-rule: 1px dotted #ddd;
     	-moz-column-rule: 1px dotted #ddd;

}

.menuhead {
	font-size: 2em;
	margin: 15px 0px 10px 0px;
}

.icon {
	position:relative;
	top:10px;
}

h5 {
	font-size: 1.15em;
	color: firebrick;
	display: inline;
}

h6 {
	font-size: 1.15em;
	display: inline;
	text-align: right;
	float:right;
}
.desc {
	margin-bottom: 10px;
}


/*-----------------------------*/
/*-------- ORDER ONLINE -------*/
/*-----------------------------*/


section.orderbox {
	margin: auto;
	width: 80vw;
	background-color: white;
	border: 2px solid #f0f0f0;
	margin-top: 2em;
}

form {
	text-align: left;
}

h3.placeorder {
	color: crimson;
	font-size: 2.25em;
	font-weight: bold;
	padding: 0 0 0.5em 0;
}

input {
	margin: .5em 0 1em 0;
	padding: .5em;
	font-size: 1em;
	color: black;
	border: 2px solid #ae1f24;
	background-color: white;
}

	input:hover {
		color: #000;
		border: 2px solid crimson;
		background-color: #fff066;
	}

	input:focus { 
	   	background-color: yellow;
	}

button#orderbutton {
	margin-top: 1em;
	font-size: 1.25em;
	background-color: crimson;
	color: white;
	padding: .25em .75em;
	border: none;
	border-radius: 5%;
	transition: transform 1s;
}

button#orderbutton:hover {
	background-color: gold;
	color: black;
	transform: scale(1.2);
		-ms-transform: scale(1.2);
		-webkit-transform: scale(1.2);
}

/*-----------------------------*/
/*-------- SOCIAL MEDIA -------*/
/*-----------------------------*/


footer {
	padding: 30px 0px 30px 0px;
	text-align: center;
}

.socialmedia li {
	display: inline-block;
}

#fb {
	width: 50px;
	height: 50px;
	background-image: url("img/fb-icon.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}

	#fb:hover {
	background-image: url("img/fb-icon-2.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}

#ig {
	width: 50px;
	height: 50px;
	background-image: url("img/ig-icon.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}

	#ig:hover {
	background-image: url("img/ig-icon-2.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}

#tw {
	width: 50px;
	height: 50px;
	background-image: url("img/tw-icon.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}

	#tw:hover {
	background-image: url("img/tw-icon-2.png");
	background-repeat: no-repeat,
	background-position: center;
	background-size: cover;
}


/*---------------------------
	hex color definitions

	logo yellow: #ecbe25
	dark red: #ae1f24
	bright red: crimson;

----------------------------*/