/* Destination Outdoors RV Park — shared styles */

:root {
	--color-navy: #16324f;
	--color-navy-dark: #0e2338;
	--color-orange: #e2662d;
	--color-orange-dark: #c44f1c;
	--color-gold: #f2a93b;
	--color-cream: #fff6ec;
	--color-cream-alt: #fdece0;
	--color-text: #2b2118;
	--color-text-muted: #5a4d40;
	--color-white: #ffffff;

	--font-heading: "Poppins", "Segoe UI", Roboto, sans-serif;
	--font-body: "Inter", "Segoe UI", Roboto, sans-serif;

	--max-width: 1140px;
	--radius: 10px;
	--shadow: 0 10px 30px rgba(22, 50, 79, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-cream);
	line-height: 1.6;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	line-height: 1.2;
	margin: 0 0 0.6em;
	color: var(--color-navy);
}

p {
	margin: 0 0 1em;
}

a {
	color: var(--color-orange-dark);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Buttons */

.btn {
	display: inline-block;
	padding: 14px 30px;
	border-radius: 999px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	border: 2px solid transparent;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background-color 0.15s ease,
		color 0.15s ease;
}

.btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
	color: var(--color-white);
	box-shadow: 0 8px 20px rgba(226, 102, 45, 0.35);
}

.btn-primary:hover {
	box-shadow: 0 12px 26px rgba(226, 102, 45, 0.45);
	color: var(--color-white);
}

.btn-outline {
	background: transparent;
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn-outline:hover {
	background: var(--color-white);
	color: var(--color-navy);
}

.btn-outline-dark {
	background: transparent;
	border-color: var(--color-navy);
	color: var(--color-navy);
}

.btn-outline-dark:hover {
	background: var(--color-navy);
	color: var(--color-white);
}

/* Header / Nav */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-navy);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.2s ease;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	transition: padding 0.2s ease;
}

/* Compact state once the visitor scrolls, so a 155px logo doesn't
   permanently eat a big chunk of the viewport while sticky. */
.site-header.is-scrolled .nav {
	padding: 8px 0;
}

.site-header.is-scrolled .site-logo {
	height: 60px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-brand:hover {
	text-decoration: none;
}

.site-logo {
	height: 155px;
	width: auto;
	display: block;
	flex-shrink: 0;
	transition: height 0.2s ease;
}

.site-logo-sm {
	height: 44px;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	color: var(--color-white);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	opacity: 0.9;
}

.nav-links a:hover {
	opacity: 1;
	color: var(--color-gold);
	text-decoration: none;
}

.nav-links a.is-active {
	color: var(--color-gold);
	opacity: 1;
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	width: 26px;
	height: 3px;
	margin: 5px 0;
	background: var(--color-white);
	border-radius: 2px;
}

/* Hero */

.hero {
	position: relative;
	color: var(--color-white);
	background: linear-gradient(180deg, #1b3a57 0%, #16324f 45%, #0e2338 100%);
	overflow: hidden;
	padding: 90px 0 120px;
}

.hero-sun {
	position: absolute;
	right: -60px;
	top: 40px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, var(--color-gold), var(--color-orange) 70%);
	opacity: 0.85;
	filter: blur(1px);
}

.hero-mountains {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	line-height: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.hero-eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8rem;
	color: var(--color-gold);
	margin-bottom: 14px;
}

.hero h1 {
	color: var(--color-white);
	font-size: clamp(2.1rem, 5vw, 3.2rem);
	margin-bottom: 0.4em;
}

.hero p {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 520px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}

/* Page header (non-home pages) */

.page-header {
	background: linear-gradient(135deg, var(--color-navy), var(--color-navy-dark));
	color: var(--color-white);
	padding: 64px 0;
	text-align: center;
}

.page-header h1 {
	color: var(--color-white);
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	margin-bottom: 0.3em;
}

.page-header p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto;
}

/* Sections */

.section {
	padding: 72px 0;
}

.section-alt {
	background: var(--color-cream-alt);
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8rem;
	color: var(--color-orange-dark);
	font-weight: 700;
	margin-bottom: 10px;
}

/* Cards / grids */

.grid {
	display: grid;
	gap: 28px;
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.card {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 32px 26px;
	box-shadow: var(--shadow);
	text-align: center;
}

.card .icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
	display: flex;
	align-items: center;
	justify-content: center;
}

.card .icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--color-white);
}

.card h3 {
	font-size: 1.15rem;
	margin-bottom: 0.4em;
}

.card p {
	color: var(--color-text-muted);
	margin-bottom: 0;
}

/* Amenity list */

.amenity-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.amenity-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--color-white);
	border-radius: var(--radius);
	padding: 18px 20px;
	box-shadow: var(--shadow);
}

.amenity-list .icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-cream-alt);
	display: flex;
	align-items: center;
	justify-content: center;
}

.amenity-list .icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--color-orange-dark);
}

.amenity-list strong {
	display: block;
	font-family: var(--font-heading);
	color: var(--color-navy);
	margin-bottom: 2px;
}

.amenity-list span {
	color: var(--color-text-muted);
	font-size: 0.95rem;
}

/* Callout / CTA band */

.callout {
	background: linear-gradient(135deg, var(--color-orange), var(--color-gold));
	color: var(--color-white);
	border-radius: var(--radius);
	padding: 48px;
	text-align: center;
}

.callout h2 {
	color: var(--color-white);
}

.callout p {
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
	margin: 0 auto 26px;
}

/* Placeholder note (visible marker for content the client still needs to supply) */

.todo-note {
	display: inline-block;
	background: #fff3cd;
	border: 1px dashed #c99a2e;
	color: #6b5217;
	font-size: 0.85rem;
	padding: 4px 10px;
	border-radius: 6px;
	margin-top: 6px;
}

/* Contact page */

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: start;
}

.contact-info-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.contact-info-list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 22px;
}

.contact-info-list .icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--color-cream-alt);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info-list .icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--color-orange-dark);
}

.contact-info-list strong {
	display: block;
	font-family: var(--font-heading);
	color: var(--color-navy);
}

.map-frame {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: none;
}

.social-links {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.social-links a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.15s ease;
}

.social-links a:hover {
	background: var(--color-orange);
}

.social-links svg {
	width: 20px;
	height: 20px;
	stroke: var(--color-white);
}

/* Footer */

.site-footer {
	background: var(--color-navy-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 48px 0 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 32px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.site-footer h4 {
	color: var(--color-white);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 14px;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer li {
	margin-bottom: 10px;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.75);
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 860px) {
	.site-logo {
		height: 120px;
	}

	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

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

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

@media (max-width: 720px) {
	.site-logo {
		height: 90px;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-navy);
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 8px 24px 20px;
		display: none;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	}

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

	.nav-links li {
		width: 100%;
	}

	.nav-links a {
		display: block;
		padding: 12px 0;
		width: 100%;
	}

	.nav-toggle {
		display: block;
	}

	.grid-3,
	.grid-2,
	.amenity-list {
		grid-template-columns: 1fr;
	}

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

	.hero {
		padding: 60px 0 90px;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-actions {
		justify-content: center;
	}

	.section {
		padding: 52px 0;
	}
}
