/* START RESET */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
p {
	margin: 0;
}
/* END RESET */

/* START VARIABLES */
:root {
	/* COLORS */
	--pink: rgba(231, 34, 116, 1);
	--grey: rgba(26, 26, 26, 1);
	--lightgrey: rgba(156, 155, 156, 1);
	--white: rgba(255, 255, 255, 1);
	--black: rgba(0, 0, 0, 0.9);
	--shadow: rgba(0, 0, 0, 0.5);
}
/* END VARIABLES */

/* START FONTS */
/* FONTS */
@font-face {
	font-family: 'Desyrel';
	src: url('../fonts/DESYREL.ttf');
}

@font-face {
	font-family: 'Century Gothic';
	src: url('../fonts/GOTHIC.TTF');
}

@font-face {
	font-family: 'Century Gothic Bold';
	src: url('../fonts/GOTHICB.TTF');
}
/* END FONTS */

/* START HTML DEFAULTS */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}
/* END HTML DEFAULTS */

/* START BODY DEFAULTS */
body {
	font-family: "Century Gothic", sans-serif;
	color: var(--black);
	text-shadow: 1.7px 1.7px 1px var(--shadow);
}
/* END BODY DEFAULTS */

/* START HEADER */
header {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	height: 80px;
	
	position: fixed;
	z-index: 999;
	background: var(--grey);
}

.header-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	
	width: 100%;
	max-width: 1200px;
}

.logo {
	height: 2em;
	margin-left: 0.5em;
	display: block;
}

.nav-toggle {
	display: none;
}

.nav-toggle-label {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 1em;
	display: flex;
	align-items: center;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
	width: 1.3em;
	height: 2px;
	position: relative;
	background: var(--white);
	border-radius: 2px;
	display: block;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
	content: "";
	position: absolute;
}

.nav-toggle-label span::before {
	bottom: 7px;
}

.nav-toggle-label span::after {
	top: 7px;
}

nav {
	width: 100%;
	position: absolute;
	top: 100%;
	left: 0;
	text-align: right;
	transform: scale(1, 0);
	transform-origin: top;
	transition: transform 500ms ease-in-out;
	background-color: var(--grey);
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

nav li {
	margin-bottom: 1em;
	margin-right: 1em;
}

nav li:first-child {
	margin-top: 1em;
}

nav li:last-child {
	margin-right: 1em;
}

.desktop-only {
	display: none;
}

.nav-phone-icon {
	width: 24px;
	height: 24px;
	background: url('../images/nav-phone-icon.png') 0 0;
	transition: opacity 150ms ease-in-out;
}

.nav-email-icon {
	width: 24px;
	height: 24px;
	background: url('../images/nav-email-icon.png') 0 0;
	transition: opacity 150ms ease-in-out;
}

.nav-phone-icon:hover,
.nav-phone-icon:active,
.nav-email-icon:hover,
.nav-email-icon.active {
	cursor: pointer;
	background-position: 0 -24px;
}

nav a {
	color: var(--white);
	text-decoration: none;
	font-size: 1rem;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
}

nav a:active,
nav a:hover {
	color: var(--pink);
}

.nav-toggle:checked ~ .nav-toggle-label span {
	background: var(--pink);
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
	background: var(--pink);
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
	background: var(--pink);
}

.nav-toggle:checked ~ nav {
	transform: scale(1, 1);
}

.nav-toggle:checked ~ nav a {
	opacity: 1;
	transition: opacity 150ms ease-in-out 500ms;
}

.nav-toggle:checked ~ nav .nav-phone-icon {
	opacity: 1;
	transition: opacity 150ms ease-in-out 500ms;
}

.nav-toggle:checked ~ nav .nav-email-icon {
	opacity: 1;
	transition: opacity 150ms ease-in-out 500ms;
}

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 800px) {
	.logo {
		margin-left: 1em;
	}

	nav a {
		font-size: 0.8rem;
	}

	.nav-toggle-label {
		display: none;
	}

	nav {
		all: unset;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}

	nav ul {
		display: flex;
		align-items: center;
		line-height: 1;
	}

	nav li {
		margin-bottom: 0;
	}

	nav li:first-child {
		margin-top: 0;
	}
	
	nav li:last-child {
		padding-right: 0em;
	}

	nav a {
		opacity: 1;
	}

	.desktop-only {
		display: block;
	}
}
/* END DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1200px) {
	.logo {
		margin-left: 0.25em;
		font-size: 2em;
	}

	nav li:last-child {
		margin-right: 1em;
	}

	nav a {
		font-size: 1rem;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1300px) {
	.logo {
		margin-left: 0em;
		font-size: 2em;
	}

	nav li:last-child {
		margin-right: 0em;
	}

	nav a {
		font-size: 1rem;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */
/* END HEADER */

/* START HERO */
.hero {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	height: 544px; /* height of mobileheader.png */
	
	background-image: url('../images/mobileheaderbgnew.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center -2px; /* for some reason needed a correction to display properly */
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	
	width: 100%;
	
	color: var(--white);
	font-family: 'Century Gothic Bold';
	font-weight: bold;
}

.hero-title {				
	width: auto;
	margin-bottom: 0.1em; /* corrected pink line */
	font-size: 3em;
	color: var(--white);
	border-bottom: 2px solid var(--pink);
	text-align: center;
	font-family: 'Century Gothic Bold';
}

.hero-keywords-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	
	font-size: 1.2em;
}

.hero-keywords-middle {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	
	font-size: 1.2em;
}

.hero-keywords-bottom {
	display: flex;
	flex-direction: row;
	justify-content: center;
	
	font-size: 1.2em;
}

.hero-keywords-bottom > div:last-child {
	padding-right: 0;
	padding-left: 0.75em;
}

.mobile-nav {
	width: 50px;
	height: 130px;
	position: absolute;
	top: 200px;
	right: -1px;
	background-image: url('../images/mobilenavbg.png');
	background-position: center center;
	background-size: cover;
}

.mobile-only {
		display: block;
	}

/* START MOBILE MEDIA QUERY */
@media screen and (min-width: 1px) and (max-width: 409px) {
	.hero-content {
		width: 90%;
		transform: scale(0.9);
	}
	
	.hero-title {
		transform: scale(0.5);
	}
	
	.hero-keywords-top, 
	.hero-keywords-middle,
	.hero-keywords-bottom {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: scale(0.75);
	}

	.mobile-only {
		display: block;
	}

	.mobile-nav-phone-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-phone-icon.png') 0 0;
		position: relative;
		top: 27px;
		margin: 0 auto;
	}

	.mobile-nav-email-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-email-icon.png') 0 0;
		position: relative;
		top: 56px;
		margin: 0 auto;
	}

	.mobile-nav-phone-icon:hover,
	.mobile-nav-phone-icon:active,
	.mobile-nav-email-icon:hover,
	.mobile-nav-email-icon.active {
		cursor: pointer;
		background-position: 0 -24px;
	}
}
/* END MOBILE MEDIA QUERY */

/* START LARGER MOBILE MEDIA QUERY */
@media screen and (min-width: 410px) and (max-width: 499px) {
	.hero {
		background-image: url('../images/tabletheaderbgnew.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: -2px -2px; /* for some reason needed a correction to display properly */
		
		height: 604px; /* height of tabletheaderbg.png */
	}
	
	.hero-content {
		width: 90%;
		transform: scale(0.9);
	}
	
	.hero-title {
		transform: scale(0.6);
	}
	
	.mobile-only {
		display: block;
	}

	.mobile-nav-phone-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-phone-icon.png') 0 0;
		position: relative;
		top: 27px;
		margin: 0 auto;
	}

	.mobile-nav-email-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-email-icon.png') 0 0;
		position: relative;
		top: 56px;
		margin: 0 auto;
	}

	.mobile-nav-phone-icon:hover,
	.mobile-nav-phone-icon:active,
	.mobile-nav-email-icon:hover,
	.mobile-nav-email-icon.active {
		cursor: pointer;
		background-position: 0 -24px;
	}
}
/* END LARGER MOBILE MEDIA QUERY */

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 500px) and (max-width: 799px) {
	.hero {
		background-image: url('../images/tabletheaderbgnew.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: -2px -2px; /* for some reason needed a correction to display properly */
		
		height: 604px; /* height of tabletheaderbg.png */
	}
	
	.hero-content {
		width: auto;
		transform: scale(1);
	}
	
	.hero-title {
		transform: scale(1);
	}
	
	.hero-keywords-bottom > div {
		padding-right: 0.75em;
	}
			
	.mobile-nav {
		width: 50px;
		height: 130px;
		position: absolute;
		top: 200px;
		right: -1px;
		background-image: url('../images/mobilenavbg.png');
		background-position: center center;
		background-size: cover;
	}

	.mobile-only {
		display: block;
	}

	.mobile-nav-phone-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-phone-icon.png') 0 0;
		position: relative;
		top: 27px;
		margin: 0 auto;
	}

	.mobile-nav-email-icon {
		width: 24px;
		height: 24px;
		background: url('../images/nav-email-icon.png') 0 0;
		position: relative;
		top: 56px;
		margin: 0 auto;
	}

	.mobile-nav-phone-icon:hover,
	.mobile-nav-phone-icon:active,
	.mobile-nav-email-icon:hover,
	.mobile-nav-email-icon.active {
		cursor: pointer;
		background-position: 0 -24px;
	}
}
/* END TABLET MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 800px) and (max-width: 1200px) {
	.hero {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	
		background-image: url('../images/headerbgnew.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: -2px -2px; /* for some reason needed a correction to display properly */
		
		height: 1081px; /* height of headerbg.png */
	}

	.hero-content {
		width: auto;
		transform: scale(1);
		
		position: relative;
		top: -30%;
		left: -26px;
	}
	
	.hero-title {
		transform: scale(1);
	}
	
	.hero-keywords-bottom > div {
		padding-right: 0.75em;
	}
	
	.mobile-nav {
		display: none;
	}
}
/* END DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1200px) {
	.hero {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	
		background-image: url('../images/headerbgnew.png');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: -2px -2px; /* for some reason needed a correction to display properly */
		
		height: 1081px; /* height of headerbg.png */
	}

	.hero-content {
		width: auto;
		transform: scale(1);
		
		position: relative;
		top: -30%;
		left: -26px;
	}
	
	.hero-title {
		transform: scale(1);
	}
	
	.hero-keywords-bottom > div {
		padding-right: 0.75em;
	}
	
	.mobile-nav {
		display: none;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */
/* END HERO */

/* START PORTFOLIO */
.portfolio {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	height: auto;
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
	
	/* correct top and bottom margins */
	margin-top: 150px;
	margin-bottom: 150px;
}

.portfolio-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2em;
	
	width: 100%;
	max-width: 1200px;
	
	padding-top: 2em; /* offset consistent with (row) gaps */
	padding-bottom: 2em; /* offset consistent with (row) gaps */
}

.portfolio-title {
	width: auto;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 0.1em; /* corrected pink line */
	font-size: 3em;
	color: var(--white);
	border-bottom: 2px solid var(--pink);
	display: none;
	font-family: 'Century Gothic Bold';
}

.portfolio-photo-1,
.portfolio-photo-2,
.portfolio-photo-3,
.portfolio-photo-4 {
	width: 350px;
	height: 350px;
}

.portfolio-photo-1 > img,
.portfolio-photo-2 > img,
.portfolio-photo-3 > img,
.portfolio-photo-4 > img {
	width: 100%;
	height:  100%;
}

.portfolio-content-1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;	
	gap: 2em;
}

.portfolio-content-2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 2em;
}

/* START LIGHTBOX */
.lightbox-state {
	position: absolute;
	top: 0;
	left: -100vw;
}

.lightbox-state:checked ~ .lightbox-content {
	-webkit-transform: none;
					transform: none;
}

.lightbox-state:checked ~ .lightbox-backdrop {
	bottom: 0;
	opacity: 1;
	z-index: 997;
	-webkit-transition: 0.3s opacity ease-in-out;
	transition: 0.3s opacity ease-in-out;
}

.lightbox {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	height: 0;
	
	display: flex;
	flex-direction: row;
	justify-lightbox-content: center;
	align-items: flex-start;
}

.lightbox-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 998;
	width: auto;
	height: auto;
	margin: 0 auto;
	-webkit-transform: translateY(-200%);
					transform: translateY(-200%);
	-webkit-transition: 0.3s -webkit-transform ease-in-out;
	transition: 0.3s -webkit-transform ease-in-out;
	transition: 0.3s transform ease-in-out;
	transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}

.lightbox-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 100%;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.3);
	-webkit-transition: 0.3s opacity ease-in-out, bottom 0.1s 0.3s;
	transition: 0.3s opacity ease-in-out, bottom 0.1s 0.3s;
}

.lightbox-item-1-full,
.lightbox-item-2-full,
.lightbox-item-3-full,
.lightbox-item-4-full {
	max-width: 80vw;
	height: auto;
	border: 20px solid #fff;
	cursor: pointer;
	margin-top: 95px;
}

.lightbox-item-1,
.lightbox-item-2,
.lightbox-item-3,
.lightbox-item-4 {
	max-width: 250px;
	height: auto;
	
	background: #ffffff;
	display: inline-block;
	padding: 15px 15px 70px;
	text-align: center;
	text-decoration: none;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
	box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
	-webkit-transition: all .20s linear;
	-moz-transition: all .20s linear;
	transition: all .20s linear;
	cursor: pointer;
}

.lightbox-item-1 img,
.lightbox-item-2 img,
.lightbox-item-3 img,
.lightbox-item-4 img {
	display: block;
}

.lightbox-item-1:hover,
.lightbox-item-2:hover,
.lightbox-item-3:hover,
.lightbox-item-4:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
	-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
	box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
}
/* END LIGHTBOX */
/* START MOBILE MEDIA QUERY */
@media screen and (min-width: 1px) and (max-width: 399px) {
	
}
/* END MOBILE MEDIA QUERY */

/* START LARGER MOBILE MEDIA QUERY */
@media screen and (min-width: 400px) and (max-width: 499px) {
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 350px;
	}
}
/* END LARGER MOBILE MEDIA QUERY */

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 500px) and (max-width: 799px) {
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 400px;
	}	
}
/* END TABLET MEDIA QUERY */

/* START TABLET / DESKTOP MEDIA QUERY */
@media screen and (min-width: 800px) and (max-width: 899px) {
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 280px;
	}
}
/* END TABLET / DESKTOP MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 900px) and (max-width: 999px) {
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 400px;
	}
}
/* END DESKTOP MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 1000px) and (max-width: 1099px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 200px;
	}
}
/* END DESKTOP MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 1100px) and (max-width: 1199px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 220px;
	}
}
/* END DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1200px) and (max-width: 1299px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 240px;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1300px) and (max-width: 1399px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 260px;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1400px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 300px;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1600px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 350px;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1800px) {
	.portfolio-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-1 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.portfolio-content-2 {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
	}
	
	.lightbox-item-1,
	.lightbox-item-2,
	.lightbox-item-3,
	.lightbox-item-4 {
		max-width: 400px;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */
/* END PORTFOLIO */

/* START PRICES */
.prices {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	height: 1212px; /* pricelistbg.png height */
	
	padding: 2em;
	
	background-image: url('../images/pricelistbg.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center -2px; /* for some reason needed a correction to display properly */
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
}

.prices-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	width: 100%;
	max-width: 900px;
	
	line-height: 2em;
	color: var(--pink);
}

.prices-content-top {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.prices-title {
	width: auto;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 2em;
	font-size: 3em;
	color: var(--white);
	border-bottom: 2px solid var(--pink);
	padding-bottom: 0.3em; /* padding to move the pink line down */
	font-family: 'Century Gothic Bold';
}

.prices-content-middle {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	
	padding: 1em;
	padding-top: 0.7em; /* correcting 0.3em to 0.7 for .prices-title padding-bottom */
	padding-top: 6em; /* fix voor nieuwe prijslijst met extra onderdelen */
}

.prices-collection-1 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.prices-collection-2 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.prices-items-left {
	text-align: left;
}

.prices-prices-right {
	text-align: right;
}

.prices-content-bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	
	padding: 1em;
}

.prices-callout-right {
	text-align: right;
}

/* START MOBILE MEDIA QUERY */
@media screen and (min-width: 1px) and (max-width: 499px) {		
	.prices-content-middle,
	.prices-content-bottom {
		font-size: 0.7em;
	}
}
/* END MOBILE MEDIA QUERY */

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 500px) and (max-width: 799px) {
	.prices-content {
		max-width: 500px;
	}
}
/* END TABLET MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 800px) {
	.prices-content {
		line-height: 3em;
	}
	
	.prices-title {
		margin-bottom: 2.5em;
		padding-bottom: 0.125em;
	}

	.prices-content-middle {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		column-gap: 1em;
	}
	
	.prices-collection-1 {
		column-gap: 1em;
	}
	
	.prices-collection-2 {
		column-gap: 1em;
	}
	
	.prices-items-left {
		min-width: 150px;
		white-space: nowrap;
	}
	
	.prices-prices-right {
		min-width: 150px;
		white-space: nowrap;
	}
	
	.prices-content-bottom {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
	}
}
/* END DESKTOP MEDIA QUERY */
/* END PRICES */

/* START ABOUT */
.about {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	height: auto;
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
	
	/* correct top and bottom margins */
	margin-top: 80px;
	margin-bottom: 80px;
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	
	width: 100%;
	max-width: 1000px;
	text-shadow: none;
}

.about-content > p {
	font-family: 'Desyrel';
	font-size: 1.1em;
	padding: 2em;
	padding-top: 1.5em;
}

.about-content > p:last-child {
	float: left; /* for left aligning the paragraph */
}

.about-title {
	width: auto;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 0.1em; /* corrected pink line */
	font-size: 3em;
	color: var(--white);
	border-bottom: 2px solid var(--pink);
	display: none;
	font-family: 'Century Gothic Bold';
}


.about-closing {
	float: right; /* for right aligning the closing */
	
	font-size: 1.5em;
	color: var(--pink);
}

.about-closing-heart {
}

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 400px) {
	.about-content > p {
		font-family: 'Desyrel';
		font-size: 1.4em;
		padding: 2em;
		padding-top: 1.5em;
	}
}
/* END TABLET MEDIA QUERY */

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 600px) {
	.about-content > p {
		font-family: 'Desyrel';
		font-size: 1.4em;
		padding: 3em;
		padding-top: 1.5em;
	}
}
/* END TABLET MEDIA QUERY */

/* START TABLET MEDIA QUERY */
@media screen and (min-width: 700px) {
	.about-content > p {
		font-family: 'Desyrel';
		font-size: 1.4em;
		padding: 4em;
		padding-top: 1.5em;
	}
}
/* END TABLET MEDIA QUERY */

/* START DESKTOP MEDIA QUERY */
@media screen and (min-width: 700px) {
	.about-content > p {
		font-family: 'Desyrel';
		font-size: 1.4em;
		padding: 2em;
		padding-top: 1.5em;
	}
}
/* END DESKTOP MEDIA QUERY */
/* END ABOUT */

/* START CONTACT */
.contact {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	height: 450px;
	
	background-image: url('../images/swirlbg.png');
	background-repeat: no-repeat;
	background-position: center 0;
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
	
	/* extra breathing space before the footer */
	margin-bottom: 50px;
}

.contact-content {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	
	width: 100%;
	max-width: 1200px;
	position: relative;
	top: 160px;
	
	color: var(--pink);
	text-shadow: none;
}

.contact-title {
	width: auto;
	text-align: center;
	margin-top: 1em;
	margin-bottom: 0.1em; /* corrected pink line */
	font-size: 3em;
	color: var(--white);
	border-bottom: 2px solid var(--pink);
	display: none;
	font-family: 'Century Gothic Bold';
}

.contact-text {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	padding: 1em;
	
	text-align: center;
}

.contact-phone {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	
	width: 100%;
	max-width: 300px;
	padding: 1em;
}

.contact-phone > a,
.contact-email > a {
	text-decoration: none;
	color: var(--pink);
}

.contact-phone-icon {
	width: 72px;
	height: 72px;
	background: url('../images/contact-phone-icon.png');
	background-repeat: no-repeat;
	display: inline-block;
	background-position: 0 0;
	background-size: cover;
}

.contact-phone-details {
	position: relative;
	left: -60px; /* make sure phone icon to details distance is in line with email icon to details distance */
}

.contact-email {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	
	width: 100%;
	max-width: 300px;
	padding: 1em;
}

.contact-email-icon {
	width: 72px;
	height: 72px;
	background: url('../images/contact-email-icon.png');
	background-repeat: no-repeat;
	display: inline-block;
	background-position: 0 0;
	background-size: cover;
}

.contact-email-details {
}

.contact-phone-icon:hover,
.contact-email-icon:hover {
	background-position: 0 -72px;
}

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1000px) {
	.contact {
		height: 350px;
		margin-bottom: 0px;
	}
	
	.contact-content {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}
	
	.contact-text {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		
		max-width: 33%;
	}
	
	.contact-phone,
	.contact-email {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: middle;
		
		max-width: 33%;
		padding: 1.5em;
	}
	
	.contact-phone-details,
	.contact-email-details {
		position: initial;
		margin-left: 1em;
	}
}
/* END LARGE DESKTOP MEDIA QUERY */
/* END CONTACT */

/* START FOOTER */
footer {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	height: 40px;
	
	background-color: var(--grey);
	
	/* correct fixed navbar height */
	position: relative;
	top: 80px;
}

.footer-bar-content {
	display: flex;
	flex-direction: col;
	justify-content: center;
	align-items: center;
	
	width: 100%;
	max-width: 1200px;

	font-weight: bold;
	color: var(--pink);
	text-align: center;
}

.footer-bar-copy {
		font-size: 0.75em;
}

.footer-bar-created {
	display: none;
}

/* START LARGE DESKTOP MEDIA QUERY */
@media screen and (min-width: 1000px) {
	.footer-bar {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	
	.footer-bar-copy {
		font-size: 1em;
}
}
/* END LARGE DESKTOP MEDIA QUERY */
/* END FOOTER */