@charset "utf-8";
/* Into The Necrosphere | Responsive CSS */

/* ===========
| NOT SURE :( |
============ */
@media (max-width: 480px) {
	.horsemen-grid {
	grid-template-columns: 1fr;
	}
}

@media (max-width: 500px) {
	.filth-grid {
	grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.horsemen-grid {
	grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 880px) {
	.podcast-grid {
	grid-template-columns: 1fr;
}

.podcast-right {
	order: 2;
	margin-top: 14px;
	}
}


/* ==============
| LAPTOP - LARGE |
================ */
@media (min-width: 1101px) and (max-width: 1537px) {
	/* === MENU/HEADER === */	
	.torn-edge {
	bottom: 10;
	}
	
	/* === HERO === */
	.hero {
	width: 100%;
	min-height: 800px;
	}

	.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	max-width: 1500px;
	text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	z-index: 2;
	}

	.hero-logo img {
	width: 100%;
	max-width: 800px;
	}

	.hero-content h1 {
	margin-top: -25px;
	}
}

/* ==============
| LAPTOP - SMALL |
================ */
@media (min-width: 1024px) and (max-width: 1536px) {
	/* === HEADER === */
	.header-inner {
	flex-direction: column;
	justify-content: center !important;
	align-items: center !important;
	padding: 15px 20px;
	}

	.logo {
	order: 1;
	margin: 0 auto;
	text-align: center;
	}

	.logo img {
	width: 150px;
	height: auto;
	display: block;
	margin: 0 auto;
	}

	.social-icons {
	order: 3;
	margin-top: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	}
	
	.social-icons img {
	width: 28px;
	}

	.torn-edge {
	position: absolute;
	left: 0;
	bottom: -75px;
	width: 100%;
	height: 500px;
	background: url("images/menu-bg-mobile.webp") repeat-x bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 10;
	}

	/* hamburger */
	.nav-toggle {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 40px;
	height: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 9999;
	}

	.nav-toggle span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 0 6px rgba(0,0,0,0.6);
	transition: all 0.3s ease;
	}

	.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
	.nav-toggle.active span:nth-child(2) { opacity: 0; }
	.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px);
	}

	.main-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(6px);
	transform: translateX(100%);
	transition: transform 0.35s ease;
	overflow-y: auto;
	padding: 60px 10px 0px 30px;
	border-left: 1px solid rgba(182,123,87,0.3);
	box-shadow: -10px 0 25px rgba(182,123,87,0.1);
	z-index: 1000;
	}

	.main-nav.active {
	transform: translateX(0);
	}
	
	.main-nav a {
	font-size: 20px;
	display: inline-block;
	margin: 0 !important;
	padding: 5px 0;
	max-width: 100%;
	}
	
	.main-nav a[href="#horsemen"] {
	max-width: 85%;
	line-height: 1.3;
	word-break: break-word;
	}

	.main-nav ul {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	z-index: 2;
	}

	.main-nav li {
	opacity: 1 !important;
	transform: none !important;
	}
}

/* ======
| TABLET |
======= */
@media (min-width: 768px) and (max-width: 1100px) {
	h2 {
	font-size: 45px;	
	}
	
	.btn {
	font-size: 25px;
	}
	
	/* === HEADER === */
	.header-inner {
	flex-direction: column;
	justify-content: center !important;
	align-items: center !important;
	padding: 15px 20px;
	}

	.logo {
	order: 1;
	margin: 0 auto;
	text-align: center;
	}

	.logo img {
	width: 175px;
	height: auto;
	display: block;
	margin: 0 auto;
	}

	.social-icons {
	order: 3;
	margin-top: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	}
	
	.social-icons img {
	width: 28px;
	}

	.torn-edge {
	position: absolute;
	left: 0;
	bottom: -75px;
	width: 100%;
	height: 500px;
	background: url("images/menu-bg-mobile.webp") repeat-x bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 10;
	}

	/* hamburger */
	.nav-toggle {
	position: absolute;
	top: 20px;
	right: 30px;
	width: 40px;
	height: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 9999;
	}

	.nav-toggle span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 0 6px rgba(0,0,0,0.6);
	transition: all 0.3s ease;
	}

	.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
	.nav-toggle.active span:nth-child(2) { opacity: 0; }
	.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px);
	}

	.main-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(6px);
	transform: translateX(100%);
	transition: transform 0.35s ease;
	overflow-y: auto;
	padding: 60px 10px 0px 30px;
	border-left: 1px solid rgba(182,123,87,0.3);
	box-shadow: -10px 0 25px rgba(182,123,87,0.1);
	z-index: 1000;
	}

	.main-nav.active {
	transform: translateX(0);
	}
	
	.main-nav a {
	font-size: 20px;
	display: inline-block;
	margin: 0 !important;
	padding: 5px 0;
	max-width: 100%;
	}
	
	.main-nav a[href="#horsemen"] {
	max-width: 85%;
	line-height: 1.3;
	word-break: break-word;
	}

	.main-nav ul {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	z-index: 2;
	}

	.main-nav li {
	opacity: 1 !important;
	transform: none !important;
	}
	
	/* === HERO === */
	.hero {
	background: url("images/hero-img-mobile.webp") no-repeat center top;
	background-size: contain;
	min-height: 900px;
	}
	
	.hero-content {
	top: 50%;
	}
	
	.hero-logo img {
    max-width: 900px;
    width: 95vw;
	}
	
	.hero-content h1 {
	margin-top: -35px;
	font-size: 45px;	
	}
	
	.hero-content h3 {
	margin-top: 5px;
	font-size: 35px;
	}
	
	/* === PODCAST: THIS WEEK === */
	.podcast {
	padding: 120px 0 150px 0;
	background: url("images/section-bg-mobile.webp") repeat-x center;
	background-size: contain;
	}

	.podcast-grid {
	grid-template-columns: 1fr;
	gap: 40px;
	}

	.video-wrap {
	width: 90%;
	margin: 0 auto;
	}

	.episode-logo {
	max-width: 425px;
	}
	
	.cta-grid {
	margin: 20px auto 0;
	}
	
	.cta-logo {
	height: 35px;
	width: auto;
	}
	
	/* === HORSEMEN === */
	.horsemen {
	width: 100%;
	margin: 0 auto;
	}
	
	.horsemen-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 10px; 
	max-width: 800px;
	}
	
	/* === PLAYLIST OF THE WEEK === */
	.playlist-frame {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
	}
	
	/* === UNSANCTIONED FILTH === */
	.filth {
	width: 95%;
	margin: 0 auto;
	padding-top: 50px;
	}

	.filth-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 10px; 
	max-width: 600px;
	}
	
	/* === CONTACT === */
	.contact {
	padding: 0 0 100px;
	}
	
	.contact-grid {
	grid-template-columns: 1fr;
	gap: 40px;
	text-align: center;
	}

	.contact-info {
	justify-self: center;
	align-items: center;
	text-align: center;
	width: 100%;
	}

	.contact-form {
	padding: 80px;
	margin: 0 20px;
	text-align: left;
	}

	.contact-form .btn {
	width: 50%;
	}
	
	/* === FOOTER === */
	.site-footer {
	padding: 120px 20px 60px;
	}
	
	.site-footer::before {
	background: url("images/footer-bg.webp") repeat-x top;
	}
}

/* ======
| MOBILE |
======= */
@media (max-width: 768px) {
	section {
	scroll-margin-top: 150px;
	}
	
	/* === HEADER === */
	.header-inner {
	flex-direction: column;
	justify-content: center !important;
	align-items: center !important;
	padding: 15px 20px;
	}

	.logo {
	order: 1;
	margin: 0 auto;
	text-align: center;
	}

	.logo img {
	display: block;
	margin: 0 auto;
	}

	.social-icons {
	order: 3;
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	}

	.torn-edge {
	position: absolute;
	left: 0;
	bottom: -75px;
	width: 100%;
	height: 500px;
	background: url("images/menu-bg-mobile.webp") repeat-x bottom;
	background-size: contain;
	pointer-events: none;
	z-index: 10;
	}

	/* hamburger */
	.nav-toggle {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 30px;
	height: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 9999;
	}

	.nav-toggle span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 0 6px rgba(0,0,0,0.6);
	transition: all 0.3s ease;
	}

	.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
	.nav-toggle.active span:nth-child(2) { opacity: 0; }
	.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px);
	}

	.main-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 65%;
	height: 100%;
	background: rgba(0, 0, 0, 0.96);
	backdrop-filter: blur(6px);
	transform: translateX(100%);
	transition: transform 0.35s ease;
	overflow-y: auto;
	padding: 60px 10px 0px 20px;
	border-left: 1px solid rgba(182,123,87,0.3);
	box-shadow: -10px 0 25px rgba(182,123,87,0.1);
	z-index: 1000;
	}

	.main-nav.active {
	transform: translateX(0);
	}
	
	.main-nav a {
	font-size: 16px;
	display: inline-block;
	margin: 0 !important;
	padding: 5px 0;
	max-width: 100%;
	}
	
	.main-nav a[href="#horsemen"] {
	max-width: 85%;
	line-height: 1.3;
	word-break: break-word;
	}

	.main-nav ul {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	z-index: 2;
	}

	.main-nav li {
	opacity: 1 !important;
	transform: none !important;
	}
	
	/* === HERO === */
	.hero {
	background: url("images/hero-img-mobile.webp") no-repeat center top;
	background-size: contain;
	min-height: 575px;
	}
	
	.hero-content {
	top: 55%;
	}
	
	.hero-logo img {
    max-width: clamp(520px, 95vw, 1100px);
    width: 95vw;
	}
	
	.hero-content h1 {
	margin-top: 15px;
	}
	
	.hero-content h3 {
	margin-top: 15px;
	}
	
	/* === PODCAST: THIS WEEK === */
	.podcast {
	background: url("images/section-bg-mobile.webp") repeat-x center;
	background-size: contain;
	}
	
	.video-wrap {
	width: 95%;
	padding: 0 10px;
	}

	.episode {
	margin-top: -20px;
	}
	
	/* === HORSEMEN APOCALYPSE === */
	.horsemen {
    width: 100%;
    padding: 0px 10px 60px 10px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
	scroll-margin-top: 200px;
	}

	.horsemen-intro {
	margin: 0 auto 30px;
	}
	
	.horsemen-grid {
	grid-template-columns: 1fr;
	gap: 20px;
	}

	.horsemen-card {
	max-width: 250px;
	}
	
	.horsemen-card img {
	display: block;
	margin: 0 auto 10px;
	width: 85%;
	height: auto;
 	}
	
	.horsemen-links img {
	width: 24px;
	height: 24px;
	}

	/* === PLAYLIST OF THE WEEK === */
	.playlist {
	width: 100%;
	background: url("images/section-bg-mobile.webp") repeat-x center;
	background-size: contain;
	}

	.playlist-frame {
	width: 90%;
	margin: 0 auto;
	border-radius: 8px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.5);
	background: rgba(0,0,0,0.3);
	}

	/* === UNSANCTIONED FILTH === */
	.filth {
	padding: 30px 10px 50px 10px;
	}

	.filth-grid {
	grid-template-columns: repeat(1fr);
	gap: 20px;
	}
	
	/* === MERCH === */
	.merch {
	padding: 200px 0 250px;
	background: url("images/section-bg-mobile.webp") repeat-x center;
	background-size: contain;
	}
	
	/* === CONTACT === */
	.contact-grid {
	grid-template-columns: 1fr;
	gap: 40px;
	text-align: center;
	}

	.contact-info {
	justify-self: center;
	align-items: center;
	text-align: center;
	width: 100%;
	}

	.contact-form {
	padding: 40px 20px;
	margin: 0 20px;
	text-align: left;
	}

	.contact-form .btn {
	width: 100%;
	}
	
	/* === FOOTER === */
	.site-footer {
	padding: 120px 20px 60px;
	}
	
	.site-footer::before {
	background: url("images/footer-bg.webp") repeat-x top;
	}
}