/* ============================================================================
   The Legacy Weekend - rivalry night theme (tix.thelegacyweekend.net)
   Stadium-dark ground, championship gold, split Gator-orange / Seminole-garnet
   accents. Type: Big Shoulders Display (headlines), Graduate (collegiate
   eyebrows/dates), Archivo (body).
   Copyright 2005-Present, ITS MY SEAT INC.
   ============================================================================ */

:root {
	--lw-night:      #0c0f15;
	--lw-night-2:    #10141d;
	--lw-card:       #151a25;
	--lw-card-edge:  #232a3a;
	--lw-cream:      #f1ece0;
	--lw-cream-dim:  #a39d8e;
	--lw-gold:       #d3a73e;
	--lw-gold-soft:  #e9c25e;
	--lw-orange:     #fa4616;   /* Gator orange  */
	--lw-garnet:     #9c3d52;   /* Seminole garnet, lifted for dark ground */
	--lw-garnet-deep:#782f40;
	--lw-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
	--lw-college: 'Graduate', 'Courier New', serif;
	--lw-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	background: var(--lw-night);
	color: var(--lw-cream);
	font-family: var(--lw-body);
	font-weight: 300;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

/* Stadium atmosphere: faint yard-line hash marks + top light glow */
.lw-page {
	min-height: 100vh;
	position: relative;
	background:
		radial-gradient(ellipse 90% 40% at 50% -5%, rgba(211, 167, 62, 0.10), transparent 60%),
		repeating-linear-gradient(90deg,
			transparent 0px, transparent 118px,
			rgba(241, 236, 224, 0.022) 118px, rgba(241, 236, 224, 0.022) 120px),
		linear-gradient(180deg, var(--lw-night-2) 0%, var(--lw-night) 30%);
}

/* ============ Navigation ============ */
.lw-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px clamp(20px, 5vw, 56px);
	border-bottom: 1px solid rgba(211, 167, 62, 0.18);
	position: relative;
	z-index: 20;
}

.lw-nav-logo img { height: 52px; width: auto; display: block; }

.lw-nav-links {
	display: flex;
	gap: 34px;
	list-style: none;
	align-items: center;
}

.lw-nav-links a {
	color: var(--lw-cream-dim);
	text-decoration: none;
	font-family: var(--lw-college);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.lw-nav-links a:hover { color: var(--lw-gold); }

.lw-nav-links a.active {
	color: var(--lw-gold);
	border-bottom: 2px solid var(--lw-gold);
	padding-bottom: 4px;
}

.lw-hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.lw-hamburger span {
	display: block; width: 26px; height: 2px; margin: 6px 0;
	background: var(--lw-gold); transition: transform 0.3s ease, opacity 0.3s ease;
}
.lw-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.lw-hamburger.open span:nth-child(2) { opacity: 0; }
.lw-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.lw-hero {
	text-align: center;
	padding: clamp(56px, 9vw, 110px) 24px clamp(40px, 6vw, 72px);
	position: relative;
}

.lw-hero-eyebrow {
	font-family: var(--lw-college);
	font-size: clamp(11px, 1.4vw, 14px);
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--lw-gold);
	margin-bottom: 26px;
	animation: lw-rise 0.7s ease both;
}

.lw-hero-title {
	font-family: var(--lw-display);
	font-weight: 800;
	font-size: clamp(44px, 8.5vw, 108px);
	line-height: 0.98;
	text-transform: uppercase;
	letter-spacing: 0.01em;
}

.lw-hero-line { display: block; animation: lw-rise 0.7s ease both; }
.lw-hero-line:nth-child(1) { animation-delay: 0.08s; }
.lw-hero-line:nth-child(2) { animation-delay: 0.2s; }
.lw-hero-line:nth-child(3) { animation-delay: 0.32s; }

.lw-orange { color: var(--lw-orange); }
.lw-garnet { color: var(--lw-garnet); }
.lw-gold   { color: var(--lw-gold); }

.lw-hero-sub {
	max-width: 560px;
	margin: 30px auto 0;
	color: var(--lw-cream-dim);
	font-size: clamp(15px, 1.7vw, 17px);
	animation: lw-rise 0.7s 0.45s ease both;
}

.lw-hero-cta {
	display: inline-block;
	margin-top: 38px;
	padding: 16px 46px;
	font-family: var(--lw-college);
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--lw-night);
	background: linear-gradient(120deg, var(--lw-gold), #e9c25e);
	text-decoration: none;
	clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	animation: lw-rise 0.7s 0.55s ease both;
}

.lw-hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 34px rgba(211, 167, 62, 0.35);
}

/* Split rivalry rule: orange meets garnet at a gold diamond */
.lw-split-rule {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 420px;
	margin: 34px auto 0;
	height: 3px;
	background: linear-gradient(90deg,
		transparent 0%, var(--lw-orange) 18%, var(--lw-orange) 46%,
		transparent 50%,
		var(--lw-garnet) 54%, var(--lw-garnet) 82%, transparent 100%);
	position: relative;
}

.lw-split-rule span {
	width: 11px; height: 11px;
	background: var(--lw-gold);
	transform: rotate(45deg);
	flex: none;
}

.lw-split-rule-wide { max-width: 720px; margin: 64px auto; }

/* ============ Events ============ */
.lw-events { padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 56px) 30px; max-width: 1280px; margin: 0 auto; }

.lw-events-header { text-align: center; margin-bottom: clamp(34px, 5vw, 54px); }

.lw-events-eyebrow {
	font-family: var(--lw-college);
	font-size: 12px;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--lw-garnet);
	margin-bottom: 12px;
}

.lw-events-header h2 {
	font-family: var(--lw-display);
	font-weight: 700;
	font-size: clamp(30px, 4.6vw, 52px);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.lw-events-header p { color: var(--lw-cream-dim); margin-top: 8px; }

.lw-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 28px;
}

/* ---- Card ---- */
.lw-card {
	display: flex;
	flex-direction: column;
	background: var(--lw-card);
	border: 1px solid var(--lw-card-edge);
	text-decoration: none;
	color: var(--lw-cream);
	overflow: hidden;
	position: relative;
	animation: lw-rise 0.65s ease both;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Rivalry top edge: half orange, half garnet, revealed on hover */
.lw-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--lw-orange) 0 50%, var(--lw-garnet-deep) 50% 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.35s ease;
	z-index: 2;
}

.lw-card:hover {
	transform: translateY(-6px);
	border-color: rgba(211, 167, 62, 0.5);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.lw-card:hover::before { transform: scaleX(1); }

.lw-card-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--lw-night-2);
}

.lw-card-img img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.lw-card:hover .lw-card-img img { transform: scale(1.05); }

.lw-badge {
	position: absolute;
	top: 12px; right: 12px;
	font-family: var(--lw-college);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 12px;
	z-index: 2;
}

.lw-badge-sold    { background: #2a2f3b; color: var(--lw-cream-dim); }
.lw-badge-urgent  { background: var(--lw-orange); color: #fff; }
.lw-badge-limited { background: var(--lw-gold); color: var(--lw-night); }

.lw-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }

.lw-card-date {
	font-family: var(--lw-college);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--lw-gold);
	margin-bottom: 10px;
}

.lw-card-title {
	font-family: var(--lw-display);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.05;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.lw-card-subtitle { color: var(--lw-cream-dim); font-size: 14px; margin-bottom: 8px; }

.lw-card-venue { color: var(--lw-cream-dim); font-size: 13px; margin-top: auto; padding-top: 12px; }

.lw-card-cta {
	margin-top: 14px;
	font-family: var(--lw-college);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lw-gold);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.lw-card-cta-arrow { transition: transform 0.25s ease; }
.lw-card:hover .lw-card-cta-arrow { transform: translateX(6px); }

.lw-empty {
	text-align: center;
	padding: 70px 24px;
	color: var(--lw-cream-dim);
	border: 1px dashed var(--lw-card-edge);
	font-size: 16px;
	max-width: 640px;
	margin: 0 auto;
}

/* ============ About strip ============ */
.lw-about {
	max-width: 760px;
	margin: 0 auto;
	padding: 0 24px clamp(50px, 7vw, 80px);
	text-align: center;
}

.lw-about p {
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 300;
	line-height: 1.7;
	color: var(--lw-cream);
}

.lw-about-attr {
	display: block;
	margin-top: 18px;
	font-family: var(--lw-college);
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--lw-garnet);
}

/* ============ Footer ============ */
.lw-footer {
	border-top: 1px solid rgba(211, 167, 62, 0.18);
	padding: 40px clamp(20px, 5vw, 56px) 46px;
	text-align: center;
}

.lw-footer-links {
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 28px;
	margin-bottom: 20px;
}

.lw-footer-links a {
	color: var(--lw-cream-dim);
	text-decoration: none;
	font-family: var(--lw-college);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: color 0.25s ease;
}

.lw-footer-links a:hover { color: var(--lw-gold); }

.lw-footer-copy { color: var(--lw-cream-dim); font-size: 12px; }

.lw-footer-powered { margin-top: 8px; font-size: 11px; color: var(--lw-cream-dim); }
.lw-footer-powered a { color: var(--lw-gold); text-decoration: none; }

/* ============ Motion ============ */
@keyframes lw-rise {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

/* ============ Responsive ============ */
@media (max-width: 780px) {
	.lw-hamburger { display: block; }

	.lw-nav-links {
		display: none;
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: var(--lw-night-2);
		border-bottom: 1px solid rgba(211, 167, 62, 0.18);
	}

	.lw-nav-links.open { display: flex; }

	.lw-nav-links li { width: 100%; text-align: center; }

	.lw-nav-links a {
		display: block;
		padding: 16px 0;
		border-bottom: 1px solid rgba(241, 236, 224, 0.06);
	}

	.lw-nav-links a.active { border-bottom: 1px solid rgba(241, 236, 224, 0.06); padding-bottom: 16px; }

	.lw-grid { grid-template-columns: 1fr; }
}
