@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;
}

h1 {margin-left: 50px;}

p {max-width: 600px;}

/* ==========================================================================
   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: block;
	float: right;
	top: 25px;
	right: 50px;
	position: absolute;
	text-decoration: none;
	font-size: 3em;
	color: white;
	z-index: 999;
}
/*
#navigation {
	display: none;
	position: absolute;
	padding-top: 175px;
	z-index: 998;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255,0,0,0) 0%, black 22%, black 100%);
}

#navigation li a {
	color: white;
	font-size: 3em;
	text-decoration: none;
	width: 100%;
	margin-left: 50px;
	padding: 10px;
}

#navigation li a:hover {
	background: #2b2b2b;
}

.submenu {
	opacity: 0;
	position: absolute;
	background-color: red;
	color: pink;
}*/

/* ==========================================================================
   Content
   ========================================================================== */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 30px;
	max-width: 1600px;
	margin: 0 auto 30px;
}
article {
	position: relative;
}
.article-img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	border: 1px solid #000;
	cursor:pointer;
}
.article-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 10px;
	background-color: rgba(255,255,255,0.8);
	color: black;
}

.container p {
	text-indent: 30px;
}
.container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	grid-template-areas:
		"a b"
		"c b"
		"e d"
		"f f";
	padding: 10px;
	align-items: start;
	margin-left: 15px;
	margin-right: 15px;
}
.item1 {
	grid-area: a;
}
.item2 {
	grid-area: b;
}
.item3 {
	grid-area: c;
}
.item4 {
	grid-area: d;
}
.item5 {
	grid-area: e;
}
.item6 {
	grid-area: f;
}
.about-block {
	text-align: left;
}

/* Lightbox */
.modal-content .column {
	float: left;
	width: 25%;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: black;
}
.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 600px;
}
.close {
	color: white;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
}
.close:hover, .close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
}
.mySlides {
	display: none;
}
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
}
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover {
	background-color: rgba(0, 0, 0, 0.8);
}
.numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
.caption-container {
	text-align: center;
	background-color: black;
	padding: 2px 16px;
	color: white;
}
img.demo {
	opacity: 0.6;
	max-width: 150px;
	max-height: 150px;
}
.active, .demo:hover {
	opacity: 1;
}
img.hover-shadow {
	transition: 0.3s;
}
.hover-shadow:hover {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Remove when complete */
.hidething {
	opacity: 1;
}

/* ==========================================================================
   Slider
   ========================================================================== */
.slick-slide img {
	max-height: 600px;
	height: 70vh;
}
.contain {
	position: relative;
	text-align: center;
	border-style: solid;
	border: thin;
	border-color: black;
	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?)

Gallery:
- Click to enlarge (JavaScript?) with dimmed background, NOT to open image file
- Add thin solid border

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
- Move last script (modal/lightbox) to script.js
*/