/* Basic settings */
:root {
	--background_primary: #ffffff;
	--background_secondary: #eee;
	--primary-color: #96e7e3;
	--border_color: #888;
	--text_color: #788;
	--header_height: 150px;
	--footer-height: 70px;
	--special-font: "Baloo Chettan 2", cursive;
	scroll-behavior: smooth;
}

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

* {
	margin: 0;
	padding: 0;
}

body {
	background: var(--background_primary);
	font-family: "Open Sans", sans-serif;
	color: var(--text_color);
}

ul {
	list-style: none;
}

h2,
h3,
h4,
h5,
h6 {
	text-align: center;
	font-weight: 700;
}

h2 {
	font-size: 3rem;
	letter-spacing: 0.2rem;
}

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

button {
	border: none;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	background: var(--background_secondary);
	color: var(--text_color);
	transition: 300ms;
}

button:hover {
	transform: scale(1.1);
}

button:focus {
	outline: none;
}

.tab {
	cursor: pointer;
}

.no-click {
	pointer-events: none;
}

/* Landing Page Styling */
.landing-page {
	background-image: url("../images/steef_profiel-800w.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 80vh;
	display: grid;
	grid-template-columns: 1fr;
	align-content: space-between;
}

@media (min-width: 400px) {
	.landing-page {
		background-image: url("../images/steef_profiel-1200w.jpg");
	}
}

@media (min-width: 800px) {
	.landing-page {
		background-image: url("../images/steef_profiel.jpg");
	}
}

.landing-page__top-content,
.landing-page__bottom-content {
	display: grid;
	grid-template-columns: repeat(2, auto);
	padding: 1rem 0.7rem;
}

.landing-page__top-content {
	padding-bottom: 4rem;
}

.main-nav {
	line-height: 1.8;
	justify-self: start;
	font-size: 1.2rem;
}

.main-nav_list_item {
	transition: transform 300ms ease-in-out, border 300ms ease-in-out;
}

.main-nav_list_item:hover {
	border-bottom: 2px solid var(--primary-color);
	transform: scale(1.1);
	transform-origin: left;
	color: black;
}

.agenda {
	font-size: 2rem;
	color: inherit;
	background: none;
	justify-self: end;
	align-self: start;
	cursor: pointer;
}

.agenda:hover {
	color: var(--primary-color);
}

.page-title {
	font-size: 3rem;
	align-self: center;
	justify-self: start;
}

.social-links {
	font-size: 1.7rem;
	justify-self: end;
	align-self: center;
	text-align: center;
}

.social-links_icon {
	margin-left: 1rem;
}

.social-links_icon:hover {
	color: var(--primary-color);
}

@media (min-width: 600px) {
	.landing-page {
		height: 100vh;
	}
	.landing-page__top-content,
	.landing-page__bottom-content {
		padding: 1rem 3rem;
	}

	.main-nav,
	.agenda {
		margin-top: 7vh;
	}

	.main-nav {
		margin-left: 10%;
		font-size: 1.4rem;
	}

	.agenda {
		margin-right: 10%;
	}

	.page-title,
	.social-links {
		padding: 1.5rem 3rem;
	}
}

/* Aside Styling */
.aside {
	transform: translateX(100%);
	transition: transform 1000ms ease-in-out;
	background: var(--primary-color);
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	min-height: 100vh;
	padding: 0 1.5rem;
}

.show-sidebar {
	transform: translateX(0);
}

.aside_header {
	height: var(--header_height);
}

.close-aside {
	float: right;
	padding-top: 1rem;
}

.aside_title {
	padding-top: 3rem;
	font-size: 2rem;
}

.articles {
	height: calc(100vh - var(--header_height) - 1rem);
	overflow-y: auto;
}

.soon {
	margin-bottom: 2rem;
	padding: 1rem 0.5rem;
	font-size: 0.8rem;
	line-height: 1.7;
	background: var(--border_color);
	color: var(--background_primary);
}

.soon_date {
	font-size: 0.7rem;
}

.soon_title {
	font-family: "Open Sans", sans-serif;
	font-size: 1.2rem;
	padding-top: 0.3rem;
}

.soon_links {
	display: flex;
	justify-content: space-around;
	margin-top: 0.7rem;
}

.soon_link {
	background: var(--background_secondary);
	color: var(--text_color);
	padding: 0.2rem 0.5rem;
	border-radius: 0;
	transition: all 200ms;
}

.soon_link:hover {
	background: var(--primary-color);
	transform: scale(1.2);
}

/* Header Styling */

.main_image {
	width: 300px;
	height: 300px;
}

/* Section Portfolio Styling */
.portfolio {
	min-height: 100vh;
	max-width: 1584px;
	background: radial-gradient(var(--background_primary), var(--background_secondary));
	margin: auto;
	padding: 3rem 0 3rem 0;
	display: grid;
	/* columns defined in media query */
	align-items: start;
}

.portfolio__list {
	background: rgba(242, 242, 242, 0.9);
	position: sticky;
	top: 0;
	z-index: 10;
	display: grid;
	justify-items: start;
	padding-left: 2rem;
	margin-bottom: 0.7rem;
	font-size: 1.4rem;
}

.portfolio__list-item {
	line-height: 1.8;
	transition: transform 200ms ease-in-out, border 200ms ease-in-out;
}

.portfolio__item--quote {
	padding: 2rem;
	font-style: var(--special-font);
	font-size: 1.2rem;
	text-align: center;
	transition: transform 300ms;
}

.portfolio__item--quote::before {
	content: open-quote;
	font-size: 1.5rem;
}

.portfolio__item--quote::after {
	content: close-quote;
	font-size: 1.5rem;
}

.portfolio__list-item.active {
	border-bottom: 2px solid var(--border_color);
}

.portfolio__list-item:hover {
	border-bottom: 2px solid var(--primary-color);
	color: black;
	transform: scale(1.1);
	transform-origin: left;
}

.portfolio-contact {
	/* position: absolute;
  bottom: 0; */
	/* font-size: 1rem; */
	display: block;
	text-align: center;
}

[data-tab-content],
.portfolio-page {
	display: grid;
	grid-template-columns: 260px;
	justify-content: center;
	row-gap: 20px;
	overflow: hidden;
}

[data-tab-content] {
	max-height: 0;
	opacity: 0;
	transition: opacity 500ms ease-in-out;
}

.active[data-tab-content] {
	min-height: 100%;
	max-height: 2000px;
	opacity: 1;
	padding: 0 30px 30px 30px;
}

.tab__image-wrapper {
	position: relative;
	width: 300px;
	height: 205px;
	overflow: hidden;
	border-radius: 5px;
	box-shadow: 10px 10px 20px var(--border_color);
}

.tab__image-wrapper--portrait {
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: black; */
}

.tab__image-wrapper--poster {
	height: 400px;
}

.iframe-container {
	position: relative;
	width: 100%;
	padding-bottom: 5.25%;
	height: 0;
}

.iframe-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tab--image {
	width: auto;
	height: 100%;
	transition: transform 300ms;
}

.tab__image--portrait {
	width: 100%;
	height: auto;
}

.tab__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.tab__image-wrapper:hover .tab--image,
.tab__image-wrapper:hover .tab__image-youtube,
.tab__image-wrapper:hover .portfolio__item--quote {
	transform: scale(1.1);
}

.tab__image-title {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: auto;
	background: rgba(0, 0, 0, 0.5);
	color: var(--primary-color);
	padding: 0.5rem;
	/* transform: translateY(100%); */
	transition: transform 300ms;
}

@media (hover: hover) {
	.tab__image-title {
		transform: translateY(100%);
	}
}

.tab__image-wrapper:hover .tab__image-title {
	transform: translateY(0);
	z-index: 1;
}

@media screen and (min-width: 501px) {
	.portfolio {
		grid-template-columns: 1fr auto 2px minmax(400px, 20fr) 1fr;
	}

	.portfolio__list {
		grid-column-start: 2;
		margin: 0;
		padding-left: 0;
		top: 3rem;
		background: none;
	}

	.portfolio__tab-content {
		grid-column-start: 4;
		height: 100%;
	}

	[data-tab-content] {
		grid-template-columns: repeat(auto-fit, 355px);
		justify-content: center;
		align-content: center;
		gap: 40px;
	}

	.tab__image-wrapper {
		width: 355px;
		height: 240px;
	}

	.tab__image-wrapper--poster {
		height: 450px;
	}
}

/* Portfolio-page Styling */

.portfolio-page__wrapper {
	padding: 1.5rem 0;
	max-width: 1450px;
	margin: auto;
	min-height: calc(100vh - var(--footer-height));
}

.portfolio-page__title {
	grid-column: 1 / -1;
	margin-top: 1rem;
	margin-bottom: 1.3rem;
	padding: 0 1.5rem;
}

.portfolio__button {
	margin-left: 2rem;
}

.portfolio-page__info {
	max-width: 1000px;
	margin: auto;
	line-height: 1.7;
	padding: 0.5rem 1.5rem;
	text-align: center;
}

.portfolio-page__link {
	display: block;
	text-align: center;
	font-size: 0.9rem;
	color: blue;
	text-decoration: underline;
	transition: color, transform 300ms;
}

.portfolio-page__link:hover {
	color: black;
	transform: scale(1.1);
}

.portfolio-page {
	padding: 3rem 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	justify-items: center;
	gap: 1rem;
}

@media screen and (min-width: 501px) {
	.portfolio-page {
		padding: 3rem;
		grid-template-columns: repeat(auto-fit, 355px);
		justify-items: center;
		align-content: center;
		gap: 40px;
	}

	.portfolio__button {
		margin-left: 4rem;
	}
}

/* Modal Styling */
.modal {
	position: fixed;
	z-index: 5;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.85);
	color: var(--primary-color);
	display: grid;
	justify-content: center;
	align-items: center;
	/* grid-template-columns: 1fr;
  grid-template-rows: auto 1fr; */
}

/* .modal-title {
  font-size: 2.5rem;
  padding: 0;
} */

.modal__button {
	position: fixed;
	z-index: 10;
	color: inherit;
	background: none;
	font-size: 6rem;
}

.modal__button:hover {
	color: var(--background_primary);
}

.modal__button--close {
	top: 1rem;
	right: 6rem;
	font-size: 2rem;
}

.modal__button--previous,
.modal__button--next {
	height: 100%;
	display: flex;
	align-items: center;
}

.modal__button--previous {
	left: 2rem;
}

.modal__button--next {
	right: 2rem;
}

.modal-image {
	/* background: white; */
	/* min-width: 400px;
  max-width: 600px; */
	/* min-height: 200px; */
	position: relative;
	width: 80%;
	height: 86vh;
	margin: 7vh auto;
	/* display: flex;
  justify-content: center; */
}

.modal-image--youtube {
	/* background: white; */
	padding-bottom: 56.25%;
	width: 80vw;
	height: auto;
}

.modal--photo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: 100%;
}

.modal--video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; */
}

/* .modal-quote-wrapper {
  position: relative;
  width: 80%;
  height: calc(100vh - 5rem);
  background: var(--background_secondary);
  display: flex;
  align-items: center;
} */

.modal--quote {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80vw;
	height: 80vh;
	display: grid;
	align-items: center;
	background: #fff;
	color: var(--text_color);
	font-family: var(--special-font);
	text-align: center;
	font-size: 2rem;
	padding: 2rem;
}

.modal-quote {
	max-width: 850px;
	margin: auto;
}

.modal-quote::before {
	content: '"';
	font-size: 1.3em;
}

.modal-quote::after {
	content: '"';
	font-size: 1.3em;
}

/* Section Contact Styling */
.contact {
	min-height: 40vh;
	background: radial-gradient(var(--background_primary), var(--background_secondary));
	display: grid;
	grid-template-rows: auto 1fr auto 1fr auto;
}

.contact_title {
	padding-top: 1.5rem;
}

.contact_info {
	text-align: center;
	font-size: 1.2rem;
	line-height: 3rem;
}

.contact_info_p1 {
	grid-row-start: 3;
}

.contact_info_social {
	grid-row-start: 5;
	padding: 1rem;
	display: flex;
}

.contact_email {
	border-bottom: 1px solid var(--text_color);
}

.contact_email:hover {
	color: var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
}

/* Section About Styling */
.about {
	background: radial-gradient(var(--background_secondary), #ddd);
}

.about__title {
	padding: 0 0 1rem 0;
}

.about__tekst {
	line-height: 1.8;
}

.wrapper {
	padding: 2rem 4rem;
	max-width: 1200px;
	margin: auto;
}

.photo-banner {
	margin: 3rem 0 2rem 0;
	width: 100%;
	height: 150px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	/* overflow: hidden; */
}

@media screen and (max-width: 501px) {
	.photo-banner {
		grid-template-columns: 1fr 0 1fr 1fr;
	}
}

@media screen and (max-width: 360px) {
	.photo-banner {
		grid-template-columns: 1fr 0 0 1fr;
	}
}

.photo1,
.photo2,
.photo3,
.photo4,
.photo5,
.photo6,
.photo7,
.photo8 {
	height: 100%;
	width: auto;
}

.photo1 {
	background: url(../images/casting/2020_03_06steef3779.jpg) no-repeat center center/cover;
}
.photo4 {
	background: url(../images/casting/2020_03_06steef3695.jpg) no-repeat center center/cover;
}
.photo3 {
	background: url(../images/casting/2020_03_06steef3728.jpg) no-repeat center center/cover;
}
.photo2 {
	background: url(../images/casting/img_4733.jpg) no-repeat center center/cover;
}
.photo5 {
	background: url(../images/casting/2020_03_06steef3523.jpg) no-repeat center center/cover;
}
.photo6 {
	background: url(../images/casting/photo-down.jpg) no-repeat center center/cover;
}
.photo7 {
	background: url(../images/casting/photo-arm.jpg) no-repeat center center/cover;
}
.photo8 {
	background: url(../images/casting/2020_03_06steef3604.jpg) no-repeat top center/cover;
}

/* .photo-banner__photo {
  height: 100%;
  width: auto;
} */

.about p {
	margin-bottom: 1rem;
}

/* Footer Styling */
.footer {
	height: var(--footer-height);
	background: var(--background_secondary);
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright {
	font-size: 0.7rem;
}

.footer__link {
	text-decoration: underline;
}

.tab__image-youtube {
	background-color: #000;
	/* margin-bottom: 30px; */
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	cursor: pointer;
	height: 100%;
	width: auto;
	transition: transform 300ms;
}
.tab__image-youtube img {
	width: 100%;
	top: -5.84%;
	left: 0;
	opacity: 1;
}
.tab__image-youtube .play-button {
	width: 90px;
	height: 60px;
	background-color: #333;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	z-index: 1;
	opacity: 0.8;
	border-radius: 6px;
}
.tab__image-youtube .play-button:before {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 26px;
	border-color: transparent transparent transparent #fff;
}
.tab__image-youtube img,
.tab__image-youtube .play-button {
	cursor: pointer;
}
.tab__image-youtube img,
.tab__image-youtube iframe,
.tab__image-youtube .play-button,
.tab__image-youtube .play-button:before {
	position: absolute;
}
.tab__image-youtube .play-button,
.tab__image-youtube .play-button:before {
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
.tab__image-youtube iframe {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
