@font-face {
	font-family: "Subjectivity";
	src:
		local("Subjectivity"),
		url("/assets/fonts/Subjectivity-ExtraBoldSlanted.otf") format("opentype"),
		url("/assets/fonts/Subjectivity-ExtraBoldSlanted.woff2") format("woff");
}
@font-face {
	font-family: "DM Sans";
	src:
		local("DM Sans"),
		url('/assets/fonts/DMSans-VariableFont_opsz,wght.otf')  format('opentype'),
		url('/assets/fonts/DMSans-VariableFont_opsz,wght.woff2')  format('woff');
}

:root {
	--COLORS-PRIMARY          : #191410;
	--COLORS-SECONDARY        : #F4EFEC;

	--FONT-FAMILIES-PRIMARY   : "DM Sans";
	--FONT-FAMILIES-SECONDARY : "Subjectivity";

	--FONT-SIZES-100          : 8px;
	--FONT-SIZES-200          : 16px;
	--FONT-SIZES-300          : 24px;
	--FONT-SIZES-400          : 32px;
	--FONT-SIZES-500          : 40px;
	--FONT-SIZES-600          : 48px;
	--FONT-SIZES-700          : 56px;
	--FONT-SIZES-800          : 64px;

	--LINE-HEIGHTS-AUTO       : "auto";
	--LINE-HEIGHT-100: 12px;   /* 8px * 1.5 */
	--LINE-HEIGHT-200: 24px;   /* 16px * 1.5 */
	--LINE-HEIGHT-300: 36px;   /* 24px * 1.5 */
	--LINE-HEIGHT-400: 48px;   /* 32px * 1.5 */
	--LINE-HEIGHT-500: 56px;   /* 40px * 1.4 */
	--LINE-HEIGHT-600: 64px;   /* 48px * 1.33 */
	--LINE-HEIGHT-700: 72px;   /* 56px * 1.29 */
	--LINE-HEIGHT-800: 80px;   /* 64px * 1.25 */

	--FONT-WEIGHTS-LIGHT      : 300;
	--FONT-WEIGHTS-REGULAR    : 400;
	--FONT-WEIGHTS-MEDIUM     : 500;
	--FONT-WEIGHTS-SEMIBOLD   : 600;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
}

/* Global styles */
body {
	margin: 0;
	font-family: var(--FONT-FAMILIES-PRIMARY), sans-serif;
	font-weight: var(--FONT-WEIGHTS-REGULAR);
	font-size: var(--FONT-SIZES-200);
	line-height: var(--LINE-HEIGHT-200);
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

h2 {
	font-size: var(--FONT-SIZES-600);
	line-height: var(--LINE-HEIGHT-600);
	font-family: var(--FONT-FAMILIES-SECONDARY), sans-serif;
	font-weight: var(--FONT-WEIGHTS-REGULAR);
	margin: 0;
}

h3 {
	font-size: var(--FONT-SIZES-300);
	line-height: var(--LINE-HEIGHT-300);
	font-weight: var(--FONT-WEIGHTS-REGULAR);
	margin: 0;
}

.container {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}

section .container {
	padding: 70px;
}

.two-column-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	align-items: center;
}

.menu-wrapper {
	background: hsl(0deg 0% 0% / 54%);
}

header {
	background: url('/assets/img/header-2560.jpg') no-repeat center center/cover;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	aspect-ratio: 12 / 5;
}

header.other-page {
	aspect-ratio: 18 / 4;
}

header nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 70px;
}

header nav .logo {
	height: 40px;
}

header nav ul {
	display: flex;
	gap: 64px;
}

header nav ul li a {
	color: white;
	text-decoration: none;
	transition: all 0.4s;
	display: block;
	position: relative;
}

/* Fade in */
header nav ul li ::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: var(--COLORS-SECONDARY);
	opacity: 0;
	transition: opacity 300ms, transform 300ms;
}

header nav ul li :hover::after,
header nav ul li :focus::after {
	opacity: 1;
	transform: translate3d(0, 0.2em, 0);
}

/* Scale from center */
header nav ul li a::after {
	opacity: 1;
	transform: scale(0);
	transform-origin: center;
}

header nav ul li a:hover::after,
header nav ul li a:focus::after{
	transform: scale(1);
}


.hero {
	display: flex;
	align-items: center;
	height: 100%;
	flex-grow: 1;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}

.hero h1 {
	font-size: var(--FONT-SIZES-800);
	line-height: var(--LINE-HEIGHT-800);
	font-family: var(--FONT-FAMILIES-SECONDARY), sans-serif;
	font-weight: var(--FONT-WEIGHTS-REGULAR);
	margin: 0;
}

.hero p {
	font-size: var(--FONT-SIZES-300);
	line-height: var(--LINE-HEIGHT-300);
	margin: 0;
}

.hero .btn {
	background: var(--COLORS-PRIMARY);
	color: white;
	border-radius: 93px;
	padding: 16px 24px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.4s;
}

.hero .btn:hover {
	background: var(--COLORS-SECONDARY);
	color: var(--COLORS-PRIMARY);
}

.album {
	display: flex;
	text-align: left;
	justify-content: space-between;
	gap: 80px;
	align-items: center;
}

.two-column-wrapper > * {
	flex: 1 0 0;
}

.album-description {
	flex-grow: 1.4;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}

.album-description-title {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: space-between;
}

.platforms {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.platform {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
}

.platform-tipeee {
	gap: 0;
	display: block;
}

.platform-tipeee-inner {
	padding: 24px;
	background-color: var(--COLORS-SECONDARY);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}

.platform:not(:last-child) {
	padding-bottom: 40px;
}

.platform + .platform {
	border-top: 1px solid var(--COLORS-SECONDARY);
	padding-top: 40px;
}

.platform img {
	max-height: 44px;
}

.platform a {
	text-decoration: none;
	color: black;
	display: block;
	padding: 10px 24px;
	border-radius: 66px;
	border: 1px solid var(--COLORS-SECONDARY);
	text-transform: uppercase;
	margin-left: auto;
	align-self: center;
	transition: all 0.4s;
}

.platform .platform-tipeee-inner a {
	background: #ffffff;
}

.platform a:hover {
	background: var(--COLORS-PRIMARY);
	color: var(--COLORS-SECONDARY);
}

.live {
	background-color: var(--COLORS-SECONDARY);
}

.live h2 {
	text-align: center;
	margin-bottom: 40px;
}

#youtube-gdpr {
	text-align: center;
}

.videos {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.video {
	flex-grow: 1;
	max-width: 640px;
	aspect-ratio: 16/9;
	width: 100%;
}

.video img {
	cursor: pointer;
}

.video iframe {
	border: 0;
}

.masonry {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 1fr 0.42fr 0.42fr 1fr;
	grid-gap: 20px;
}

.masonry .photo-studio {
	grid-area: 1 / 1 / 2 / 3;
}

.masonry .photo-live1 {
	grid-area: 2 / 1 / 4 / 2;
}

.masonry .photo-live2 {
	grid-area: 2 / 2 / 4 / 3;
}

.masonry .photo-live3 {
	grid-area: 4 / 1 / 5 / 3;
}

.masonry .photo-live4 {
	grid-area: 1 / 3 / 3 / 4;
}

.masonry .photo-live5 {
	grid-area: 3 / 3 / 5 / 4;
}

.masonry img {
	width: 100%;
	height: 100%;
}

.credits-inner {
	text-align: center;
	display: flex;
	gap: 24px;
	flex-direction: column;
	margin-top: 40px;
}

.credits-inner a {
	text-decoration: none;
	color: var(--COLORS-PRIMARY);
}

.credits-inner a:hover {
	text-decoration: underline;
}

footer {
	background: var(--COLORS-PRIMARY);
	color: #fff;
}

footer .logo img {
	height: 56px;
}

footer .container {
	padding: 48px 70px;
}

.inner-footer {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-nav + .footer-nav {
	border-top: 1px solid hsla(0, 0%, 100%, 0.3);
	padding-top: 40px;
	gap: 32px;
}

.footer-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.footer-nav a {
	text-decoration: none;
	color: #fff;
}

.footer-nav a:hover {
	text-decoration: underline;
}

.footer-nav ul {
	display: flex;
	justify-content: space-between;
	gap: 64px;
	align-items: center;
}

.footer-left-block {
	display: flex;
	gap: 64px;
}

.footer-nav .social-links {
	gap: 20px;
}

@media screen and (max-width: 1920px) {
	header {
		background-image: url('/assets/img/header-1920.jpg');
	}
}

@media screen and (max-width: 1023px) {
	header, header.other-page {
		aspect-ratio: 1;
		background-image: url('/assets/img/header-1024.jpg');
	}

	.menu-wrapper {
		position: absolute;
		background: none;
		width: 100%;
	}

	header nav ul {
		display: none;
	}

	.two-column-wrapper {
		flex-direction: column;
	}

	section .container {
		padding: 70px 20px;
	}

	header nav .logo {
		flex-grow: 1;
	}

	.hero h1 {
		font-size: var(--FONT-SIZES-600);
	}

	.hero .btn {
		display: none;
	}

	.album .two-column-wrapper {
		flex-direction: column-reverse;
	}

	.videos {
		flex-direction: column;
	}

	.footer-nav {
		flex-direction: column;
		gap: 64px
	}

	.footer-nav ul {
		flex-direction: column;
		gap: 32px;
	}

	.footer-nav .nav-links {
		gap: 32px;
	}

	.footer-left-block {
		flex-direction: column;
		gap: 32px;
	}

	.footer-nav .social-links {
		flex-direction: row;
	}
}

@media screen and (max-width: 767px) {
	.masonry {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 1fr 0.42fr 0.42fr 1fr 1.42fr;
	}

	.masonry .photo-live4 {
		grid-area: 5 / 1 / 6 / 2;
	}

	.masonry .photo-live5 {
		grid-area: 5 / 2 / 6 / 3;
	}
}