/* ============================================
   HAVEN FAMILY HOLIDAYS - HOMEPAGE 3
   Beautiful, Responsive, Self-Contained Design
   ============================================ */

/* RESET & BASE STYLES */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 18px;
	line-height: 1.7;
	color: #333;
	background: #f8f9fa;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.main-header {
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	gap: 20px;
}

.logo-section {
	flex: 0 0 auto;
	padding: 15px 20px;
}

.logo {
	display: block;
	text-decoration: none;
}

.logo img {
	max-height: 80px;
	width: auto;
	display: block;
}

.header-image {
	flex: 1;
	overflow: hidden;
	height: 80px;
}

.header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.header-top-right {
	flex: 0 0 auto;
	padding: 0 20px 0 0;
	height: 80px;
	display: flex;
	align-items: center;
}

.header-top-right img {
	height: 80px;
	width: auto;
	display: block;
	object-fit: contain;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

.main-nav {
	background: #ffffff;
	border-bottom: 3px solid #E02060;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 110px;
	z-index: 99;
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 20px;
	gap: 0;
	flex-wrap: wrap;
}

.nav-home,
.nav-link,
.nav-btn {
	padding: 15px 20px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	font-size: 16px;
	border: none;
	background: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.nav-home:hover,
.nav-link:hover,
.nav-btn:hover {
	color: #E02060;
	background: rgba(224, 32, 96, 0.05);
}

.nav-btn {
	position: relative;
	padding-right: 15px;
}

.nav-btn.active {
	color: #E02060;
	background: rgba(224, 32, 96, 0.1);
}

/* Dropdown Menus */

.nav-dropdown {
	position: relative;
}

.nav-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #ffffff;
	border: 1px solid #ddd;
	border-top: 3px solid #E02060;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	min-width: 200px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.nav-menu.open {
	max-height: 500px;
	opacity: 1;
}

.nav-menu a {
	display: block;
	padding: 12px 20px;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
	font-size: 15px;
}

.nav-menu a:hover {
	color: #E02060;
	background: rgba(224, 32, 96, 0.05);
	border-left-color: #E02060;
	padding-left: 25px;
}

/* Parks Menu Layout */

.parks-menu {
	min-width: 600px;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	max-height: 400px;
	overflow-y: auto;
}

.nav-column {
	flex: 1;
	min-width: 150px;
	padding: 10px 0;
	border-right: 1px solid #eee;
}

.nav-column:last-child {
	border-right: none;
}

.nav-region {
	padding: 10px 20px;
	font-weight: bold;
	color: #E02060;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-column a {
	display: block;
	padding: 8px 20px;
	border-left: none !important;
	font-size: 14px;
}

.nav-column a:hover {
	padding-left: 25px;
}

/* Guides Menu */

.guides-menu {
	min-width: 250px;
}

/* Mobile Navigation Toggle */

.nav-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 20px;
	color: #333;
	margin-left: auto;
	padding: 10px;
}

/* ============================================
   MAIN CONTENT STYLES
   ============================================ */

.main-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero Offer Section */

.hero-offer {
	margin: 30px -20px 0 -20px;
	padding: 0;
}

.hero-background {
	position: relative;
	height: 350px;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.hero-title {
	font-size: 56px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin: 0;
	line-height: 1.2;
	color: white;
}

.hero-button {
	display: inline-block;
	background: #E02060;
	color: white !important;
	padding: 16px 48px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(224, 32, 96, 0.4);
}

.hero-button:hover {
	background: #b8184a;
	box-shadow: 0 6px 20px rgba(224, 32, 96, 0.6);
	transform: translateY(-2px);
	text-decoration: none;
}


/* Intro Section */

.intro-section-banner {
	margin: 40px -20px;
	padding: 0;
	background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f7 100%);
	display: flex;
	align-items: stretch;
}

.intro-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 0;
	width: 100%;
	min-height: 450px;
}

.intro-image {
	flex: 0 0 45%;
	height: 100%;
	min-height: 450px;
	overflow: hidden;
}

.intro-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.intro-container:hover .intro-image img {
	transform: scale(1.02);
}

.intro-content {
	flex: 1;
	padding: 50px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.intro-title {
	font-size: 42px;
	color: #E02060;
	margin-bottom: 25px;
	line-height: 1.3;
	font-weight: bold;
	border: none;
	padding: 0;
}

.intro-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 18px;
	margin: 0 0 18px 0;
}

/* Benefits Section */

.benefits-section {
	margin: 50px 0;
	padding: 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.benefit-item {
	background: white;
	padding: 30px 25px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.benefit-item:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.benefit-icon {
	font-size: 48px;
	color: #E02060;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: rgba(224, 32, 96, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
	background: rgba(224, 32, 96, 0.2);
	transform: scale(1.1);
}

.benefit-title {
	font-size: 18px;
	color: #333;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 1.3;
}

.benefit-text {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.card-text {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

/* Content Sections */

.content-section {
	margin: 50px 0;
}

.section-title {
	font-size: 32px;
	color: white;
	background: #E02060;
	padding: 20px;
	margin: 0 0 30px 0;
	border-radius: 8px 8px 0 0;
	font-weight: bold;
	border-bottom: none;
}

.section-title a, .featured-park-region a {
	color: white;
	text-decoration: none;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	padding: 0;
	margin-bottom: 30px;
}

/* Content Cards */

.content-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.content-card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f0f0f0;
}

.card-image a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.content-card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.card-title {
	font-size: 18px;
	font-weight: bold;
	color: #E02060;
	text-decoration: none;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.card-title:hover {
	color: #b8184a;
	text-decoration: underline;
}

.card-text {
	font-size: 12pt;
	color: #666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.card-link {
	display: inline-block;
	color: #E02060;
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
	transition: all 0.2s ease;
	align-self: flex-start;
}

.card-link:hover {
	color: #b8184a;
	text-decoration: underline;
	margin-left: 5px;
}

/* Promotional Section */

.promo-section {
	margin: 60px -20px;
	padding: 0;
	background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
	min-height: 500px;
	display: flex;
	align-items: stretch;
}

.promo-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
	padding: 0;
	width: 100%;
	min-height: 500px;
}

.promo-image {
	flex: 0 0 50%;
	height: 100%;
	overflow: hidden;
	border-radius: 0;
}

.promo-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.promo-container:hover .promo-image img {
	transform: scale(1.02);
}

.promo-content {
	flex: 1;
	padding: 50px 60px;
	background: transparent;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	height: 100%;
}

.promo-title {
	font-size: 42px;
	color: white;
	margin-bottom: 25px;
	line-height: 1.3;
	font-weight: bold;
	border: none;
	padding: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.promo-text {
	font-size: 16px;
	color: #ddd;
	line-height: 1.8;
	margin-bottom: 25px;
	margin: 0 0 25px 0;
}

.promo-button {
	display: inline-block;
	background: white;
	color: #0066cc !important;
	padding: 14px 40px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-button:hover {
	background: #f0f0f0;
	color: #0066cc !important;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

/* Featured Parks Grid Section */

.featured-parks-grid-section {
	margin: 60px -20px;
	padding: 50px 20px;
	background: white;
}

.featured-parks-grid {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.featured-park-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.featured-park-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.featured-park-card-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background: #f0f0f0;
}

.featured-park-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.featured-park-card:hover .featured-park-card-image img {
	transform: scale(1.06);
}

.featured-park-card-region {
	background: #E02060;
	padding: 12px 20px;
	margin: 0;
}

.featured-park-card-region h3 {
	font-size: 18px;
	color: white;
	margin: 0;
	padding: 0;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.featured-park-card-content {
	padding: 25px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.featured-park-card-title {
	font-size: 18px;
	font-weight: bold;
	color: #E02060;
	margin: 0;
	padding: 0;
	line-height: 1.3;
	text-decoration: none;
}

.featured-park-card-text {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin: 0;
	flex: 1;
}

.featured-park-card-button {
	display: inline-block;
	background: #E02060;
	color: white !important;
	padding: 12px 30px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.featured-park-card-button:hover {
	background: #b8184a;
	box-shadow: 0 4px 12px rgba(224, 32, 96, 0.3);
	transform: translateY(-2px);
}

/* Featured Parks Section */

.featured-park-section {
	margin: 60px -20px;
	padding: 0;
	background: white;
}

.featured-park-header {
	background: #E02060;
	padding: 30px 20px;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 20px;
}

.featured-park-region {
	font-size: 32px;
	color: white;
	margin: 0;
	padding: 0;
	border: none;
	font-weight: bold;
	letter-spacing: 1px;
}

.featured-park-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	align-items: stretch;
	min-height: 400px;
}

.featured-park-section.featured-park-reverse .featured-park-container {
	direction: rtl;
}

.featured-park-section.featured-park-reverse .featured-park-image,
.featured-park-section.featured-park-reverse .featured-park-content {
	direction: ltr;
}

.featured-park-image {
	width: 100%;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
	background: #f0f0f0;
}

.featured-park-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.featured-park-container:hover .featured-park-image img {
	transform: scale(1.03);
}

.featured-park-content {
	padding: 50px 40px;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 400px;
}

.featured-park-title {
	font-size: 32px;
	color: #E02060;
	margin-bottom: 20px;
	line-height: 1.3;
	font-weight: bold;
	border: none;
	padding: 0;
}

.featured-park-text {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin-bottom: 25px;
	margin: 0 0 25px 0;
	min-height: auto;
}

.promo-text {
	font-size: 16px;
	color: #ddd;
	line-height: 1.8;
	margin-bottom: 25px;
	margin: 0 0 25px 0;
}

.featured-park-button {
	display: inline-block;
	background: #E02060;
	color: white !important;
	padding: 14px 40px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s ease;
	align-self: flex-start;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.featured-park-button:hover {
	background: #b8184a;
	box-shadow: 0 4px 12px rgba(224, 32, 96, 0.3);
	transform: translateY(-2px);
}

/* Featured Blog Section */

.featured-blog-section {
	margin: 60px -20px 50px -20px;
	padding: 50px 20px;
	background: #ffffff;
}

.featured-blog-header {
	text-align: center;
	margin-bottom: 50px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.featured-blog-title {
	font-size: 36px;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.3;
	border: none;
	padding: 0;
}

.featured-blog-subtitle {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

.featured-blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	max-width: 1400px;
	margin: 0 auto;
}

.featured-blog-card {
	position: relative;
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	display: block;
	text-decoration: none;
}

.featured-blog-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
	text-decoration: none;
}

.featured-blog-image {
	width: 100%;
	height: 100%;
	background: #f0f0f0;
}

.featured-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.featured-blog-card:hover .featured-blog-image img {
	transform: scale(1.08);
}

.featured-blog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 30px;
	text-align: center;
	transition: all 0.3s ease;
}

.featured-blog-card-title {
	font-size: 24px;
	font-weight: bold;
	color: white;
	margin-bottom: 15px;
	line-height: 1.3;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.featured-blog-button {
	display: inline-block;
	background: #E02060;
	color: white !important;
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none !important;
	font-weight: bold;
	font-size: 15px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(224, 32, 96, 0.3);
}

.featured-blog-button:hover {
	background: #b8184a;
	color: white !important;
	text-decoration: none !important;
	box-shadow: 0 6px 16px rgba(224, 32, 96, 0.5);
	transform: translateY(-2px);
}

/* Back to Top Button */

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: #E02060;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 20px;
	box-shadow: 0 4px 12px rgba(224, 32, 96, 0.4);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 98;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: #b8184a;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(224, 32, 96, 0.6);
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
	background: #2c2c2c;
	color: #fff;
	margin-top: 60px;
	padding: 50px 0 0;
	font-size: 14px;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
	color: #E02060;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	color: #bbb;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 13px;
}

.footer-col a:hover {
	color: #E02060;
	text-decoration: underline;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(224, 32, 96, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.2s ease;
	color: #E02060;
}

.social-links a:hover {
	background: #E02060;
	color: white;
	transform: translateY(-3px);
}

.footer-bottom {
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
	color: #aaa;
	font-size: 12px;
	margin-bottom: 15px;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
	font-size: 12px;
}

.footer-links a {
	color: #bbb;
	text-decoration: none;
	padding: 0 10px;
	transition: color 0.2s ease;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a:last-child {
	border-right: none;
}

.footer-links a:hover {
	color: #E02060;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Screens (768px - 1024px) */
@media screen and (max-width: 1024px) {

	.header-container {
		gap: 10px;
	}

	.logo img {
		max-height: 70px;
	}

	.header-image {
		height: 70px;
	}

	.main-nav {
		top: 100px;
	}

	.hero-title {
		font-size: 36px;

	}

	.page-title {
		font-size: 32px;
	}

	/* Intro Section */
	.intro-container {
		flex-direction: column;
		min-height: auto;
	}

	.intro-image {
		flex: 0 0 100%;
		min-height: 300px;
	}

	.intro-content {
		flex: 0 0 100%;
		padding: 40px 30px;
	}

	.intro-title {
		font-size: 32px;
		margin-bottom: 20px;
	}

	.intro-content p {
		font-size: 13pt !important;
	}

	.content-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}

	.parks-menu {
		min-width: 400px;
	}

	/* Benefits Section */
	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.benefit-item {
		padding: 25px 20px;
		
	}

	.benefit-icon {
		width: 70px;
		height: 70px;
		font-size: 40px;
	}

	.benefit-title {
		font-size: 16px;
	}

	.benefit-text {
		font-size: 12pt !important;
	}

	/* Featured Parks Grid Section */
	.featured-parks-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	.featured-park-card-image {
		height: 200px;
	}

	.featured-park-card-content {
		padding: 20px;
	}

	.featured-park-card-title {
		font-size: 16px;
	}

	.featured-park-card-text {
		font-size: 13pt;
	}

	/* Promotional Section */
	.promo-container {
		flex-direction: column;
		gap: 0;
		padding: 30px 40px;
	}

	.promo-image {
		flex: 0 0 100%;
		min-height: 300px;
		margin-bottom: 30px;
		border-radius: 8px 8px 0 0;
	}

	.promo-content {
		flex: 0 0 100%;
		min-height: auto;
		padding: 0;
	}

	.promo-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.promo-text {
		font-size: 15px;
		margin-bottom: 20px;
	}

	/* Featured Parks Section */
	.featured-park-container {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.featured-park-image {
		min-height: 300px;
	}

	.featured-park-content {
		min-height: 350px;
		padding: 40px 30px;
	}

	.featured-park-title {
		font-size: 28px;
	}

	.featured-park-text {
		font-size: 15px;
	}

	/* Featured Blog Section */
	.featured-blog-title {
		font-size: 32px;
	}

	.featured-blog-subtitle {
		font-size: 15px;
	}

	.featured-blog-card {
		height: 250px;
	}

	.featured-blog-card-title {
		font-size: 22px;
	}

}

/* Mobile Screens (480px - 768px) */
@media screen and (max-width: 768px) {

	/* Header */
	.main-header {
		background: white;
		border-bottom: 2px solid #E02060;
		box-shadow: none;
	}

	.header-container {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0;
		align-items: center;
		justify-content: space-between;
		padding: 12px;
		position: relative;
	}

	.logo-section {
		padding: 0;
		flex: 1 1 auto;
		text-align: center;
		order: 2;
		max-width: 200px;
	}

	.logo img {
		max-height: 40px;
		width: auto;
		max-width: 100%;
	}

	.header-top-right {
		display: none;
	}

	.header-image {
		display: none;
	}

	.main-nav {
		top: auto;
		position: relative;
		background: white;
		border-bottom: none;
		box-shadow: none;
	}

	/* Navigation */
	.nav-container {
		padding: 0;
		gap: 0;
		flex-wrap: wrap;
		transition: all 0.3s ease;
		position: relative;
		background: white;
	}

	.nav-home {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		position: absolute;
		left: 12px;
		top: -58px;
		color: #E02060;
		text-decoration: none;
		gap: 2px;
		z-index: 100;
	}

	.nav-home i {
		font-size: 22px;
		color: #E02060;
	}

	.nav-home span {
		font-size: 9px;
		font-weight: 600;
		color: #E02060;
	}

	.nav-link {
		display: none;
	}

	.nav-mobile-toggle {
		display: flex;
		width: auto;
		justify-content: center;
		align-items: center;
		padding: 8px 12px;
		background: transparent;
		border: none;
		color: #E02060;
		font-size: 24px;
		position: absolute;
		right: 12px;
		top: -58px;
		cursor: pointer;
		z-index: 100;
	}

	.nav-mobile-toggle i {
		color: #E02060;
		font-size: 24px;
	}

	.nav-dropdown {
		flex: 1 0 100%;
		width: 100%;
		display: none;
	}

	.nav-container.mobile-open .nav-dropdown {
		display: block;
	}

	.nav-btn {
		width: 100%;
		padding: 15px 20px;
		font-size: 15px;
		border-bottom: 1px solid #e0e0e0;
		justify-content: space-between;
	}

	.nav-menu {
		position: static;
		max-height: 0;
		border: none;
		box-shadow: none;
		background: #f8f9fa;
		border-top: none;
		overflow-y: auto;
	}

	.nav-menu.open {
		max-height: 400px;
	}

	.parks-menu {
		min-width: 100%;
		max-height: 400px;
		flex-direction: column;
	}

	.nav-column {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding: 5px 0;
	}

	.nav-column:last-child {
		border-bottom: none;
	}

	.guides-menu {
		min-width: 100%;
	}

	/* Main Content */
	.main-content {
		padding: 0 15px;
	}

	.hero-offer {
		margin: 20px 0 0 0;
	}

	.hero-background {
		height: 300px;
		margin: 0;
		border-radius: 0;
	}

	.hero-title {
		font-size: 32px;
		padding: 0 20px;
	}

	.hero-button {
		padding: 14px 35px;
		font-size: 16px;
	}

	/* Intro */
	.intro-section-banner {
		margin: 30px -15px;
	}

	.intro-container {
		flex-direction: column;
		min-height: auto;
	}

	.intro-image {
		flex: 0 0 auto;
		width: 100%;
		min-height: 250px;
		max-height: 300px;
		height: auto;
	}

	.intro-image img {
		height: 300px;
		object-fit: cover;
	}

	.intro-content {
		flex: 0 0 auto;
		width: 100%;
		padding: 30px 20px;
	}

	.intro-title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.intro-content p {
		font-size: 14px;
		margin-bottom: 15px;
	}

	/* Featured Parks Grid Section */
	.featured-parks-grid-section {
		margin: 40px -15px;
		padding: 30px 15px;
	}

	.featured-parks-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.featured-park-card-image {
		height: 200px;
	}

	.featured-park-card-content {
		padding: 20px;
	}

	.featured-park-card-title {
		font-size: 16px;
	}

	.featured-park-card-text {
		font-size: 12pt !important;
	}

	.featured-park-card-button {
		padding: 10px 25px;
		font-size: 12px;
	}

	/* Benefits Section */
	.benefits-section {
		margin: 30px 0;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 15px;
		padding: 0;
	}

	.benefit-item {
		padding: 20px 15px;
	}

	.benefit-icon {
		width: 60px;
		height: 60px;
		font-size: 32px;
	}

	.benefit-title {
		font-size: 14px;
	}

	.benefit-text {
		font-size: 13px;
	}

	/* Content Grid */
	.content-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.section-title {
		font-size: 22px;
		padding: 15px;
		margin: 0 0 25px 0;
	}

	.card-content {
		padding: 15px;
	}

	.card-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.card-text {
		font-size: 12pt !important;
		line-height: 1.6;
	}

	/* Promotional Section */
	.promo-section {
		margin: 40px -15px;
		min-height: auto;
	}

	.promo-container {
		flex-direction: column;
		gap: 0;
		padding: 25px 20px;
	}

	.promo-image {
		flex: 0 0 100%;
		min-height: 250px;
		margin-bottom: 20px;
		border-radius: 8px 8px 0 0;
	}

	.promo-content {
		flex: 0 0 100%;
		min-height: auto;
		padding: 0;
	}

	.promo-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.promo-text {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.promo-button {
		padding: 12px 30px;
		font-size: 13px;
	}

	/* Featured Parks Section */
	.featured-park-section {
		margin: 40px -15px;
	}

	.featured-park-image {
		min-height: 250px;
	}

	.featured-park-content {
		min-height: auto;
		padding: 30px 20px;
	}

	.featured-park-title {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.featured-park-text {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.featured-park-button {
		padding: 12px 30px;
		font-size: 13px;
	}

	/* Featured Blog Section */
	.featured-blog-section {
		margin: 40px -15px 40px -15px;
		padding: 40px 15px;
	}

	.featured-blog-title {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.featured-blog-subtitle {
		font-size: 16px;
	}

	.featured-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.featured-blog-card {
		height: 300px;
	}

	.featured-blog-card-title {
		font-size: 26px;
		margin-bottom: 18px;
	}

	.featured-blog-button {
		padding: 14px 35px;
		font-size: 16px;
	}

	/* Back to Top */
	.back-to-top {
		width: 45px;
		height: 45px;
		bottom: 20px;
		right: 20px;
		font-size: 18px;
	}

	/* Footer */
	.footer-nav {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-col h3 {
		font-size: 14px;
	}

	.footer-col a {
		font-size: 12px;
	}

	.footer-links {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	}

	.footer-links a {
		padding: 5px 0;
		border: none;
	}

}

/* Small Mobile Screens (Below 480px) */
@media screen and (max-width: 480px) {

	/* Header */
	.logo-section {
		padding: 8px 15px;
	}

	.logo img {
		max-height: 50px;
	}

	.header-image {
		height: 50px;
	}

	/* Navigation */
	.nav-home,
	.nav-link,
	.nav-btn {
		padding: 10px 12px;
		font-size: 12px;
		flex: 1 0 100%;
	}

	.nav-mobile-toggle {
		padding: 8px;
		font-size: 18px;
	}

	/* Main Content */
	.main-content {
		padding: 0 10px;
	}

	.hero-background {
		height: 200px;
		margin: 15px -10px 0;
		border-radius: 0;
	}

	.hero-title {
		font-size: 24px;
		padding: 0 15px;
	}

	.hero-button {
		padding: 10px 25px;
		font-size: 16px;
	}

	/* Intro */
	.intro-section {
		padding: 20px;
		margin: 20px 0;
		border-radius: 0;
	}

	.intro-image {
		min-height: 200px;
		max-height: 250px;
	}

	.intro-image img {
		height: 250px;
	}

	.page-title {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.intro-text p {
		font-size: 13px;
	}

	/* Content */
	.section-title {
		font-size: 18px;
		padding: 12px;
		margin: 0 0 20px 0;
		border-radius: 0;
	}

	.card-image {
		height: 150px;
	}

	.card-content {
		padding: 12px;
	}

	.card-title {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.card-text {
		font-size: 13px;
		line-height: 1.5;
	}

	/* Footer */
	.main-footer {
		margin-top: 40px;
		padding: 30px 0 0;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-col h3 {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.footer-col ul li {
		margin-bottom: 8px;
	}

	.footer-col a {
		font-size: 11px;
	}

	.copyright {
		font-size: 11px;
		margin-bottom: 10px;
	}

	.footer-links {
		font-size: 11px;
	}

	.social-links {
		justify-content: center;
	}

}

/* Ultra Small Devices (Below 360px) */
@media screen and (max-width: 360px) {

	.page-title {
		font-size: 20px;
	}

	.section-title {
		font-size: 16px;
	}

	.card-title {
		font-size: 13px;
	}

	.intro-text p {
		font-size: 12px;
	}

}
