html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

body {
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	background-color: #141414;
	padding-top: 85px;
}

body {
	background-image: url('Assets/Pattern/Dynamic-Background01.jpg');
	background-size: 100% auto;
	background-repeat: repeat-y;
	background-position: top left;
	margin-bottom: 1px;
}

p,
h1,
h2,
h3,
h4 {
	color: white;
}

p {
	line-height: 1.5;
	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
}

h1 {
	font-size: 3rem;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 10px;
	margin-top: 10px;
}

h2 {
	font-size: 2em;
	font-family: 'Open Sans', sans-serif;
}

h3 {
	font-family: 'Open Sans', sans-serif;
}

#Tagline-Container h1, .italic {
	font-style: italic;
}

.nav-button {
	padding: 10px 20px 10px 20px;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 30px;

	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	color: white;
	text-decoration: none;

	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-button:hover {
	background-color: white;
	color: black;
	border-color: white;
}

#Tagline-Container h1 {
	font-style: italic;
}

.Button {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 10px 10px 10px;
	cursor: pointer;
	border: 1px solid white;
	border-radius: 30px;
	background-color: transparent;

	font-family: 'Open Sans', sans-serif;
	font-weight: normal;
	color: white;
	text-decoration: none;
	text-align: center;

	transition: background-color 0.3s ease, color 0.3s ease;
}

.Button:hover {
	background-color: white;
	color: black;
}

header {
	position: fixed;
	align-content: center;
	top: 0;
	width: 100%;
	background-color: #141414;
	height: 110px;
	z-index: 1000;
	box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
	transition: height 0.3s ease;
}

header.menu-open {
	/* Header height stays at 85px to prevent the logo from shifting */
	height: 140px;
}

/* Hamburger button — hidden on desktop */
#hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	width: 40px;
	height: 40px;
}

#hamburger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: white;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

/* Animate to X when open */
#hamburger-btn.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

#hamburger-btn.open span:nth-child(2) {
	opacity: 0;
}

#hamburger-btn.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown menu — full screen overlay below header */
#mobile-menu {
	position: fixed;
	top: 120px;
	left: 0;
	width: 100%;
	height: calc(100vh - 85px);
	background-color: rgba(20, 20, 20, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	z-index: 999;
	box-sizing: border-box;
	padding: 40px 10%;

	/* Animation states */
	opacity: 0;
	pointer-events: none;
	transform: translateY(-15px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.mobile-nav-link {
	color: white;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.8rem;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 15px 0;
	text-align: center;
	width: 100%;
	max-width: 280px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
	color: #ffffff;
	transform: scale(1.05);
}

.mobile-nav-link:last-child {
	border-bottom: none;
}

.Header-Content-Container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	width: 96%;
	height: 140px;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}

#Header_Logo_Button_Container {
	height: 100%;
	width: 100%;
}

.Header-Logo-Container {
	width: 280px;
	height: 100%;
	align-content: center;
}

.Header-Logo {
	height: 100%;
	width: 100%;
	object-fit: contain;

/*	transition: opacity 0.5s ease;*/
}

/* On non-home pages the logo is always visible (no scroll-fade) */
header.no-logo-fade .Header-Logo {
	opacity: 1;
	transition: none;
}

li {
	list-style: none;
}

nav {
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 20px;
}

nav > li > a {
	white-space: nowrap !important;
}

.navbar {
	gap: 20px;
}

.main-section,
.overlay-wrapper {
	width: 90%;
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}

.main-section {
	margin-top: 120px;
	margin-bottom: 180px;
}

.two-col-container {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	align-items: center;
	display: flex;
	gap: 20px;
}

.half-col {
	flex: 1;
}

.short-col {
	flex: 1;
}

.wide-col {
	flex: 2;
}

.Single-Centered-Col {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 60px;
}

.Single-Centered-Col a {
	width: 100%;
}

.section-header {
	align-content: center;
	margin-top: 60px;
	margin-bottom: 20px;
}

.section-header>h1 {
	text-align: center;
	margin-top: 60px;
}

.Icon {
	height: 30px;
	width: 30px;
}

.Icon-With-Text-Container {
	display: flex;
	align-content: center;
	gap: 20px;
}

.Icon-With-Text-Container>div {
	text-align: center;
	align-content: center;
}

.Copyright-Container {
	align-content: center;
}

.Copyright-Container>p {
	text-a
}

/* Container takes up the full viewport height and width */
.hero-slider {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
	background-color: transparent;
	flex-shrink: 0;
}

/* Stacks the slides */
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
	align-content: center;
}

/* Makes the current slide visible */
.slide.active {
	opacity: 1;
	z-index: 2;
}

/* Displays the image cleanly across the whole screen */
.slide-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.slider-overlay {
	width: 45%;
	/* Keeps its natural width */
	height: auto;
	/* Keeps its natural height */
	margin-left: 0;
	max-width: 90%;
	/* Prevents it from clipping on small screens */
	max-height: 90%;
	/* Prevents it from clipping vertically */
}

.overlay-wrapper {
	position: absolute;
	inset: 0;
	/* Stretches to all 4 corners of the slider */
	z-index: 10;
	/* Sits on top of the slides */
	pointer-events: none;
	/* Allows clicks to pass through to the slider */

	/* Uses flexbox to perfectly center the child image vertically and horizontally */
	display: flex;
	align-items: center;
	/* Vertically centers the image */
}

/* Dark tint behind the logo overlay */
/*.slide-tint {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.35);
	z-index: 5;
		pointer-events: none;
}*/

/* Slideshow Navigation Styles */
.slider-dots {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 16px 0;
	background-color: transparent;
}

/* Base style for every individual dot */
.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.5);
	/* Semi-transparent white for inactive dots */
	border-radius: 50%;
	/* Makes the square a perfect circle */
	cursor: pointer;
	transition: all 0.3s ease;
	/* Smooth fade/grow animation when active */
}

/* Subtle hover effect to let users know they can click it */
.dot:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

/* The style applied to the dot representing the CURRENT slide */
.dot.active {
	background-color: #ffffff;
	/* Solid bright white */
	transform: scale(1.2);
	/* Makes the active dot slightly larger */
}

.Sample-Photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*Home Images*/

#Media-Blasting,
#Mobile-Blasting,
#Powder-Coating,
#Ceramic-Coating,
#Pressure-Washing,
#Blank {
	background-size: cover;
	/* Forces image to fill the box without stretching */
	background-position: center;
	/* Keeps the middle of the image centered */
	background-repeat: no-repeat;

	height: 360px;
	/*  width: 100%;*/
	padding-left: 20px;
	display: flex;
	flex-direction: column;
}

#Media-Blasting h2,
#Mobile-Blasting h2,
#Powder-Coating h2,
#Ceramic-Coating h2,
#Pressure-Washing h2 {
	margin-top: auto;
	margin-bottom: 10px;
}

#Media-Blasting {
	background-image: url('Assets/SamplePhotos/MediaBlasting/MediaBlasting_Cover.jpg');
}

#Mobile-Blasting {
	background-image: url('Assets/SamplePhotos/MobileBlasting/MobileBlasting_Cover.jpg');
}

#Powder-Coating {
	background-image: url('Assets/SamplePhotos/PowderCoating/PowderCoating_Cover01.jpg');
}

#Ceramic-Coating {
	background-image: url('Assets/SamplePhotos/CeramicCoating/CeramicCoating_Cover01.jpg');
}

#Pressure-Washing {
	background-image: url('Assets/SamplePhotos/PLACEHOLDER.png');
}

#Blank p {
	text-align: center;
	margin-top: auto;
	margin-bottom: auto;
}

.Main-Sample-Photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 400px;
}

/*Gallery Specific*/
#Gallery-Title {
	margin-top: 0;
	margin-bottom: 60px;
}

#Gallery-Main {
	margin-bottom: 120px;
}

.Column-Style-1,
.Column-Style-2,
.Column-Style-3,
.Column-Style-4 {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 500px;
	gap: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.Side-Half {
	flex: 1;
}

.Side-Third {
	flex: 1;
}

.Side-Two-Thirds {
	flex: 2;
}

.Gallery-Photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#Learn-More-Container {
	margin-top: 160px;
}

#Learn-More-Container a {
	width: 100%;
}

/* Services Specific */
#Services-Media-Blasting,
#Services-Powder-Coating,
#Services-Ceramic-Coating,
#Services-Pressure-Washing {
	height: auto;
	gap: 60px;
}

#Media-Blasting-Image-Container,
#Powder-Coating-Image-Container,
#Ceramic-Coating-Image-Container,
#Pressure-Washing-Image-Container {
	height: 600px;
}

#Services-Main {
	display: flex;
	flex-direction: column;
	gap: 60px;
}


#Services-Media-Blasting,
#Services-Ceramic-Coating {
	display: flex;
	flex-direction: row-reverse;
}

#Media-Blasting-Text-Container, 
#Powder-Coating-Text-Container, 
#Ceramic-Coating-Text-Container,
#Pressure-Washing-Text-Container {
	margin-top: 40px;
	margin-bottom: 40px;
}

#Services-Quality-Statement {
	margin-top: 120px;
}


/*FOOTER*/
/*FOOTER*/
/*FOOTER*/
footer {
	background-color: #141414;;
	padding-bottom: 60px;
	width: 100%;
}

footer>.main-section {
	margin-top: 60px;
}

#Footer-Content-Container {
	margin-top: 120px;
}

#Footer-Contact-Section {
	margin-top: 60px;
	margin-bottom: 0px;
}

.Social-Icon-Container {
	height: 80px;
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

.Social-Icon {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

#Cat-Body {
	margin-bottom: 0;
	padding: 0;
	background-size: cover;
	min-height: 100vh;
	background-position: center;
	background-image: url('Assets/Cat.jpg');
	background-repeat: no-repeat;
}

#Cat-Main {
	height: 800px;
}

@media screen and (max-width: 648px) {

	h1 {
		font-size: 30px;
		margin-bottom: 0px;
	}

	h2 {
		font-size: 24px;
		margin-bottom: 4px;
	}

	p {
		font-size: 16px;
		line-height: 26px;
	}

	#Contact-Us-Button {
		display: none;
	}

	#Blank {
		display: none;
	}

	.hero-slider {
		height: 250px;
	}

	.main-section {
		margin-top: 60px;
	}

	.two-col-container {
		display: block;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.two-col-container>.short-col,
	.two-col-container>.wide-col,
	.two-col-container>.half-col {
		margin-bottom: 20px;
	}

	.two-col-container>.short-col:last-child,
	.two-col-container>.wide-col:last-child,
	.two-col-container>.half-col:last-child {
		margin-bottom: 0;
	}

	.Column-Style-1,
	.Column-Style-2,
	.Column-Style-3,
	.Column-Style-4 {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		margin-bottom: 20px;
		height: auto;
	}

	.Side-Half,
	.Side-Third,
	.Side-Two-Thirds {
		width: 100%;
		margin-bottom: 10px;
	}

	.Gallery-Photo {
		width: 100%;
/*		max-height: 280px;*/
		object-fit: cover;
		height: auto;
	}

	#Media-Blasting,
	#Mobile-Blasting,
	#Powder-Coating,
	#Ceramic-Coating,
	#Pressure-Washing,
	#Blank {
		height: 240px;
	}

	.Single-Centered-Col {
		width: 100%;
	}

	.Single-Centered-Col {
		margin-top: 120px;
	}

	.Header-Logo-Container {
		width: 100%;
	}

	#Header_Logo_Button_Container {
		width: 40%;
		height: 100px;
	}

	#Services-Media-Blasting,
	#Services-Ceramic-Coating,
	#Services-Powder-Coating,
	#Services-Pressure-Washing {
		display: block;
		height: auto;
		margin-bottom: 60px;
	}

	#Media-Blasting-Image-Container,
	#Ceramic-Coating-Image-Container,
	#Powder-Coating-Image-Container,
	#Pressure-Washing-Image-Container {
		height: 300px;
		margin-bottom: 0;
	}

	#Services-Media-Blasting .Side-Half,
	#Services-Powder-Coating .Side-Half,
	#Services-Ceramic-Coating .Side-Half,
	#Services-Pressure-Washing .Side-Half {
		margin-bottom: 20px;
	}

	#Services-Media-Blasting .Side-Half:last-child,
	#Services-Powder-Coating .Side-Half:last-child,
	#Services-Ceramic-Coating .Side-Half:last-child,
	#Services-Pressure-Washing .Side-Half:last-child {
		margin-bottom: 0;
	}

	#Media-Blasting-Text-Container,
	#Ceramic-Coating-Text-Container,
	#Powder-Coating-Text-Container,
	#Pressure-Washing-Text-Container {
		margin-top: 20px;
		margin-bottom: 0;
	}

	.navbar {
		display: none;
	}

	#hamburger-btn {
		display: flex;
	}

	#Learn-More-Container {
	margin-top: 90px;
}

	#Services-Quality-Statement {
		margin-top: 0px;
	}

	#Services-Main, #Gallery-Main {
		gap: 0px;
	}

	.overlay-wrapper {
		justify-content: center;
		width: 60%;
		min-width: 200px;
		margin-left: 8px;
		height: 100%;
	}

	.slider-overlay {
		width: 100%;
		height: 100%;
		max-width: none;
		object-fit: contain;
	}

	#Services-Main, #Gallery-Main {
		margin-top: 20px;
	}

	#Gallery-Title {
		margin-bottom: 40px;
	}

	.section-header {
		margin-top: 0;
	}

	.Icon-With-Text-Container {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 0px;
		margin-bottom: 24px;
	}

	#Email-Container {
		overflow-wrap: break-word;
		word-break: break-all;
	}

	.Social-Icon-Container {
		margin-top: 80px;
		align-content: center;
		justify-content: center;
	}

	footer h1,
	footer h2,
	footer p {
		text-align: left;
	}

	footer .Icon-With-Text-Container p {
		text-align: center;
	}

	footer .two-col-container {
		justify-content: flex-start;
		align-items: flex-start;
	}

	.Footer-Header-Title > h2 {
		text-align: center;
	}

	#Footer-Content-Container {
		margin-top: 60px;
	}

	#Footer-Contact-section {
		margin-bottom: 20px !important;
	}

}