@charset "UTF-8";

/* bawdy yawdee yawdee yawdee */

* {
	box-sizing: border-box;
	margin: 0;
    padding: 0;
}



body {
  	display: flex;
  	min-height: 100vh;
  	flex-direction: column;
  	justify-content: flex-start;
  	color: #000;
  	font-size: 14px;
  	font-family: "Nunito Sans", serif;
  	font-weight: 300;
  	text-underline-offset: 4px;
}

.content {
  	flex: 1;
}

.construction {
	text-align: center;
	padding-bottom: 50px;
}

.construction img {
	width: 78%;
}

a {
  	text-decoration: none;
  	color: inherit;
}

a:hover {
  	text-decoration: inherit;
}

img {
    -webkit-filter: brightness(100%);
}

h1 {
  	color: #000;
  	font-size: 30px;
  	font-family: "Amatic SC", serif;
  	font-weight: 700;
  	font-style: normal;
  	letter-spacing: 0.08em;
}

h2 {
  	color: #000;
  	font-size: 18px;
  	font-family: "Nunito Sans", serif;
  	font-weight: 200;
  	font-style: normal;
}

h3 {
  	color: #000;
  	font-size: 12px;
  	font-family: "Nunito Sans", serif;
  	font-weight: 400;
  	font-style: normal;
}

h4 {
  	color: #000;
  	font-size: 20px;
  	font-family: "Amatic SC", serif;
  	font-weight: 700;
  	font-style: normal;
  	letter-spacing: 0.08em;
}

h5 {
	color: #fff;
  	font-size: 25px;
  	font-family: "Amatic SC", serif;
  	font-weight: 400;
  	font-style: normal;
  	letter-spacing: 0.08em;
}

h6 {
  	color: #333;
  	font-size: 10px;
  	font-family: "Nunito Sans", serif;
  	font-weight: 200;
  	font-style: normal;
}

h7 {
  	color: #000;
  	font-size: 16px;
  	font-family: "Amatic SC", serif;
  	font-weight: 400;
  	font-style: normal;
  	letter-spacing: 0.08em;
}

.slanted {
	font-style: italic;
}

.para {
	padding-bottom: 14px;
}

.para a:link {
	color:#000;
 	font-weight: bold;
	text-underline-offset: 2px;
	text-decoration: underline;
}
.para a:hover {
	text-decoration: none;
}

.smolpara {
	padding-bottom: 10px;
}


		/* HEADER */

		header {
			padding-top: 20px;
		    padding-bottom: 10px;
		    padding-left: 50px;
		    padding-right: 50px;
		    display: flex;
		    justify-content: space-between;
		}
		
		header a {
			text-decoration: none;
		}	

		header .left{
		}

		header .title {
			width: 200px;
		    color: #000;
		    font-size: 28px;
		  	font-family: "Amatic SC", serif;
		  	font-weight: 700;
		  	font-style: normal;
		  	letter-spacing: 0.08em;
		}

		header .subtitle {
		  	width: 200px;
		  	color: #000;
		  	font-size: 14px;
		  	font-family: "Nunito Sans", serif;
		  	font-weight: 400;
		  	font-style: normal;
		  	letter-spacing: 0.04em;
		}

		header .right {
		  	padding-top: 10px;
		  	display: inline-block;
		}

		header .menu {
		  	width: 200px;
		  	text-align: right;
		  	color: #000;
		  	font-size: 12px;
		  	font-family: "Nunito Sans", serif;
		  	font-weight: 400;
		  	font-style: normal;
		  	word-spacing: 10px;
		  	letter-spacing: 0.04em;
		}

		.responsivepic {
		  	width: 100%;
		  	height: auto;
		}
		/* HEADER RESPONSIVE */

		@media (max-width: 768px) {
				header {
				padding-left: 20px;
				padding-right: 20px;
				}
			}



/* NAVIGATION MENU */

ul {
	list-style: none;
  	height: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: space-around;
}

ul a {
  	color: #000;
  	font-size: 12px;
  	font-family: "Nunito Sans", serif;
  	font-weight: 400;
  	font-style: normal;
}

ul li {
  	padding: 5px;
  	margin-left: 10px;
}

ul li:hover {
	transform: none;
}



			/* BURGER */

			#hamburger-icon {
				margin: auto 0;
			  	display: none;
			  	cursor: pointer;
			}

			#hamburger-icon div {
			  	width: 35px;
			  	height: 3px;
			  	background-color: #000;
			  	margin: 6px 0;
			  	transition: 0.4s;
			}

			.open .bar1 {
			  	-webkit-transform: rotate(-45deg) translate(-6px, 6px);
			  	transform: rotate(-45deg) translate(-6px, 6px);
			}

			.open .bar2 {
			  	opacity: 0;
			}

			.open .bar3 {
			  	-webkit-transform: rotate(45deg) translate(-6px, -8px);
			  	transform: rotate(45deg) translate(-6px, -8px);
			}

			.open .mobile-menu {
			  	display: flex;
			  	flex-direction: column;
			  	align-items: center;
			  	justify-content: flex-start;
			}

			.mobile-menu {
			  	display: none;
			  	position: absolute;
			  	top: 10px;
			  	left: 50%;
			  	height: 110px;
			  	width: 110px;
			}

			.mobile-menu li {
			  	margin-bottom: 10px;
			}

			/* RESPONSIVE BURGER */

			@media only screen and (max-width: 600px) {
			  header nav {
				display: none;
			  }

			  #hamburger-icon {
				display: block;
			  }
			}



/* MAIN */

main {
	padding-top: 40px;
  	padding-bottom: 25px;
  	padding-left: 40px;
  	padding-right: 40px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
}

/* MAIN RESPONSIVE */

@media (max-width: 768px) {

main {
  	padding-top: 40px;
  	padding-bottom: 25px;
  	padding-left: 2px;
  	padding-right: 2px;
}
}


			/* WORK PORTFOLIO */

			.grid-container {
				display: grid;
				grid-template-columns: repeat(3, 1fr);
				gap: 10px;
				width: 100%;
				padding: 10px;
			}

			.grid-item {
				position: relative;
				background-color: #ddd;
				display: flex;
				justify-content: center;
				align-items: center;
				overflow: hidden;
			}

			.grid-item img {
				width: 100%;
				height: 100%;
				object-fit: cover;	
				-webkit-filter: brightness(100%);
    			filter: brightness(100%);
    			transition: all 0.3s ease-in-out;
			}

			.grid-item img:hover {
				-webkit-filter: brightness(78%);
				-webkit-transition: all 1s ease;
				-moz-transition: all 1s ease;
				-o-transition: all 1s ease;
				-ms-transition: all 1s ease;
				transition: all 1s ease;
			}

			.grid-item .text-overlay {
				position: absolute;
				top: 50%;
				left: 50%;
				transform: translate(-50%, -50%);
				color: #fff;
				padding: 5px 10px ;
				font-size: 20px;
				font-family: "Amatic SC", serif;
				text-align: center;
				letter-spacing: 0.08em;
				opacity: 0;
				transition: opacity 0.3s ease-in-out;
			}

			.grid-item:hover .text-overlay {
				opacity: 1;
				color: #fff;
			}

			.grid-item a {
				display: flex;
				width: 100%;
				height: 100%;
			}

			.grid-item a img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			/* RESPONSIVE */

			@media (max-width: 1024px) { /* iPad */
				.grid-container {
				 grid-template-columns: repeat(2, 1fr);
				}
			}


			@media (max-width: 768px) { /* iPhone */
				.grid-container {
				 grid-template-columns: repeat(1, 1fr);
				}
			}



/* ABOUT */

.about-container {
	display: flex;
    flex-wrap: wrap;
}

.about-left {
    flex: 0 0 50%;
    padding: 20px;
}

.about-right {
    flex: 1;
    padding: 20px;
}

/* RESPONSIVE */

@media (max-width: 768px) {
	.about-container {
	flex-direction: column;
	}

	.about-left, .about-right {
	flex: 1 1 100%;
	}
	}



			/* PROJECTS */

			.project-container {
				display: flex;
				flex-wrap: wrap;
			}

			.project-left {
				flex: 0 0 35%;
				padding: 20px;
			}

			.project-right {
				flex: 1;
				padding: 20px;
			}

			/* RESPONSIVE */

			@media (max-width: 768px) {
				.project-container {
				 flex-direction: column;
				}

				.project-left, .project-right {
				 flex: 1 1 100%;
				 padding-bottom: 0px;
				}
			}



/* BOTTOM NAVIGATION */

.bottom {
    display: flex;
    justify-content: space-between;
	margin-top: auto;
    align-items: center;
	padding-bottom: 20px;
	padding-left: 50px;
	padding-right: 50px;
    position: relative;
    width: 100%;
}


			/* SPECS */

.specgrid-container { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
}

.specgrid-item {
    background-color: #fff;
    padding: 15px;
}

.specgrid-item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.specgrid-item p {
    font-size: 14px;
	padding-top: 10px;
}

/* RESPONSIVE SPECS */
			@media (max-width: 1024px) { /* iPad */
				.specgrid-container {
				 grid-template-columns: repeat(2, 1fr);
				}
			}


			@media (max-width: 768px) { /* iPhone */
				.specgrid-container {
				 grid-template-columns: repeat(1, 1fr);
				}
			}



/* FOOTER */

			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
			}

			.footer {
				display: flex;
				justify-content: space-between;
				margin-top: auto;
				align-items: center;
				padding-top: 10px;
				padding-bottom: 20px;
				padding-left: 50px;
				padding-right: 50px;
				color: #000;
				font-size: 10px;
				font-family: "Nunito Sans", serif;
				position: relative;
				width: 100%;
			}

			.footer-left p {
				margin: 0;
			}

			.footer-right .social-link {
				color: white;
				text-decoration: none;
				margin-left: 10px;
			}

			.footer-right .social-link:hover {
				text-decoration: underline;
			}

			/* FOOTER RESPONSIVE */

			@media (max-width: 768px) {
				.footer {
				padding-left: 20px;
				padding-right: 20px;
				}
			}