@charset "UTF-8";
/* CSS Document */

:root {
	--white: #fff;
	--black: #0B0510;
	--purpledark: #36184E;
	--purple: #662d91;
	--purplelight: #d9c1ec;
	--purplepale: #f5effa;
	--green: #00635D;
}

*{
	margin: 0;
    padding: 0;
    box-sizing: border-box;
	cursor: default;
	color: var(--black);
}

body {
	font-family: "Montserrat", sans-serif;
	color: var(--black);
	background-color: var(--white);
	line-height: 1.5;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: var(--black);
}

a:hover {
	text-decoration: underline;
	color: var(--black);
}

header {
	//background-color: var(--purpledark);
	background-size: 300px;
	background-position: center;
	display: flex;
	//box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 20px 3vw;
	justify-content: space-between;
	align-items: center;
}

.title h1 {
	//color: var(--white);
	font-family: "Amatic SC", sans-serif;
	//font-weight: 500;
	font-size: 2em;
}

.options-bar {
	display: flex;
	column-gap: 30px;
}

.options-bar a {
	//color: var(--white);
	font-family: "Amatic SC", sans-serif;
	font-weight: 300;
	font-size: 1.5em;
}

.options-bar p:hover {
	text-decoration: underline;
	cursor: pointer;
}

main {
	display: flex;
	min-height: 100vh;
}

#projects-list {
	padding: 70px 7vw;
	align-items: center;
	justify-content: space-around;
	width: 100vw;
	gap: 50px;
	display: flex;
	flex-wrap: wrap;
}

.project-card {
	padding-bottom: 14px;
	background-color: var(--white);
	border-radius: 7px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
}

.project-card.portrait {
	width: 250px;
}

.project-card.landscape {
	width: 400px;
	height: 300px;
}

.project-card:hover {
	//background-color: var(--black);
	cursor: pointer;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.7);
}
.project-card:hover h3 {
	//color: var(--white);
	cursor: pointer;
}

.project-image {
	width: 100%;
	object-fit: cover;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	margin-bottom: 14px;
	cursor: pointer;
	border-bottom: 0.5px solid rgba(0,0,0,0.5);
}

.project-card.portrait img {
  aspect-ratio: 3 / 4;
}

.project-card.landscape img {
  aspect-ratio: 16 / 9;
}




.top {
	width: 100vw;
	padding: 0px 3vw;
	display: flex;
	justify-content: space-between;
}

.top img {
	//object-fit: scale-down;
	width: 30vw;
	//height: 100%;
}

.text-img {
	padding: 100px 11vw 60px;
	width: 100vw;
	height: 105vh;
	display: flex;
	gap: 8vw;
	justify-content: space-between;
}

.text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2vw;
	flex-grow: 1;
	width: 14vw;
}

.text-img img {
	max-height: 85vh;
	object-fit: cover;
	width: 38vw;
}

video {
	width: 100vw;
}

#wyw-top {
	width: 100vw; 
	height: 100vh; 
	display: flex; 
	justify-content: center; 
	background-image: url("../images/wyw/Wyw-waves_1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

#wide-img {
	width: 100vw; 
	height: 100vh; 
	object-fit: scale-down;
}

#hf-img {
	background-color: #dc7fb4; 
	height: 120vh; 
	display: flex; 
	justify-content: center;
}

#rdi-top {
	height: 80vh;
}

#about-page {
	height: 100vh;
}

#about-text {
	height: calc(100vh - 145px); 
	padding: auto 11vw;
}


footer {
	display: flex;
	padding: 10px 3vw;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 1.3em;
}

footer p {
	font-family: "Amatic SC", sans-serif;
}

footer div {
	display: flex;
	align-items: flex-start;
}

ion-icon {
	cursor: pointer;
}

#email {
	font-size: 1.225em;
}


@media only screen and (max-width: 600px) {
	.project-card.landscape {
		height: auto;
	}
	.top {
		flex-direction: column;
		gap:50px;
	}

	.top img {
		width: 100%;
	}
	
	.text-img {
		height: auto;
		flex-direction: column;
	}

	.text {
		width: 100%;
	}

	.text-img img {
		max-height: auto;
		width: 100%;
	}
	
	#wide-img {
		height: auto;
	}
	
	#wyw-top {
		height: auto;
		padding: 50px 0;
	}
	
	#hf-img {
		height: auto; 
		padding: 50px 0;
		display: flex; 
		justify-content: center;
	}
	
	#rdi-top {
		height: auto;
	}
	
	#about-page {
		height: auto;
	}
	
	#about-text {
		height: auto; 
	}
}
