@import url("https://use.typekit.net/iom2ahd.css");

/****************************** COLOR PALLETTE START ***************************
#ffffff - White
#f8f7ff - Michael's White
#1e1559 - Michael's Dark Blue
#aaddeb - Michael's Light Blue
#f5b133 - Michael's Dark Orange
#f5d397 - Michael's Light Orange
#bec4c4 - Michael's Gray
****************************** COLOR PALLETTE END *****************************/


/****************************** GLOBAL RESETS *********************************/
body, header, nav, a, h1, h2, h3, h4, p, img, ul, ol, li, section, footer {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/****************************** GLOBAL STYLES ********************************/
.hidden {
	display: none;
}

html {
	background-color: #BEC4C4;
}

body {
	text-align: center;
	margin: 0 auto;
	background-color: #BEC4C4;
}

header, main {
	background-color: #F8F7FF;
}

main {
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	clip-path: polygon(-100% 0%, 200% 0%, 200% 200%, -100% 200%);
	position: relative;
	z-index: 1;
}

header {
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 10;
	clip-path: polygon(-100% 0%, 200% 0%, 200% 200%, -100% 200%);
}

h1, nav a, figcaption span {
	font-family: 'mendl-sans-variable', sans-serif;
	font-weight: 600;
	font-style: normal;
}

a, h2, p, figcaption {
	font-family: 'josefin-sans', sans-serif;
	font-weight: 100;
	font-style: normal;
}

nav ul {
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

nav li {
	display: inline-block;
	text-align: center;
}

nav a {
	text-decoration: none;
	color: #1E1559;
	font-size: 24px;
	padding: 0 20px 0 20px;
}

nav a:hover {
	color: #F5B133;
}

#navLogo, #navLogoLink {
	display: inline-block;
	vertical-align: top;
}

#navLogo {
	height: 60px;
	padding: 10px 0 10px 0;
}

section:not(#swiperSection) {
	display:flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
}

#photoSection img {
	width: 100%;
}

#homeTitleSection {
	background-color: #F8F7FF;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 4;
	clip-path: polygon(0% -100%, 100% -100%, 100% 200%, 0% 200%);
	height: 100px;
}

#homeTitleSection h1 {
	color: #F5B133;
	font-size: 50px;
}

#homeTitleSection h2 {
	color: #BEC4C4;
	font-size: 24px;
}

#resumeSection {
	background-color: #F5B133;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 3;
	clip-path: polygon(0% 0%, 100% 0%, 100% 200%, 0% 200%);
	height: 40px;
}

#resumeSection a {
	color: #F8F7FF;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
}

#resumeSection a:hover {
	color: #1E1559;
}

#aboutSection {
	background-color: #F8F7FF;
	position: relative;
	z-index: 2;
	font-size: 24px;
	color: #1E1559;
	padding: 20px;
}

#aboutSection h2 {
	font-weight: bold;
	padding-bottom: 10px;
}

#aboutSection p {
	line-height: 1.25;
}

footer {
	display:flex;
	flex-direction: column;
    align-items: center;
    justify-content: center;
	background-color: #AADDEB;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	clip-path: polygon(-100% 0%, 200% 0%, 200% 200%, -100% 200%);
	height: 50px;
	position: relative;
	z-index: 0;
}

footer p {
	color: #1E1559;
	font-size: 24px;
}

#titleSection {
	background-color: #F5B133;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 4;
	clip-path: polygon(0% -100%, 100% -100%, 100% 200%, 0% 200%);
	height: 100px;
}

#titleSection h1 {
	color: #F8F7FF;
	font-size: 50px;
}

#titleSection h2 {
	color: #F5D397;
	font-size: 24px;
}

main #portfolioSection, main #contactSection {
	flex-wrap: wrap;
	flex-direction: row;
	padding: 25px;
}

#portfolioSection a, #contactSection a {
	text-decoration: none;
}

#portfolioSection a:hover figure, #contactSection a:hover figure {
	background-color: #AADDEB;
}

#portfolioSection a:hover figcaption, #contactSection a:hover figcaption {
	color: #1E1559;
}

#portfolioSection a:hover figcaption span, #contactSection a:hover figcaption span {
	color: #F8F7FF;
}

figure {
	width: 250px;
	height: 300px;
	background-color: #F8F7FF;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

figcaption, figure img {
	max-width: 90%;
	max-height: 150px;
	line-height: 1.25;
	padding: 10px;
}

figcaption span {
	color: #1E1559;
	display: inline-block;
	margin-bottom: 10px;
	font-size: 20px;
}

figcaption {
	color: #BEC4C4;
}

#contactSection figure {
	width: 200px;
	height: 250px;
}

#projectSection h2 {
	color: #1E1559;
	font-size: 24px;
	font-family: 'mendl-sans-variable', sans-serif;
	font-weight: 600;
	font-style: normal;
	margin: 20px 20px 10px;
}

#projectSection h3 {
	color: #BEC4C4;
	font-size: 24px;
	font-family: 'josefin-sans', sans-serif;
	font-weight: 100;
	font-style: normal;
}

#projectSection p {
	color: #1E1559;
	font-size: 24px;
	font-family: 'josefin-sans', sans-serif;
	font-weight: 100;
	font-style: normal;
	line-height: 1.25;
	padding: 20px;
}

#projectSection ul {
    text-align: left;
    list-style-position: inside;
}

#projectSection ul li {
	color: #1E1559;
	font-size: 24px;
	font-family: 'josefin-sans', sans-serif;
	font-weight: 100;
	font-style: normal;
	line-height: 1.25;
}

#projectSection ul li:last-of-type {
	padding-bottom: 20px;
}

#swiperSection {
	padding-bottom: 20px;
}

#swiperSection h3 {
	color: #1E1559;
	font-size: 24px;
	font-family: 'mendl-sans-variable', sans-serif;
	font-weight: 600;
	font-style: normal;
	padding: 20px 10% 10px;
}

.swiper {
	width: 80%;
	height: 650px;
}

#swiperSection .swiper-pagination {
	position: absolute;
	bottom: 10px;
	padding-bottom: 20px;
}

.swiper-slide > img {
	max-width: 75%;
	max-height: 75%;
	position: relative;
	top: 10px;
	padding: 20px;
	box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.3);
}

html:root {
    --swiper-theme-color: #1E1559;
}




/****************************** LARGEST SCREEN SIZE STYLES ******************************/
@media only screen and (min-width: 769px) {

	header, main, footer {
		max-width: 1200px;
		margin:  0 auto;
	}

}


/****************************** MEDIUM SCREEN SIZE STYLES ******************************/
@media only screen and (min-width: 426px) and (max-width: 768.9px) {

	header, main, footer {
		max-width: 768.9px;
		margin:  0 auto;
	}
	
	nav a {
		font-size: 22px;
		padding: 0 15px 0 15px;
	}

	#homeTitleSection h2, #titleSection h2 {
		font-size: 22px;
	}
	
}


/****************************** SMALLEST SCREEN SIZE STYLES ******************************/
@media only screen and (max-width: 425.9px) {

	header, main, footer {
		max-width: 425.9px;
		min-width: 360px;
		margin:  0 auto;
	}
	
	nav a {
		font-size: 20px;
		padding: 0 10px 0 10px;
	}
	
	#homeTitleSection h2, #titleSection h2 {
		font-size: 20px;
	}

}