@charset "utf-8";
/* CSS Document */

/* ==========================================================================
   Base
   ========================================================================== */
html, body {
	overflow-x: hidden;
	background-color: white;
	margin: 0;
	padding: 0;
	height: 100%;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
	background: linear-gradient(to bottom, #2b2b2b 0%, black 70%, white 70%, white 100%);
	height: 175px;
	margin-bottom: 20px;
}

#logo img {
	background: linear-gradient(to bottom, #2b2b2b 0%, black 70%, black 100%);
	height: 125px;
	padding: 25px;
	margin-left: 2em;
	float: left;
} /* CLAPPING SO HARD ABOUT HOW I GOT THIS WORKING QUICKLY WOO */

#navburger {
	display: none;
}

#navigation {
	display: block;
	float: right;
	padding-top: 35px;
	margin-right: 40px;
	font-size: 2em;
	max-width: 65vw; /* Temp fix for overlaying logo; use vmin/max for auto font-size? Setting width forces text to wrap */
}

#navigation li {
	float: left;
}

#navigation li a {
	color: #fff;
	text-decoration: none;
	font-style: italic;
	padding-left: 50px;
}

#navigation li a:after {
	content: '      .' ;
	white-space: pre;
}

#navigation li a:hover {
	/* background-color: black; */
}

.design:hover .submenu {
	opacity: 1;
	position: relative;
}

.submenu {
	opacity: 0;
	position: absolute;
	background-color: red;
	color: pink;
}

.hid {
	display: none;
}

/* ==========================================================================
   Content
   ========================================================================== */
.wrapper {
	float: left;
	position: relative;
}

/* Remove when complete */
.hidething {
	opacity: 0;
}

.wraptext {
	display: grid;
	grid-template-columns: 250px 1fr 1fr 250px;
	grid-gap: 50px;
	background-color: #fff;
	color: #444;
}
.item1 {
	grid-column: 2;
	grid-row: 1;
}
.item2 {
	grid-column: 3;
	grid-row: 1 2;
}
.item3 {
	grid-column: 2;
	grid-row: 2;
}
.item4 {
	grid-column: 3;
	grid-row: 3;
}
.item5 {
	grid-column: 2;
	grid-row: 3;
}
.item6 {
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row: 4;
}
#cont0 {
	grid-column: 1;
	grid-row: 1;
}
#cont1 {
	grid-column: 2;
	grid-row: 2;
}
#cont2 {
	grid-column: 3;
	grid-row: 2;
}

/* ==========================================================================
   Slider
   ========================================================================== */
.slick-slide img {
	max-height: 600px;
	height: 70vh;
}
.contain {
	position: relative;
	text-align: center;
	border-style: ridge;
	margin-left: 50px;
	margin-right: 50px;
}
.contain:hover img {
	opacity: 0.3;
}
.contain:hover .imgdescrip, .contain:hover .imgname { /* How to simplify? */
	opacity: 1;
}
.imgname {
	opacity: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 30px;
	color: white;
	text-shadow: 
		1px 1px 0 #000, 
		-1px -1px 0 #559fff, 
		1px -1px 0 #551fff, 
		-1px 1px 0 #000;
}
.imgdescrip {
	opacity: 0;
	position: absolute;
	bottom: 10px;
	left: 10px;
}
.slick-prev, .slick-next{
	z-index: 997;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
	background-color: white;
	bottom: 0;
	width: 100%;
	text-align: center;
}
.fa-li, .fa-li a {
	display: inline-block;
	color: #b2b2b2;
	font-size: 1.5em;
	text-decoration: none;
	padding:0.2em;
}

/* ==========================================================================
   Miscellaneous
   ========================================================================== */

/* ================= TO FIX (in order of priority/section) ================= */
/* 
Navigation:
- Change hover text color instead of background (could not do while working on mobile vs web)
- Get submenus working
- Fix navigation options to get smaller once it hits logo; max-width 65vw temp fix

Carousel: 
- Fix responsiveness
- Gradient from bottom instead of overlay
- Increase spacing between images (preferably: side images are cut off at the same width)
- Fix left button not working (covered by image UNTIL hovered over.. why?)

Footer:
- Centering of font-awesome block; why is there space on the right?
- Stick to bottom, but get pushed down when content is larger than screen

Misc:
- Add favicon
*/