/* ============================================
   It's Reigning Cats - Shared Stylesheet
   Colors: #1d4755 (dark), #e8a268 (accent)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Nunito:wght@400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--dark: #1d4755;
	--dark-deep: #142f39;
	--dark-mid: #245a6b;
	--accent: #e8a268;
	--accent-light: #f0bc8e;
	--accent-dark: #c97f45;
	--bg-light: #f0f5f7;
	--bg-card: #eaf1f4;
	--text-main: #1e3440;
	--text-muted: #4a6572;
	--white: #ffffff;
	--border: #c5d8df;
	--shadow: rgba(29, 71, 85, 0.15);
	--shadow-deep: rgba(29, 71, 85, 0.25);
	--site-max-width: 1100px;
	--site-padding: 20px;
}

html {
	font-size: 16px;
}

body {
	font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	background: linear-gradient(135deg, #e8f2f5 0%, #c9dfe6 100%);
	background-attachment: fixed;
	min-height: 100vh;
	color: var(--text-main);
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

/* ============================================
   SITE WRAPPER — constrains all content width
   ============================================ */
.container {
	max-width: var(--site-max-width);
	width: 100%;
	margin: 0 auto;
	padding: var(--site-padding);
}

/* ============================================
   HEADER & BANNER
   ============================================ */
header {
	background: var(--white);
	border-radius: 15px;
	box-shadow: 0 10px 30px var(--shadow);
	margin-bottom: 24px;
	overflow: hidden;
}

.banner {
	display: block;
	width: 100%;
	height: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
	background: var(--dark);
	padding: 0;
}

/* Mobile hamburger — hidden on desktop */
.mobile-menu-toggle {
	display: none;
	background: transparent;
	border: none;
	color: var(--white);
	font-size: 1.4rem;
	padding: 14px 18px;
	cursor: pointer;
	width: 100%;
	text-align: left;
	line-height: 1;
}

.nav-menu {
	display: flex;
	justify-content: center;
	align-items: stretch;
	list-style: none;
	padding: 0;
	margin: 0;
}

.nav-menu li {
	flex: 1;
	text-align: center;
}

.nav-menu a {
	display: block;
	padding: 16px 12px;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background 0.25s ease, color 0.25s ease;
	position: relative;
	white-space: nowrap;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 3px;
	background: var(--accent);
	transform: translateX(-50%);
	transition: width 0.25s ease;
}

.nav-menu a:hover {
	background: rgba(232, 162, 104, 0.18);
	color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 70%;
}

.nav-menu a.active {
	background: rgba(232, 162, 104, 0.22);
	color: var(--accent-light);
}

/* Dropdown */
.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--dark-deep);
	list-style: none;
	min-width: 200px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.35);
	border-radius: 0 0 8px 8px;
	z-index: 1000;
}

.dropdown-menu li { width: 100%; }

.dropdown-menu a {
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	font-size: 0.875rem;
	white-space: normal;
	text-align: left;
}

.dropdown-menu li:last-child a {
	border-bottom: none;
	border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-menu { display: block; }

/* ============================================
   MAIN CONTENT CARD
   ============================================ */
.content {
	background: var(--white);
	border-radius: 15px;
	box-shadow: 0 10px 30px var(--shadow);
	padding: 40px;
	margin-bottom: 28px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
	color: var(--accent);
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1.2;
}

h2 {
	color: var(--accent);
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1.2rem, 3vw, 1.55rem);
	margin: 24px 0 14px;
	font-weight: 600;
	line-height: 1.3;
}

h3 {
	color: var(--accent);
	font-family: 'Lora', Georgia, serif;
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	line-height: 1.3;
}

p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

/* ============================================
   LINKS
   ============================================ */
a {
	color: var(--dark);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.25s ease;
}

a:hover { color: var(--accent-dark); }

/* ============================================
   LISTS
   ============================================ */
ul {
	margin-left: 20px;
	margin-bottom: 14px;
}

ul li {
	margin-bottom: 7px;
	color: var(--text-muted);
}

/* ============================================
   CARDS (shared)
   ============================================ */
.location-card,
.info-section,
.contact-card {
	background: linear-gradient(135deg, #eaf1f4 0%, #d4e5eb 100%);
	padding: 22px 24px;
	border-radius: 10px;
	margin-bottom: 18px;
	border-left: 4px solid var(--accent);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover,
.contact-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px var(--shadow-deep);
}

.location-card p,
.info-section p,
.contact-card p {
	color: var(--text-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.location-card strong,
.info-section strong,
.contact-card strong {
	color: var(--text-main);
}

.location-card a,
.contact-card a,
.info-section a {
	color: var(--dark);
	border-bottom: 2px solid transparent;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.location-card a:hover,
.contact-card a:hover,
.info-section a:hover {
	border-bottom-color: var(--accent);
	color: var(--accent-dark);
}

/* ============================================
   HIGHLIGHT / INFO / CONTEST BOXES
   ============================================ */
.highlight-box,
.info-box,
.contest-box {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	color: var(--white);
	padding: 22px 28px;
	border-radius: 12px;
	margin: 22px 0;
	box-shadow: 0 5px 15px var(--shadow-deep);
}

.highlight-box strong,
.info-box strong,
.contest-box strong {
	color: var(--accent-light);
}

.highlight-box p,
.info-box p { margin: 4px 0; }

/* ============================================
   DIVIDER
   ============================================ */
.divider {
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
	margin: 36px 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
	background: var(--dark-deep);
	color: var(--white);
	border-radius: 15px;
	padding: 36px 40px;
	margin-top: 28px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
	margin-bottom: 28px;
}

.footer-section h3 {
	color: var(--accent);
	margin-bottom: 14px;
	font-size: 1rem;
	font-family: 'Lora', Georgia, serif;
}

.footer-section p,
.footer-section a {
	color: #c5d8df;
	text-decoration: none;
	display: block;
	margin-bottom: 7px;
	font-weight: 400;
	transition: color 0.25s ease;
	font-size: 0.92rem;
}

.footer-section a:hover { color: var(--accent-light); }

.footer-bottom {
	text-align: center;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #7fa8b5;
	font-size: 0.85rem;
}

/* ============================================
   PAGE: Contact
   ============================================ */
.intro-text {
	text-align: center;
	font-size: 1.05rem;
	color: var(--text-muted);
	margin: 0 auto 30px;
	max-width: 680px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 36px;
}

.contact-card {
	display: flex;
	flex-direction: column;
}

.contact-card h3 { gap: 8px; }
.contact-card h3::before { content: '👤'; font-size: 1em; margin-right: 6px; }

.contact-info {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid var(--border);
}

/* Dark info section variant */
.info-section.blue-box {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	color: white;
	border-left: none;
	border-radius: 12px;
	margin-top: 28px;
}

.info-section.blue-box h2 {
	color: var(--accent-light);
	text-align: center;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.info-grid .info-box {
	background: rgba(255,255,255,0.1);
	padding: 18px;
	border-radius: 8px;
	margin: 0;
	box-shadow: none;
}

.info-grid .info-box strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 7px;
	color: var(--accent-light);
}

.info-grid .info-box p {
	color: rgba(255,255,255,0.88);
	margin: 2px 0;
}

/* ============================================
   PAGE: Spectators / Tickets
   ============================================ */
.welcome-section {
	text-align: center;
	margin-bottom: 36px;
	padding: 26px;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
	border-radius: 10px;
}

.welcome-section p {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.8;
	max-width: 760px;
	margin: 0 auto 14px;
}

.welcome-section strong { color: var(--dark); }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
	margin-bottom: 36px;
}

.pricing-card {
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-card) 100%);
	padding: 26px;
	border-radius: 12px;
	border-left: 4px solid var(--accent);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px var(--shadow-deep);
}

.pricing-card h3 {
	color: var(--accent);
	font-size: 1.2rem;
	margin-bottom: 18px;
	font-weight: 700;
	text-align: center;
}

.pricing-card .price-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.pricing-card .price-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid var(--border);
	color: var(--text-muted);
	margin: 0;
}

.pricing-card .price-list li:last-child { border-bottom: none; }
.pricing-card .price-list .label { font-weight: 500; }
.pricing-card .price-list .price { color: var(--dark); font-weight: 700; font-size: 1.05rem; }

.cta-section { text-align: center; margin: 36px 0; }

.ticket-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
	color: var(--dark-deep) !important;
	padding: 16px 44px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(232, 162, 104, 0.45);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border-bottom: none !important;
}

.ticket-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(232, 162, 104, 0.55);
	color: var(--dark-deep) !important;
}

/* ============================================
   PAGE: Show Information
   ============================================ */
.contest-box strong {
	font-size: 1.15rem;
	display: block;
	margin-bottom: 14px;
}

.contest-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 18px;
}

.contest-grid ul { list-style-position: inside; margin-left: 0; }
.contest-grid li { margin-bottom: 7px; color: rgba(255,255,255,0.9); }

/* ============================================
   PAGE: Enter the Show
   ============================================ */
.steps-list {
	list-style: none;
	counter-reset: step-counter;
	max-width: 860px;
	margin: 0 auto;
	padding: 0;
}

.steps-list li {
	counter-increment: step-counter;
	position: relative;
	padding: 22px 22px 22px 76px;
	margin-bottom: 18px;
	background: var(--bg-light);
	border-radius: 10px;
	border-left: 4px solid var(--accent);
	transition: background 0.25s ease, transform 0.25s ease;
}

.steps-list li:hover {
	background: var(--bg-card);
	transform: translateX(4px);
}

.steps-list li::before {
	content: counter(step-counter);
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 1rem;
}

.steps-list strong {
	display: block;
	color: var(--accent-dark);
	font-size: 1rem;
	margin-bottom: 7px;
}

.steps-list a {
	color: var(--dark);
	border-bottom: 2px solid transparent;
	transition: border-color 0.25s ease;
}

.steps-list a:hover {
	border-bottom-color: var(--accent);
	color: var(--accent-dark);
}

.step-details { color: var(--text-muted); line-height: 1.75; }

/* ============================================
   PAGE: Home
   ============================================ */
.sponsors-section {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
	color: white;
	padding: 36px 40px;
	border-radius: 15px;
	margin-bottom: 28px;
	box-shadow: 0 8px 24px var(--shadow-deep);
}

.sponsors-section h2 {
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	margin-bottom: 10px;
	color: var(--accent-light);
}

.sponsors-section p { font-size: 1rem; margin-bottom: 22px; opacity: 0.92; }

.sponsors-section a {
	color: var(--accent-light);
	text-decoration: underline;
	font-weight: 600;
}

.sponsor-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
}

.sponsor-logos img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 5px 14px rgba(0,0,0,0.25);
	transition: transform 0.25s ease;
}

.sponsor-logos img:hover { transform: translateY(-4px); }

/* Show Full notice */
.auto-style1 { color: #c0392b; text-align: center; }

/* ============================================
   RESPONSIVE — Tablet (≤900px)
   ============================================ */
@media (max-width: 900px) {
	:root { --site-padding: 16px; }

	.nav-menu a { font-size: 0.82rem; padding: 14px 8px; }
}

/* ============================================
   RESPONSIVE — Mobile (≤680px)
   ============================================ */
@media (max-width: 680px) {
	:root { --site-padding: 12px; }

	/* Content */
	.content { padding: 20px 16px; }
	footer { padding: 28px 20px; }
	.sponsors-section { padding: 24px 18px; }

	/* Nav becomes vertical accordion */
	.mobile-menu-toggle { display: block; }

	.nav-menu {
		flex-direction: column;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.nav-menu.active { max-height: 700px; }

	.nav-menu li { width: 100%; flex: none; }

	.nav-menu a {
		text-align: left;
		padding: 15px 20px;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		font-size: 1rem;
		white-space: normal;
	}

	/* Dropdown goes inline on mobile */
	.dropdown-menu {
		position: static;
		display: none;
		box-shadow: none;
		background: rgba(0,0,0,0.22);
		border-radius: 0;
		min-width: unset;
	}

	.dropdown.active .dropdown-menu { display: block; }
	.dropdown-menu a { padding-left: 38px; font-size: 0.93rem; }

	/* Grids go single-column */
	.contact-grid,
	.info-grid,
	.pricing-grid,
	.contest-grid,
	.footer-content { grid-template-columns: 1fr; gap: 14px; }

	/* Sponsor images scale down */
	.sponsor-logos { flex-direction: column; gap: 18px; }
	.sponsor-logos img { width: 100%; max-width: 280px; height: auto; }

	/* Ticket button full-width */
	.ticket-button {
		display: block;
		width: 100%;
		text-align: center;
		padding: 16px 20px;
		font-size: 1rem;
	}

	/* Steps */
	.steps-list li { padding: 18px 14px 18px 64px; }
	.steps-list li::before { width: 34px; height: 34px; font-size: 0.9rem; left: 14px; }

	/* Remove hover transforms on touch — avoids sticky states */
	.location-card:hover,
	.contact-card:hover,
	.pricing-card:hover,
	.steps-list li:hover { transform: none; }
}

/* ============================================
   RESPONSIVE — Small phones (≤380px)
   ============================================ */
@media (max-width: 380px) {
	:root { --site-padding: 8px; }
	.content { padding: 16px 12px; }
	.steps-list li { padding: 16px 10px 16px 58px; }
}
