/*--
            
                                      
  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: "Avenir Next", "Century Gothic", sans-serif;
	}

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

 @font-face {
	font-family: "Avenir Next";
 	src: url("fonts/Avenir-Next.ttc");
  }

a {
	text-decoration: none;
}

/*-- 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;}
	}


/*-- CSS ANIMATION --*/

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

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

	/*-- NAV MENU --*/

		/*-- menu wrapper --*/
		#navi {
			width: 100%;
			position: sticky;
			position: -webkit-sticky; /* Safari */
			top: 0;
			text-align: right;
		}

		.active a {
			background-color: maroon;
		}

		/*-- hide the hamburger --*/
		#navi label, #hamburger { display: none; }

		/*-- horizontal menu layout --*/
		#navitems {
			text-align: center;
			list-style: none;
		}

		#navitems li {
			display: inline;
			background-color: #ae1f24;
		}

		#navitems a {
			color: white;
			text-decoration: none;
			padding: 0px 20px 0px 20px;
		}
		#navitems a:hover {
			background-color: #yellow;
		}

	/*-- HAMBURGER MENU --*/

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

		/*-- reveal the hamburger --*/
		#navi label { 
		    display: inline-block; 
		    color: white;
		    background: #a02620;
		    font-style: normal;
		    font-size: 1.5em;
		    padding: 5px 15px 10px 15px;
		}

		/*-- vertical menu layout --*/
		#navitems a {
			box-sizing: border-box;
			display: block;
			margin-left: 60%;
			width: 40%;
			padding: 5px 0px 5px 0px;
			background-color: #a02620;
			border-top: 3px solid #fff;
		}

		/*-- toggle the hamburger on / off --*/
		#navitems { display: none; }
		#navi input:checked ~ #navitems { display: block; }
		}

/*-----------------------------*/
/*------ GENERAL STYLING ------*/
/*-----------------------------*/

h1 {
	font-family: "Run Wild";
	font-size: 1.67em;
}

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

h3 {
	font-size: 1.33em;
}

h4 {
	font-size: 1.75em;
}

.button {
	background-color: #ae1f24;
	padding: 10px;
	width: 15em;
	margin: auto;
	transition: transform 1s;
}

.button:hover {
	transform: scale(1.05);
		-ms-transform: scale(1.05);
		-webkit-transform: scale(1.05);
	background-color: crimson;
}

.buttonlink {
	color: white;
}

.buttonlink:hover {
	color: lemonchiffon;
}


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

.socialmedia li {
	display: inline;
	list-style: none;
}

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

menu {
	margin: auto;
	width: 80vw;
	min-height: 50vh;
	padding: 20px;
	background-color: white;
	border: 2px solid #f0f0f0;
}

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

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;
}



.column-one {
	width: 49%;
	height: 100%;
	float: left;
	text-align: center;
	background-color: yellow;
}

.column-two {
	width: 49%;
	height: 100%;
	float: right;
	text-align: center;
	background-color: yellow;
}


/*-----------------------------------------------*/
/*-- position sensitive stuff to watch out for --*/
/*-----------------------------------------------*/

.logo {
		width: 40vw;
		margin: auto;
		padding: 10px 0px 5px 0px;

}

article {
		background-image: url("img/chili-pepper.jpg");
		background-repeat: no-repeat,
		background-position: center;
		background-size: cover;
		margin: auto;
		height: 40vh;
		max-width: 90vw;

}

.img-overlay {
		background-color: white;
		margin: auto;
		position: relative;
		text-align: center;
		transition: transform 1s;
		width: 35%;
		top: 42.5%;
	}

	.img-overlay:hover {
		transform: scale(1.15);
			-ms-transform: scale(1.15);
			-webkit-transform: scale(1.15);
		}

.txt-overlay {
	background-color: white;
	color: #ae1f24;
	font-size: 1.37em;
	padding: 15px;

}

	.txt-overlay:hover {
		color: white;
		background-color: firebrick;
	}

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

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

.news {
	text-align: left;
	padding-top: 30px;
	margin: auto;
	width: 50vw;
}

.newsitem {
	padding-top: 15px;
}


/*-----------------------------*/
/*-- RESPONSIVE DESIGN RULES --*/
/*-----------------------------*/


/*-- MOBILE: < 668px --*/

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

	.logo {
		width: 70vw;
		padding-bottom:5px;
		background-color: ;
	}

	article {
		height: 30vh;
		max-width: 90vw;
	}

	.img-overlay {
		width: 32.5%;
		top: 40%;
	}

	.txt-overlay {
		font-size: 1.25em;
		padding: 10px;
	}

	.news {
		width: 85vw;
		background-color: ;
	}
}


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

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

	nav {
		font-size: 1.15em;
	}

	.logo {
			width: 58.5vw;
			padding: 10px 0px 5px 0px;
			background-color: ;

	}

	article {
			height: 40vh;
			max-width: 90vw;

	}

	.img-overlay {
			width: 35%;
			top: 42.5%;
	}

	.txt-overlay {
		font-size: 1.37em;
		padding: 15px;

	}

	.landingpage {
		font-size: 1.1em;
	}

	.news {
		width: 75vw;
		background-color: ;
	}

}

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

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

	nav {
		font-size: 1.25em;
	}

	.logo {
		width: 40vw;
		margin: auto;
		padding: 10px 0px 5px 0px;
		background-color: ;

	}

	article {
		height: 55vh;
		max-width: 95vw;
	}

	.img-overlay {
		width: 30%;
		top: 42.5%;
	}

	.txt-overlay {
		font-size: 1.5em;
		padding: 20px;
	}

	.landingpage {
		font-size: 1.15em;
	}

	.news {
		padding-top: 30px;
		width: 50vw;
		background-color: ;
	}

}

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

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

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

	nav {
		font-size: 1.35em;
	}

	.logo {
		width: 30vw;
		margin: auto;
		padding: 10px 0px 5px 0px;

	}

	article {
		background-image: none;
	}

	.img-overlay {
		width: 25%;
		top: 42.5%;
	}

	.txt-overlay {
		font-size: 1.75em;
		padding: 25px;
	}

	.landingpage {
		font-size: 1.2em;
	}

	h1 {
		font-size: 2em;
	}

	.news {
		padding: 30px;
		width: 50vw;
		background-color: white;
	}

}