@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Acme');
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');

:root {
	--main-bg-color: rgba(17,17,17,0.50); 
	--main-bg-color2: rgba(17,17,17,0.70); 
}

#core{
	/*background: #806644 url(../images/Background.jpg) fixed;*/
	background: #806644 url('../images/Forrest.jpg') fixed;
    background-size:     cover;
    background-repeat:   no-repeat;
    background-position: center center;
	color: #FFFFFF;
	text-shadow: 1px 2px 3px black;
    font-family: 'Roboto', 'Arial';
}

#content{
	background: #806644 url(../images/Wood.png);
    background-position: center center;
}

a{
	text-decoration: none;
	color: #FFFFFF;
	text-shadow: 1px 2px 3px black;
}

.block{
	padding-top: 10px;
	padding-bottom: 10px; 
	background: #ddbb77 url(../images/WoodLight2.jpg);
	color: black;
	text-shadow: none;
	margin: 0px 20%;
	box-shadow: inset 5px 5px 5px -5px #443311, inset -5px -5px 5px -5px #EDDAB6;
}

.box{
	width: 90%;
	max-width: 1800px;
	margin: 0px auto;
	padding: 20px;
	background: var(--main-bg-color);
	box-shadow: 0px 0px 40px 40px var(--main-bg-color);
	border: none;
}

.title{
	padding: 80px 0px;
	font-size: 120px;
	color: rgba(255,255,255,1.00);
	align-content: center;
	text-align: center;
	text-shadow: 2px 5px 1px var(--main-bg-color2);
}

.menu {
	padding: 20px 0px;
}

.menu ul {
	display: flex;
	width: 100%;
	margin: 0px auto;
	font-size: 24px;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0px;
}
	
.menu li {
	display: inline-flex;
	background: #806644 url(../images/Wood.png);
	border-radius: 5px 5px 5px 5px;
	margin: 5px 10px;
	padding: 0px 10px;
	text-decoration: none;
	box-shadow: 1px 2px 3px black;
}
	
.menu li:hover {
	
}
	
.menu li a:hover {
	
}

.menu a {
	text-decoration: none;
}

#submenu{
	
}

#submenu img{
	-webkit-box-reflect: below -2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent) , to(rgba(250, 250, 250, 0.4)));
}

#content{
}


#footer{
	padding: 10px;
	color: rgba(255,255,255,0.75);
	text-align: right;
}


/* ------ Project Page ------ */

.projCont{
	display: inline-block;
	border: 1px solid rgba(150,150,150,0.75);
	padding: 10px;
}

.projCont>a{
	color: black;
	text-decoration: none;
	text-align: center;
	display: block;
	width: 100%;
}

.projCont>a>.title{
	font-size: 28px;
}

.projCont>a>.status{
	font-size: 10px;
}

.projCont>.description{
	width: 100%;
	font-size: 24px;
}

.PCLarge>a>.title{
	font-size: 64px;
}
.PCLarge>a>.status{
	font-size: 24px;
}

/* ------ Tutorial Page ------ */

.nextbtn, .prevbtn{
	display: block;
	width: 100%;
	font-size: 18px;
	margin: 10px;
}
.nextbtn::after{
	content: "►";
}
.prevbtn::before{
	content: "◄";
}


/* ------ Photos Page ------ */

.photo{
	cursor: pointer;
}

.photoLi{
	padding: 0px;
	margin: 20px auto;
	max-width: 1800px;
    color: #FFFFFF;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
}
.photoLiTitle {
    font-size: 42px;
	grid-column-end: span 4;
}

.photoLi img{
	max-width: 100%;
	max-height: 100px;
	box-shadow: 5px 10px 2px rgba(0,0,0,0.75);
}

#bigPhotoBlock{
	z-index: 2;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	border: 0px;
	margin: 0px;
	background: rgba(0,0,0,0.0);
}

#bigPhoto{
	display: block;
	box-shadow: 5px 10px 2px rgba(0,0,0,0.75); 
	box-shadow: 0px 0px 0px 10px rgba(255,255,255,1), 0px 0px 0px 10000px rgba(0,0,0,0.8); 
}

#bigPhotoBlurred{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
	padding: 0px;
	margin: 0px;
	background-image: url(../images/Background.jpg);
	background-position: center;
	background-size: cover;
	filter: blur(5px);
	-webkit-filter: blur(5px);
}

.photoBox{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas: auto;
	grid-gap: 20px;
	margin: 20px auto;
	max-width: 1800px;
}

.photoBox .photo{
	background-size: cover;
	background-position: center;
	background-repeat: space;
	box-shadow: 5px 10px 2px rgba(0,0,0,0.75);
	width: 100%;
	height: 300px;
}

.photoBox .vert{
	grid-row-end: span 2;
	height: 620px;
	background-position: bottom;
}

.photoBox .bigHorizontal{
	grid-row-end: span 2;
	grid-column-end: span 2;
	height: 620px;
	width: 844px;
}

/* ------ Contact Page ------ */

.contactform{
	margin: 40px 0px;
	width: 640px;
}

.contactform>input{
	width: 400px;
	height: 26px;
	border: 1px solid rgba(100,100,100,0.75);
	margin-bottom: 10px;
	padding: 4px;
	background: rgba(221,187,119,0.2);
	box-shadow: inset 5px 5px 5px -5px #443311, inset -5px -5px 5px -5px #EDDAB6;
}

.contactform>textarea{
	width: 400px;
	height: 80px;
	border: 1px solid rgba(100,100,100,0.75);
	padding: 0px;
	margin-bottom: 10px;
	padding: 4px;
	background: rgba(221,187,119,0.2);
	box-shadow: inset 5px 5px 5px -5px #443311, inset -5px -5px 5px -5px #EDDAB6;
}

.contactform>input[type=submit]{
	padding: 4px;
	background: rgba(221,187,119,0.2);
	box-shadow: 1px 1px 5px #443311, -1px -1px 5px #EDDAB6;
}


/* ------ Packages ------ */

.packages{
	width: 100%;
	display: inline-grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

.package{
	position: relative;
	background: #ddbb77 url(../images/WoodLight2.jpg); 
	color: #553311;
	text-shadow: none;
	width: 100%; 
	min-height: 200px; 
	display: inline-block;
	border: 1px solid #70370E;
}

.package .p-title{
	margin: 0px;
	text-align: center;
	text-decoration: underline;
}

.package .p-description{
	text-align: left;
}

.package .p-price{
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -50%;
	width: 100%;
}

@media only screen and (max-width: 1720px){
	.photoBox{
		width: 1440px;
	}
	.photoLi{
		width: 1440px;
	}
	.photoBox .photo{
		height: 240px;
	}
	.photoBox .vert{
		height: 500px;
	}
}
@media only screen and (max-width: 1440px){
	.photoBox{
		grid-template-columns: repeat(3, 1fr);
		width: 1024px;
	}
	.photoLi{
		width: 1024px;
	}
	.photoBox .photo{
		height: 200px;
	}
	.photoBox .vert{
		height: 500px;
	}
}

@media only screen and (max-width: 1024px){
	.photoBox{
		grid-template-columns: repeat(3, 1fr);
		width: 768px;
	}
	.photoLi{
		width: 768px;
	}
	.photoBox .photo{
		height: 160px;
	}
	.photoBox .vert{
		height: 340px;
	}
}

@media only screen and (max-width: 768px){
	.photoBox{
		grid-template-columns: repeat(2, 1fr);
		width: 480px;
	}
	.photoLi{
		width: 480px;
	}
	.photoBox .photo{
		height: 160px;
	}
	.photoBox .vert{
		height: 350px;
	}
}

@media only screen and (max-width: 480px){
	.title {
		font-size: 54px;
	}
	.photoBox{
		grid-template-columns: repeat(1, 1fr);
		width: 320px;
	}
	.photoLi{
		width: 320px;
		grid-template-columns: 1fr;
	}
	.photoLiTitle{    
		font-size: 24px;
		grid-column-end: auto;
	}
	.photoBox .photo{
		height: 210px;
	}
	.photoBox .vert{
		height: 480px;
	}
	.contactform{
		width: 320px;
	}
	.contactform>input{
		width: 200px;
	}
	.contactform>textarea{
		width: 200px;
	}
}

