@charset "utf-8";
/* CSS Document */
/* Body */
body  {
	/* font-family: "Arial", "Sans-serif"; */
	font-family: 'Roboto', sans-serif;
	background-color: #000000;
}
/* Container */
.container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	height: 1000px;
	background-color: #000000;
}
/* Provide a landing spot for the Home link */
.home {}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #000000;
  padding: 10px 10px 10px 10px;
  border-bottom: 1px solid #FFBB00
}

/* Style the header links */
.header a {
  float: left;
  color: white;
  padding: 12px;
  text-decoration: none;
  font-size: 18px; 
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
/*  font-size: 25px;
  font-weight: bold;*/
 	vertical-align: middle;
	width: 350px;
	color: #FFBB00;
 }

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #9F6B00;
  color: white;
}

/* Ensure the background color on the logo mouse-over is black */
.header a.logo:hover {
	background-color: #000000;
	color: #FFBB00;
}

/* Style the active/current link*/
.header a.active {
  background-color: #FFBB00;
  color: black;
}

/* Float the link section to the right */
.header-right {
	float: right;
	padding: 35px 10px;
}

/* Style the introduction to bees section */
.intro {
	padding: 25px 0px 25px 0px;
	color: #FFFFFF;
	height: 350px;
}

/* Styles the section immediately below the intro section */
.text_column {
	background-color: #000000;
	width: 29%;
	text-align: justify;
	font-weight: lighter;
	line-height: 25px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	color: #A3A3A3;
}

/* Parallax Section */
.parallax {
	background-color: #000000;
	background-image: url("../images/parallax.png");
	/* background-image width: 90%; */
	height: 400px;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	color: #FFFFFF;
}

/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #000000;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
	width: 33%;
	text-align: center;
	float: left;
	margin-top: 35px;
	margin-left: -5px;
	margin-right: -3px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #52BAD5;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}

/* Add media query for responsiveness releated to columnar spacing in intro */
@media (max-width: 1078px){
	.text_column {
		width: 100%;
		text-align: left;
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;		
	}
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */ 
/* @media screen and (max-width: 768px) {*/
@media (max-width: 768px) {
	/*.logo {*/
	.header a.logo {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		float: none;	
	}
	.header a {
		float: none;
		display: block;
		text-align: center;
	}
	.header-right {
		float: none;
		padding: 10px;
	}
/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #000000;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
	width: 90%;
	text-align: center;
	float: left;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-bottom: 5px;
	color: #52BAD5;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}
}
