/*-- 
                 _..--+~/@-~--.
             _-=~      (  .   "}         _   __  __   _
          _-~     _.--=.\ \""""    )\/) /_) )_  / _  /_) )\ ) 
        _~      _~       \ \_\    (  ( / / (__ (__/ / / (  (                
       _~     _~          '--'
      =      _=               :      :       ____                   
___  |      ;                            ____ '~--.~.
     ;      ;  MAEGAN BY MAEGAN             _____  } |
  ___=       \ ___ __     __..-...__           ___/__/__
     :        =_     _.-~~          ~~--.__
_____ \         ~-+-~                   ___~=_______
     ~@#~~ == ...______ __ ___ _--~~--_
                                                    =
*/

header#canvas {
	width: 100%;
	height: 100%;
	background-color: white;
}

body {
  text-align: center;
  height: 5000px;
}

/* FONT DISPLAY*/
@font-face {
	font-family: fauneheader;
	src: url("../fonts/Faune-DisplayBlack.otf");
}

@font-face {
	font-family: faunesubheader;
	src: url("../fonts/Faune-TextBold.otf");
}

/*HEADER + TITLES*/
h1 {
	font-family: 'fauneheader', sans-serif;
	font-size: 40pt;
}

/*SLOGANS, MESSAGES*/
h2 {
	font-family: 'faunesubheader', sans-serif;
	font-size: 30pt;
}

/*SUB HEADER*/
h3 {
	font-family: 'faunesubheader', sans-serif;
	font-size: 22pt;
	color:#CD7551
}

/*NAVIGATION*/
h4 {
	font-family: 'faunesubheader', sans-serif;
	font-size: 15pt;
}

/*BODY TEXT + BUTTON*/
h5 {
	font-family: 'helvetica-neue', sans-serif;
	font-size: 12pt;
}

/*FOOTER TEXT*/
h6 {
	font-family: 'faunesubheader', sans-serif;
	font-size: 12pt;
}

/*MAIN-TOP NAVIGATION*/
ul {
  list-style-type: none;
  text-align: center;
  font-size: 15pt;
  margin-top: 100px;
}

li {
    list-style-type: none;
    display: inline-block;
    margin: 10pt;
}

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

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

a:hover {
    color: white;
}

.current-page {
   color: #CD7551;
  }

/*MENU: LOGO*/
div.homelogo {
 	float: left;
 	width: 10%;
 	height: 100px;
 	margin-left: 200px;
 	margin-top: -30px;
 }

 #div-homelogo {
	top: 30px;
	transition: transform 0.2s;
		-moz-transition: transform 0.2s;
		-ms-transition: transform 0.2s;
		-o-transition: transform 0.2s;
		-webkit-transition: transform 0.2s;
}

div.homelogo:hover {
	transform: rotate(10deg);
		-moz-transform: rotate(10deg);
		-ms-transform: rotate(10deg);
		-o-transform: rotate(10deg);
		-webkit-transform: rotate(10deg);
 }

 /*MENU: BRUNCH*/
 article.brunchmenu {
	text-align: left;
	margin-left: 200px;
	line-height: 2px;
	margin-top: 200px;
}

.breakfast-image-one {
	margin-left: 800px;
	margin-top: -1300px;
}

.breakfast-image-two {
	margin-left: 800px;
	margin-top: 30px;
}

.breakfast-image-three {
	margin-left: 800px;
	margin-top: 10px;
}

 /*MENU: DINNER*/
 article.dinnermenu {
	text-align: left;
	margin-left: 200px;
	line-height: 2px;
	margin-top: 400px;
}

.dinner-image-one {
	margin-left: 800px;
	margin-top: -1800px;
}

.dinner-image-two {
	margin-left: 800px;
	margin-top: 15px;
}

.dinner-image-three {
	margin-left: 800px;
	margin-top: 15px;
}

.dinner-image-four {
	margin-left: 800px;
	margin-top: 15px;
}


/*FOOTER (ALL PAGES)*/
section.footer {
	width: 100%
	height: 800px;
}

article.intothewildlogo {
	margin-top: 800px;
	
}

hr.footerline {
	border-top: 5px solid #CD7552;
}

/* -- FOOTER-- */

article.intothewildlogotext {
	margin-top: 100px;
	margin-left: -1000px;

}

article.intothewildfooteraddress {
	color: #CD7551;
	margin-left: -400px;
	margin-top: -75px;
	line-height: 2px;
}

article.intothewildfooternumber {
	color: #CD7551;
	margin-left: 100px;
	margin-top: -50px;
	line-height: 2px;
}

article.footerlinks {
	color: #F6A31C;
	margin-left: 1000px;
	display: inline-block;
	margin-top: -300px;

}

article.footerlinks:hover {
	color: #2D3D4F;
}

/* -- SCREEN DISPLAY-- */
.show-mobile,.show-tablet,.show-desktop {
	display: none;
}
/* MOBILE DISPLAY*/

@media screen and (max-width: 600px) {
	.figurescreen#mobile {
		max-width: 375px;
		height: 627px;
		background-size: contain;
		background-color: white;
}
.show-mobile {
	display: initial;
	}
}
/* TABLET DISPLAY*/
@media screen and (min-width: 767px) and (max-width: 1365px) {
	.figurescreen#tablet {
		max-width: 768px;
		height: 1024px;
		background-size: contain;
		background-color: black;
	}
	.show-tablet {
	display: initial;
	}
}

