/*
Theme Name: Sports
Theme URI: https://rochellesports.com
Author: Dave Rodman
Author URI: https://rochellesports.com
Description: One-page theme for Rochelle Management Group — a sports and entertainment advisory firm.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sports
*/

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: #e0e0e0;
	background-color: #0a0a0a;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: #e85d26;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #ff7a45;
}

h1, h2, h3, h4 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.section-padding {
	padding: 100px 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 16px 0;
	transition: background 0.3s ease;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo img {
	height: 50px;
	width: auto;
	filter: invert(1) brightness(2);
}

.header-nav a {
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-left: 32px;
	position: relative;
}

.header-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #e85d26;
	transition: width 0.3s ease;
}

.header-nav a:hover {
	color: #e85d26;
}

.header-nav a:hover::after {
	width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding-top: 82px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('assets/images/52577659052-f1af1a170f-o.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(10, 10, 10, 0.6) 0%,
		rgba(10, 10, 10, 0.75) 50%,
		rgba(10, 10, 10, 0.95) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 24px;
}

.hero-logo {
	width: 320px;
	margin: 0 auto 40px;
	filter: invert(1) brightness(2);
}

.hero h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: clamp(2.5rem, 6vw, 5rem);
	margin-bottom: 20px;
	background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-tagline {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	color: #b0b0b0;
	max-width: 700px;
	margin: 0 auto 40px;
	font-weight: 300;
}

.hero-cta {
	display: inline-block;
	padding: 16px 48px;
	background: #e85d26;
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
	background: #ff7a45;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
	background: #0f0f0f;
}

.about .section-label {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #e85d26;
	margin-bottom: 16px;
}

.about h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 40px;
}

.about-text {
	max-width: 800px;
}

.about-text p {
	margin-bottom: 24px;
	font-size: 1.05rem;
	color: #c0c0c0;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.accent-line {
	width: 60px;
	height: 3px;
	background: #e85d26;
	margin-bottom: 32px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
	background: #0a0a0a;
}

.gallery .section-label {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #e85d26;
	margin-bottom: 16px;
	text-align: center;
}

.gallery h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	text-align: center;
	margin-bottom: 60px;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease, filter 0.6s ease;
	filter: brightness(0.85);
}

.gallery-item:hover img {
	transform: scale(1.05);
	filter: brightness(1);
}

.gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.7) 0%,
		transparent 50%
	);
	display: flex;
	align-items: flex-end;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}

.gallery-item-overlay span {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #ffffff;
}

/* Feature item spans 2 columns */
.gallery-item--wide {
	grid-column: span 2;
}

/* ==========================================================================
   Mission
   ========================================================================== */

.mission {
	position: relative;
	overflow: hidden;
}

.mission-bg {
	position: absolute;
	inset: 0;
	background-image: url('assets/images/G8sk56sXYAEZvNQ.jpg');
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}

.mission-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.85);
}

.mission-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.mission .section-label {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #e85d26;
	margin-bottom: 16px;
}

.mission h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 40px;
}

.mission-statement {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: 300;
	color: #e0e0e0;
	line-height: 1.8;
	font-style: italic;
}

.mission-statement::before,
.mission-statement::after {
	content: '"';
	color: #e85d26;
	font-size: 1.5em;
	font-style: normal;
	vertical-align: -0.1em;
}

.mission-statement::after {
	content: '"';
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
	background: #0f0f0f;
	text-align: center;
}

.contact .section-label {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #e85d26;
	margin-bottom: 16px;
}

.contact h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 24px;
}

.contact p {
	color: #b0b0b0;
	margin-bottom: 40px;
	font-size: 1.1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-btn {
	display: inline-block;
	padding: 18px 56px;
	background: transparent;
	color: #e85d26;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border: 2px solid #e85d26;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
	background: #e85d26;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: #050505;
	padding: 48px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
	height: 40px;
	width: auto;
	filter: invert(1) brightness(2);
	margin: 0 auto 20px;
	opacity: 0.6;
}

.site-footer p {
	color: #666666;
	font-size: 14px;
}

.footer-credit {
	margin-top: 8px;
	font-size: 12px !important;
}

.footer-credit a {
	color: #888888;
	transition: color 0.3s ease;
}

.footer-credit a:hover {
	color: #e85d26;
}

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gallery-item--wide {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	body {
		font-size: 16px;
	}

	.section-padding {
		padding: 70px 0;
	}

	.site-logo img {
		height: 36px;
	}

	.header-nav {
		display: none;
	}

	.hero-logo {
		width: 220px;
	}

	.hero-bg,
	.mission-bg {
		background-attachment: scroll;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.gallery-item--wide {
		grid-column: span 1;
	}

	.hero-cta,
	.contact-btn {
		padding: 14px 36px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.hero-logo {
		width: 180px;
	}

	.container {
		padding: 0 16px;
	}
}
