/*Master Styles*/

*,
*::before,
*::after {
	margin: 0%;
	padding: 0%;
	box-sizing: border-box;
	scroll-behavior: smooth;
	list-style-type: none;
	text-decoration: none;
	font-family: 'Poppins';
}

:root {
	--bg-color: black;
	--large-fs: clamp(2rem, 3vw, 50px);
	--main-fs: 2vw;
	--sec-fs: clamp(0.8rem, 1.2vw, 20px);
	--small-fs: clamp(0.8rem, 1vw, 15px);
	--tiny-fs: clamp(0.7rem, 0.8vw, 13px);
}

body {
	overflow-x: hidden;
	color: white;
	font-size: var(--main-fs);
	background: #dadada;
}

h1 {
	font-size: var(--large-fs);
	font-weight: 600;
	letter-spacing: 0.5rem;
}

h2 {
	font-size: var(--sec-fs);
	font-weight: 500;
	letter-spacing: 0.3rem;
}

h3 {
	font-size: var(--small-fs);
	font-weight: 500;
	letter-spacing: 0.3rem;
	color: black;
}

h4 {
	font-size: var(--tiny-fs);
	font-weight: 500;
	letter-spacing: 0.3rem;
}


/*Default Classes*/


.horz_flex {
	display: flex;
}

.vert_flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.btn {
	position: relative;
	padding: 0.7em 1.2em;
	background: none;
	font-size: var(--sec-fs);
	cursor: pointer;
	transition: 0.6s;
}

.btn::before {
	content: "";
	position: absolute;
	left: 0;
	z-index: -1;
	transition: 0.6s;
}


/*Hero*/


.hero {
	height: 100vh;
	position: relative;
	overflow-x: hidden;
	background-image: url("images/hero-bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

nav {
	padding: 3% 5% 0% 5%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2em;
	width: 100%;
}

.logoContainer {
	width: 10%;
	min-width: 120px;
}

.logoContainer img {
	width: 100%;
}

.navContent {
	display: flex;
	align-items: center;
	gap: 1em;
}

nav a {
	position: relative;
	text-decoration: none;
	color: white;
	font-size: var(--sec-fs);
	font-weight: 400;
	letter-spacing: 0.3rem;
}

nav a:after {
	content: "";
	position: absolute;
	background-color: white;
	width: 0%;
	height: 1.2px;
	left: 0;
	bottom: -5px;
	;
	transition: 0.4s;
}

nav a:hover:after {
	width: 100%;
}

.off-screen-menu {
	background-color: #151515;
	height: 100vh;
	width: 100%;
	padding-left: 5%;
	padding-top: 20%;
	max-width: 250px;
	position: fixed;
	top: 0%;
	right: -450px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 3em;
	transition: .3s ease;
	z-index: 1;
}

.off-screen-menu.active {
	right: 0;
}

.ham-menu {
	height: 50px;
	width: 50px;
	position: relative;
	z-index: 2;
	display: none;
}

.ham-menu span {
	height: 4px;
	width: 70%;
	background-color: white;
	border-radius: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .3s ease;
}

.ham-menu span:nth-child(1) {
	top: 25%;
}

.ham-menu span:nth-child(3) {
	top: 75%;
}

.ham-menu.active span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
	opacity: 0;
}

.ham-menu.active span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.out_now {
	width: 100%;
	position: absolute;
	bottom: 0%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	text-align: center;
}

.listen_btn {
	border: 1px white solid;
	color: white;
}

.listen_btn:hover {
	color: black;
}

.listen_btn::before {
	width: 0%;
	height: 100%;
	background: white;
	top: 0;
}

.listen_btn:hover::before {
	width: 100%;
}

@media screen and (max-width: 750px) {
	.navContent {
		display: none;
	}

	.ham-menu {
		display: block;
	}

	nav {
		padding: 5% 5% 0% 5%;
		justify-content: space-between;
	}
}

@media screen and (max-width: 450px) {
	.off-screen-menu {
		padding-top: 30%;
	}
}


/*Stream Album Section*/

.streamAlbum {
	width: 100%;
	background-color: #F0ECEC;
}

.streamAlbumContainer {
	padding: 5% 10%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6em;
}

.imgContainer {
	width: 30%;
	min-width: 250px;
}

.imgContainer img {
	width: 100%;
	border: 0.5px solid #e2e2e2;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.streamAlbumContent {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8em;
	text-align: center;
}

.links {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5em;
}

.icon img {
	width: 70%;
	cursor: pointer;
	min-width: 45px;
}


@media screen and (max-width: 1350px) {
	.icon img {
		width: 60%;
	}

	.links {
		gap: 0.8em;
	}
}

@media screen and (max-width: 1250px) {
	.icon img {
		width: 50%;
	}

	.links {
		gap: 0.3em;
	}
}

@media screen and (max-width: 1050px) {
	.streamAlbumContainer {
		gap: 4em;
	}
}

@media screen and (max-width: 950px) {
	.streamAlbumContainer {
		gap: 2em;
		flex-direction: column;
		padding: 10% 10%;
	}

	.streamAlbumContent {
		gap: 1.2em;
	}

	.links {
		gap: 0;
	}

	.icon {
		display: flex;
		align-items: end;
		justify-content: center;
	}
}

@media screen and (max-width: 600px) {
	.streamAlbumContent {
		gap: 1.5em;
	}
}

/*Youtube Section*/


.youtubeSection {
	width: 100%;
	background-color: #dadada;
	z-index: 1;
}

.youtubeSectionContainer {
	padding: 5% 15%;
}

.ytContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.5em;
}

.ytVideo {
	width: 100%;
	height: 70vh;
}

.ytVideo iframe {
	box-shadow: 5px 10px 18px #888888;
}

.ytText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5em;
}

.vids_btn {
	border: 1px #151515 solid;
	color: #151515;
	z-index: 2;
}

.vids_btn:hover {
	color: white;
}

.vids_btn::before {
	width: 100%;
	height: 0%;
	background: #151515;
	top: 0;
}

.vids_btn:hover::before {
	height: 100%;
}

@media screen and (max-width: 1250px) {
	.ytVideo {
		height: 450px;
	}
}

@media screen and (max-width: 920px) {
	.ytVideo {
		height: 350px;
	}
}

@media screen and (max-width: 800px) {
	.ytVideo {
		height: 250px;
	}

	.youtubeSectionContainer {
		padding: 10% 15%;
	}
}


/*Pic Break*/


.pic_break {
	width: 100%;
	height: 60vh;

}

.parallax {
	min-height: 100%;
	background: transparent;
}


/*Merch Section*/


.merch {
	background-color: white;
	width: 100%;
}

.merchTitle {
	width: 100%;
	text-align: center;
}

.title {
	font-size: 20vw;
	color: black;
	opacity: 0.08;
	letter-spacing: 5vw;
}

.merchContainer {
	padding: 5% 2% 0% 2%;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3em;
	align-content: center;
}

.card {
	width: 25%;
	min-width: 250px;
	display: flex;
	flex-direction: column;
}

.img-wrapper {
	width: 100%;
	position: relative;
}

.img-wrapper img {
	width: 100%;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.12);
}

.img-front {
	position: absolute;
	top: 0%;
	left: 0%;
	transition: opacity 0.7s ease-in-out;
}

.img-front:hover {
	opacity: 0;
	cursor: pointer;
}

.merch-text {
	padding-top: 2%;
}

.sub-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: black;
	padding: 3% 0%;
}

h4 a {
	font-weight: 600;
	transition: 0.3s;
	color: rgb(63, 63, 202);
}

h4 a:hover {
	color: rgb(1, 184, 184);
}

.btnContainer {
	padding: 5% 0% 7% 0%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.merch_btn {
	border: 1px #151515 solid;
	color: #151515;
	z-index: 1;
}

.merch_btn:hover {
	color: white;
}

.merch_btn::before {
	width: 0%;
	height: 100%;
	background: #151515;
	top: 0;
}

.merch_btn:hover::before {
	width: 100%;
}

.merch_btn h2 a {
	color: #151515;
	transition: 0.6s;
}

.merch_btn:hover h2 a {
	color: white;
	transition: 0.6s;
}


/*Media*/


.media {
	height: 500px;
	position: relative;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
}

#hotandheavy {
	background-image: url("images/mib-interview-bg-dark.jpg");
	background-position: 0% 15%;

}

#haven {
	background-image: url("images/idio-bg-dark.jpg");
	background-position: center;
}

#idio {
	background-image: url("images/haven-bg-dark.jpg");
	background-position: 0% 30%;
}

.mediaContentContainer {
	width: 100%;
	padding: 0% 5%;
	display: flex;
	justify-content: space-between;
	align-items: end;
	position: absolute;
	bottom: 7%;
}

.left-side {
	color: white;
}

.media_btn {
	border: 1px white solid;
	color: white;
	z-index: 2;
}

.media_btn:hover {
	color: black;
}

.media_btn::before {
	width: 0%;
	height: 100%;
	background: white;
	top: 0;
}

.media_btn:hover::before {
	width: 100%;
}

@media screen and (max-width: 1250px) {
	.media {
		height: 450px;
	}
}

@media screen and (max-width: 1100px) {
	.media {
		height: 350px;
	}
}

@media screen and (max-width: 850px) {
	.left-side h1 {
		font-size: 25px;
	}

	.left-side h2 {
		font-size: 10px;
	}
}

@media screen and (max-width: 700px) {
	.mediaContentContainer {
		height: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 3em;
		position: static;
		margin: auto;
	}

	.left-side h1 {
		font-size: 25px;
	}

	.left-side h2 {
		font-size: 10px;
	}
}

/*Footer*/


footer {
	background-color: #101010;
}

.footer_container {
	width: 100%;
	padding: 5%;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

#socials_section {
	justify-content: space-between;
	align-items: baseline;
}

.socials {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 2em;
}

.logo {
	width: 15%;
	min-width: 90px;
}

#copyright_section {
	justify-content: space-between;
	align-items: center;
}

.line {
	width: 70%;
}

.copyright {
	font-weight: 100;
}

.smallIcon {
	display: none;
}

.tinyIcon {
	display: none;
}

@media screen and (max-width: 1250px) {
	.line {
		width: 60%;
	}

	.footer_container {
		gap: 1em;
	}
}

@media screen and (max-width: 900px) {
	.line {
		width: 50%;
	}

	.bigIcon {
		display: none;
	}

	.smallIcon {
		display: block;
	}

}

@media screen and (max-width: 700px) {
	.footer_container h1 {
		font-size: 2em;
	}

	.smallIcon {
		display: none;
	}

	.tinyIcon {
		display: block;
	}

	.line {
		width: 30%;
	}

	.copyright {
		letter-spacing: 0.5vw;
	}
}