@charset "UTF-8";

/* --- 1. Global Reset & Base Elements --- */
*, 
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, 
body {
	background: #000;
	font-family: Arial, sans-serif;
}

body {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
}

header {
	padding: 0px;
}

/* --- 2. Responsive Media Rules --- */
.img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: block;
}

/* --- 3. Typography & Headings (Mobile View Sizes) --- */
h1 {
	text-align: center;
	text-transform: uppercase;
	font-family: "Audiowide", sans-serif !important;
	font-weight: 700;
	font-size: 22pt;
}

h2 {
	font-family: "Audiowide", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #C5075B;
	text-transform: uppercase;
	font-size: 28px;
	margin-top: 50px;
}

h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 300;
	color: #aaaaaa;
	font-family: "Audiowide", sans-serif;
	font-style: normal;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 25px;
	line-height: 1.5;
}

.teaser {
	font-size: 16pt;
	color: #B8B8BA;
	text-align: left;
	line-height: 1.4;
}

/* --- 4. Navigation & Component Styles --- */
.bodylink A:link {color: #C5075B;}
.bodylink A:visited {color: #C5075B;}
.bodylink A:hover {color: #FFF;}
.bodylink A:active {color: #FFF;}

/* Premium App-Style Nav Grid for Mobile viewports */
.nav-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap; /* Permits safe row splitting on narrow displays */
	gap: 8px; /* Tightly controlled structural element padding */
	padding: 12px 15px; 
	background-color: transparent; /* FIXED: Removed gray background block */
	border-bottom: none; /* FIXED: Stripped out old gray divider line */
	margin-bottom: 20px;
}

.nav-grid-item {
	display: inline-block;
	padding: 8px 6px; 
	flex: 1; /* Automatically stretches item block to fill natural column space */
	min-width: 65px; 
	max-width: 140px; 
	text-align: center;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Audiowide", sans-serif;
	font-size: 11px; 
	font-weight: 400;
	letter-spacing: 0.5px;
	border: 1px solid #C5075B; /* FIXED: Updated button border outlines to brand pink */
	border-radius: 4px;
	background-color: transparent;
	transition: all 0.3s ease;
	white-space: nowrap; 
}

.nav-grid-item:active {
	color: #fff;
	background-color: #C5075B;
	border-color: #C5075B;
	box-shadow: 0 0 15px rgba(197, 7, 91, 0.6);
}

/* Global standalone button rule baseline */
.button {
	display: inline-block;
	max-width: 100%;
	border: 2px #C5075B solid;
	padding: 8px 16px;
	color: #C5075B;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(images/navbg.png);
	background-position: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 18px;
	font-weight: 600;
}

.h1banner {
	background-color: #c5075b; 
	padding: 30px 15px;
	margin-bottom: 0px;
}

.bodycopy {
	background-color: #251c20;
	border-radius: 10px;
	padding: 20px 20px 5px 20px;
	margin-bottom: 20px;
}

.contact {
	margin-left: auto;
	margin-right: auto;
	display: block;
	color: #fff;
	font-size: 22px;
	text-align: center;
	padding-top: 20px;
	vertical-align: middle;
	max-width: 100%;
}

.contact img {
	max-width: 100%;
	height: auto;
}

/* --- 5. Structural Grid & Layout --- */
.col {
	width: 100%;
}

.banner {
	width: 100%;
	max-width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}
 
.comic {
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 50px;
}

/* --- 6. Footer Layout (Sleek Mobile First) --- */
.footer {
	background-color: #000;
	color: #C5075B;
	padding: 40px 20px;
	text-align: center;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.footer-social-icon {
	display: inline-block;
}

.footer-social-icon img {
	width: 24px; 
	height: 24px;
	display: block;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.footer-link {
	color: #C5075B;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer-link:hover {
	opacity: 0.7;
}


/* --- 7. Desktop Responsive View --- */
@media (min-width: 1024px) {
	body {
		max-width: 1200px;
	}
	
	h1 {
		font-weight: 300;
		font-size: 32pt;
	}
		
	h2 {
		text-align: left;
		font-size: 48px;
	}
	
	h3 {
		margin-bottom: 0px;
		font-size: 30px;
	}

	.h1banner {
		padding: 20px;
	}
	
	.teaser {
		font-size: 16pt;
		font-weight: 200;
	}

	.banner {
		width: 500px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	/* Restores Original Desktop Navigation layout format constraints */
	.nav-grid {
		padding: 10px 10px 20px 10px;
		display: block;
		text-align: center; /* FIXED: Centers desktop links within block container */
		background-color: transparent;
		border-bottom: none;
		margin-bottom: 0;
	}

	/* Force desktop styles to mimic your premium widescreen textured layout blocks exactly */
	.nav-grid-item {
		display: inline-block;
		max-width: 100%;
		border: 2px #C5075B solid;
		padding: 0px 20px;
		color: #C5075B;
		text-decoration: none;
		text-transform: uppercase;
		background-image: url(images/navbg.png);
		background-position: center;
		background-color: transparent;
		font-family: "Audiowide", sans-serif; /* FIXED: Updated font face */
		font-size: 16px; /* FIXED: Pulled down text layout sizing */
		font-weight: 400; /* FIXED: Cleaned up heavy weights down to clean 400 book weight */
		letter-spacing: 1px; /* FIXED: Enhanced tracking spacing definition */
		border-radius: 0px;
		margin: 0;
		box-shadow: none;
		transform: none;
		flex: none;
	}
	
	.nav-grid-item:hover {
		color: #FFF;
		background-color: transparent;
		border-color: #C5075B;
		box-shadow: none;
		transform: none;
	}

	.button {
		font-size: 20px;
		padding: 0px 20px;
	}

	.contact {
		font-size: 26px;
	}

	/* Footer Desktop Styles */
	.footer {
		padding: 20px 0;
		font-size: 20px;
	}

	.footer-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}

	.footer-social {
		margin-bottom: 0;
		gap: 0;
	}

	.footer-social-icon {
		margin: 0 10px;
	}

	.footer-social-icon img {
		width: 30px;
		height: 30px;
	}

	.footer-links {
		flex-direction: row;
		justify-content: flex-end;
		gap: 0;
	}

	.footer-link {
		margin: 5px 15px;
		font-size: 20px;
		text-transform: none;
		letter-spacing: normal;
	}
}