/* ===================================
   Junny Odyssey Travel Blog CSS
   Mobile-First Responsive Design with BEM
   Updated: 2025-01-06 - Optimized with CSS Custom Properties
   =================================== */

/* CSS Custom Properties */
:root {
	/* Colors */
	--primary-color: #a64253;
	--primary-hover: #8b3545;
	--text-dark: #2c2c2c;
	--text-medium: #4a4a4a;
	--text-light: #6a6a6a;
	--text-muted: #7a7a7a;
	--text-placeholder: #999;
	--text-white: #fff;
	--text-light-gray: #cccccc;

	/* Background Colors */
	--bg-white: #fff;
	--bg-light: #f8f9fa;
	--bg-section: #f8f5f5;
	--bg-gradient: linear-gradient(135deg, #f8f5f5 0%, #f0ebe9 100%);
	--bg-dark: #2c2c2c;
	--bg-medium: #444;
	--bg-border: #eee;
	--bg-overlay: rgba(255, 255, 255, 0.95);
	--bg-overlay-dark: rgba(44, 44, 44, 0.4);

	/* Typography */
	--font-heading: 'Montserrat', Arial, sans-serif;
	--font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-size-base: 1rem;
	--line-height-base: 1.6;
	--line-height-heading: 1.2;

	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-xxl: 3rem;

	/* Borders & Radius */
	--border-radius-sm: 0.75rem;
	--border-radius-md: 1rem;
	--border-radius-lg: 1.25rem;
	--border-radius-xl: 1.5rem;
	--border-radius-full: 50%;
	--border-width: 1px;
	--border-width-thick: 3px;

	/* Shadows */
	--shadow-sm: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
	--shadow-md: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
	--shadow-xl: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);

	/* Transitions */
	--transition-fast: 0.3s ease;
	--transition-transform: transform 0.3s ease;

	/* Layout */
	--header-height-mobile: 4rem;
	--header-height-desktop: 5rem;
	--container-padding-mobile: 1rem;
	--container-padding-desktop: 2rem;
	--max-width-sm: 45rem;
	--max-width-md: 60rem;
	--max-width-lg: 75rem;

	/* Breakpoints (for reference - use in @media queries) */
	--breakpoint-xs: 480px;
	--breakpoint-sm: 768px;
	--breakpoint-md: 1024px;
	--breakpoint-lg: 1280px;
}

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

html {
	font-size: 14px;
	/* Mobile base */
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--text-dark);
	background-color: var(--bg-white);
}

/* Paragraph text */
p {
	font-family: var(--font-body);
	margin-bottom: 1.2em;
	line-height: var(--line-height-base);
}

/* Container & Layout - Mobile First */
.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 var(--container-padding-mobile);
}

/* Typography - Mobile First */
.heading {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: var(--line-height-heading);
	margin-bottom: 0.8em;
	color: var(--text-dark);
}

.heading--h1 {
	font-size: 1.8rem;
}

/* Mobile h1 */
.heading--h2 {
	font-size: 1.5rem;
}

/* Mobile h2 */
.heading--h3 {
	font-size: 1.3rem;
}

/* Mobile h3 */
.heading--h4 {
	font-size: 1.2rem;
}

/* Mobile h4 */
.heading--h5 {
	font-size: 1.1rem;
}

/* Mobile h5 */
.heading--h6 {
	font-size: 1rem;
}

/* Mobile h6 */

/* Fallback for existing h tags */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: var(--line-height-heading);
	margin-bottom: 0.8em;
	color: var(--text-dark);
}

h1 {
	font-size: 1.8rem;
}

h2 {
	font-size: 1.5rem;
}

h3 {
	font-size: 1.3rem;
}

h4 {
	font-size: 1.2rem;
}

h5 {
	font-size: 1.1rem;
}

h6 {
	font-size: 1rem;
}

.text {
	margin-bottom: 1.2em;
	color: var(--text-medium);
	line-height: 1.7;
	font-family: var(--font-body);
}

.link {
	color: var(--primary-color);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.link:hover {
	color: var(--primary-hover);
}

/* Fallback for existing links */
a {
	color: var(--primary-color);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--primary-hover);
}

/* Header - Mobile First BEM */
.header {
	background: var(--bg-overlay);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: var(--border-width) solid rgba(44, 44, 44, 0.1);
	transition: all var(--transition-fast);
}

.header--scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	position: relative;
	width: 100%;
}

.header__branding {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.header__logo {
	height: 3rem;
	width: auto;
	display: block;
}

.header__title {
	margin: 0;
	font-size: 1.2rem;
	font-family: 'Montserrat', Arial, sans-serif;
}

.header__title-link {
	color: #2c2c2c;
	text-decoration: none;
}

.header__tagline {
	margin: 0;
	font-size: 0.7rem;
	color: #7a7a7a;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: none;
	/* Hidden on mobile */
}

/* Fallback for existing classes */
.site-header {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(44, 44, 44, 0.1);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	position: relative;
	width: 100%;
}

.site-branding {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 1;
}

.site-logo {
	height: 3rem;
	width: auto;
	display: block;
}

.site-title {
	margin: 0;
	font-size: 1.2rem;
	font-family: 'Montserrat', Arial, sans-serif;
}

.site-title a {
	color: #2c2c2c;
	text-decoration: none;
}

.site-tagline {
	margin: 0;
	font-size: 0.7rem;
	color: #7a7a7a;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: none;
}

/* Navigation - Mobile First BEM */
.navigation {
	display: none;
	/* Hidden on mobile */
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	z-index: 1000;
}

.navigation--active {
	display: block;
}

.navigation__menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 1rem 0;
	gap: 0;
}

.navigation__item {
	position: relative;
	border-bottom: 1px solid #eee;
}

.navigation__item:last-child {
	border-bottom: none;
}

.navigation__link {
	color: #2c2c2c;
	font-weight: 500;
	font-size: 1.2rem;
	padding: 0.75rem 1rem;
	display: block;
	text-transform: none;
	letter-spacing: 0;
	transition: color 0.3s ease;
}

.navigation__link:hover,
.navigation__link--active {
	color: #a64253;
	background: #f8f8f8;
}

/* Mobile Menu Toggle */
.navigation__toggle {
	display: flex;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	margin-left: auto;
	gap: 0.25rem;
}

.navigation__toggle-bar {
	display: block;
	height: 2px;
	width: 1.5rem;
	background: #2c2c2c;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.navigation__toggle--active .navigation__toggle-bar:nth-child(1) {
	transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.navigation__toggle--active .navigation__toggle-bar:nth-child(2) {
	opacity: 0;
}

.navigation__toggle--active .navigation__toggle-bar:nth-child(3) {
	transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Fallback for existing classes */
.main-navigation {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
	z-index: 1000;
}

.main-navigation.active {
	display: block;
}

.nav-menu {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 1rem 0;
	gap: 0;
}

.nav-menu li {
	position: relative;
	border-bottom: 1px solid #eee;
}

.nav-menu li:last-child {
	border-bottom: none;
}

.nav-menu a {
	color: #2c2c2c;
	font-weight: 500;
	font-size: 1.2rem;
	padding: 0.75rem 1rem;
	display: block;
	text-transform: none;
	letter-spacing: 0;
	transition: color 0.3s ease;
}

.nav-menu a:hover,
.current-menu-item a {
	color: #a64253;
	background: #f8f8f8;
}

.mobile-menu-toggle {
	display: flex;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	margin-left: auto;
	gap: 0.25rem;
}

.mobile-menu-toggle span {
	display: block;
	height: 2px;
	width: 1.5rem;
	background: #2c2c2c;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Dropdown Menus */
.menu-item-has-children>a:after {
	content: '▼';
	font-size: 0.6em;
	margin-left: 8px;
	color: #999;
	transition: transform 0.3s ease;
}

.menu-item-has-children:hover>a:after {
	transform: rotate(180deg);
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	list-style: none;
	padding: 15px 0;
	z-index: 1001;
}

.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sub-menu li {
	margin: 0;
	padding: 0;
}

.sub-menu a {
	padding: 12px 25px;
	color: #4a4a4a;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	white-space: nowrap;
}

.sub-menu a:hover {
	color: #a64253;
	background: #f8f8f8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	padding: 0;
}

.mobile-menu-toggle span {
	display: block;
	height: 2px;
	width: 1.5rem;
	background: #2c2c2c;
	border-radius: 2px;
	transition: all 0.3s ease;
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 100px 0 20px;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.breadcrumbs a {
	color: #7a7a7a;
}

.breadcrumbs a:hover {
	color: #a64253;
}

/* Main Content - Mobile First */
.main {
	margin-top: 4rem;
	/* Account for fixed mobile header */
	padding: 1rem 0;
}

/* Content Areas */
.content-area {
	padding: 2rem 0;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.main-content {
	background: #fff;
}

/* Content Cards */
.content-card {
	background: #fff;
	padding: 1.5rem;
	border-radius: 0.75rem;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
	margin-bottom: 1.5rem;
	border-top: 3px solid #a64253;
}

.section-title {
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
}

.section-title:after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background: #a64253;
	margin: 1rem auto 0;
	border-radius: 2px;
}

/* Featured Image */
.featured-image {
	width: 100%;
	height: 12rem;
	object-fit: cover;
	border-radius: 0.75rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

/* Page Headers */
.page-header {
	text-align: center;
	padding: 6rem 0 3rem;
	background: linear-gradient(135deg, #f8f5f5 0%, #f0ebe9 100%);
	position: relative;
}

.page-title {
	font-size: 1.8rem;
	margin-bottom: 1rem;
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
}

.page-description {
	font-size: 1rem;
	color: #6a6a6a;
	max-width: 90%;
	margin: 0 auto;
	line-height: 1.6;
	font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* Breadcrumbs */
.breadcrumbs {
	padding: 5rem 0 1rem;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.breadcrumbs a {
	color: #7a7a7a;
}

.breadcrumbs a:hover {
	color: #a64253;
}

/* Stats */
.stats {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

.stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem 1.25rem;
	border-radius: 0.75rem;
	backdrop-filter: blur(10px);
	min-width: 8rem;
	flex: 1;
}

.stat-label {
	display: block;
	font-size: 0.8rem;
	margin-bottom: 0.5rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	display: block;
	font-size: 1.2rem;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
}

/* Fallback for existing classes */
.site-main {
	margin-top: 4rem;
	padding: 0;
	/* Remove padding to eliminate gap */
}

/* Hero Section - Mobile First BEM */
.hero,
.hero-section {
	background: linear-gradient(rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.4)),
		url('../images/LandingPage/hero_bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: scroll;
	padding: 3rem 0;
	margin-top: 0;
	text-align: center;
	color: white;
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.hero__content,
.hero-content {
	max-width: 90%;
	margin: 0 auto;
	padding: 1rem;
}

.hero-image {
	margin-bottom: 2rem;
}

.hero-main-image {
	width: 80%;
	height: auto;
	border-radius: var(--border-radius-md);
	object-fit: cover;
	box-shadow: var(--shadow-xl);
	max-width: 80%;
}

.hero__title,
.hero-title {
	font-size: 2.2rem;
	font-family: 'Montserrat', Arial, sans-serif;
	margin-bottom: 1.5rem;
	color: white;
	line-height: 1.2;
	font-weight: 400;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__subtitle,
.hero-subtitle {
	font-size: 1rem;
	margin-bottom: 0;
	color: white;
	line-height: 1.6;
	max-width: 90%;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	opacity: 0.95;
	font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}

.stat {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 0.75rem;
	backdrop-filter: blur(10px);
	min-width: 5rem;
	flex: 1;
	max-width: 8rem;
}

.stat-number {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
	margin-bottom: 0.25rem;
}

.stat-label {
	display: block;
	font-size: 0.75rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Content Sections */
.coffee-section,
.stories-section {
	padding: 4rem 0;
	background: #fff;
}

.coffee-section {
	background: #f8f9fa;
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-subtitle {
	font-size: 1rem;
	color: #6a6a6a;
	max-width: 80%;
	margin: 1rem auto 0;
	line-height: 1.6;
	padding: 0 1rem;
	font-family: 'Source Sans Pro', Arial, sans-serif;
}

/* Card Styles for Homepage */
.card-image {
	position: relative;
	overflow: hidden;
	border-radius: 0.75rem 0.75rem 0 0;
}

.card-image img {
	width: 100%;
	height: 10rem;
	object-fit: cover;
	transition: transform 0.3s ease;
}

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

.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.budget-tag {
	background: rgba(166, 66, 83, 0.9);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-size: 0.8rem;
	font-weight: 500;
}

.card-content {
	padding: 1.5rem;
}

.card-title {
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
}

.card-description {
	font-size: 0.9rem;
	color: #6a6a6a;
	line-height: 1.6;
	margin-bottom: 1rem;
	font-family: 'Source Sans Pro', Arial, sans-serif;
}

.card-meta {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0;
	font-size: 0.8rem;
	color: #999;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.card-link {
	display: inline-block;
	color: #a64253;
	font-weight: 500;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.card-link:hover {
	color: #8b3545;
}

/* Button Base Styles - Consolidated */
.card-button,
.button,
.btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background: var(--primary-color);
	color: var(--text-white);
	border: none;
	border-radius: var(--border-radius-xl);
	font-weight: 500;
	text-decoration: none;
	transition: all var(--transition-fast);
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	font-size: 0.9rem;
	text-align: center;
	min-width: 7rem;
}

.card-button {
	margin-top: var(--spacing-md);
}

.card-button:hover,
.button:hover,
.btn:hover {
	background: var(--primary-hover);
	color: var(--text-white);
	transform: translateY(-1px);
	box-shadow: 0 0.25rem 0.75rem rgba(166, 66, 83, 0.3);
}

/* Resources Section Specific */
.resource-card {
	text-align: center;
	padding: 2rem 1.5rem;
}

.resource-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #a64253;
}

/* Additional mobile fixes */
body.menu-open {
	overflow: hidden;
}

/* Ensure no gaps on mobile */
.site-main {
	margin-top: 4rem !important;
}

.hero-section {
	margin-top: 0 !important;
	padding-top: 2rem !important;
}

/* Mobile image optimizations */
@media (max-width: 768px) {

	/* Mobile navigation */
	.mobile-menu-toggle {
		display: flex !important;
	}

	.navigation__toggle {
		display: flex !important;
	}

	.card-image img,
	.destination-image,
	.story-image {
		height: 10rem !important;
		object-fit: cover;
	}

	.hero-main-image {
		width: 80% !important;
		max-width: 80% !important;
	}

	/* Ensure proper mobile spacing */
	.coffee-section,
	.stories-section {
		padding: 2rem 0 !important;
	}

	.section-header {
		margin-bottom: 2rem !important;
	}
}


/* Page Headers */
.page-header {
	text-align: center;
	padding: 120px 0 60px;
	background: linear-gradient(135deg, #f8f5f5 0%, #f0ebe9 100%);
	position: relative;
}

.page-title {
	font-size: 3em;
	margin-bottom: 15px;
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
}

.page-description {
	font-size: 1.2em;
	color: #6a6a6a;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Content Areas */
.content-area {
	padding: 80px 0;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 60px;
	margin-bottom: 40px;
}

.main-content {
	background: #fff;
}

/* Content Cards */
.content-card {
	background: #fff;
	padding: 50px;
	border-radius: 12px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	margin-bottom: 40px;
	border-top: 3px solid #a64253;
}

.section-title {
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 2.2em;
	margin-bottom: 30px;
	text-align: center;
	position: relative;
}

.section-title:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #a64253;
	margin: 20px auto 0;
	border-radius: 2px;
}

/* Featured Image */
.featured-image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 30px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Cards Grid - Mobile First BEM */
.cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin: 2rem 0;
}

.card {
	background: #fff;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-top: 3px solid #a64253;
}

.card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.card__image {
	width: 100%;
	height: 12rem;
	object-fit: cover;
}

.card__content {
	padding: 1.5rem;
}

.card--resource {
	padding: 1.5rem;
	text-align: center;
}

.card__icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.card__meta {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0 1.25rem;
	font-size: 0.85rem;
	color: #6a6a6a;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.card__budget {
	color: #a64253;
	font-weight: 600;
	background: rgba(166, 66, 83, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 0.75rem;
	font-size: 0.8rem;
}

/* Fallback for existing classes */
.destinations-grid,
.resources-grid,
.stories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin: 2rem 0;
}

.destination-card,
.resource-card,
.story-card {
	background: #fff;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border-top: 3px solid #a64253;
}

.destination-card:hover,
.resource-card:hover,
.story-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
}

.destination-image,
.story-image {
	width: 100%;
	height: 12rem;
	object-fit: cover;
}

.destination-content,
.story-content {
	padding: 1.5rem;
}

.resource-card {
	padding: 1.5rem;
	text-align: center;
}

.resource-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

.destination-meta,
.story-meta {
	display: flex;
	justify-content: space-between;
	margin: 1rem 0 1.25rem;
	font-size: 0.85rem;
	color: #6a6a6a;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.budget-range {
	color: #a64253;
	font-weight: 600;
	background: rgba(166, 66, 83, 0.1);
	padding: 0.25rem 0.5rem;
	border-radius: 0.75rem;
	font-size: 0.8rem;
}

.resource-icon {
	font-size: 3.5em;
	margin-bottom: 25px;
	display: block;
}

.destination-meta,
.story-meta {
	display: flex;
	justify-content: space-between;
	margin: 20px 0 25px;
	font-size: 0.9em;
	color: #6a6a6a;
}

.budget-range {
	color: #a64253;
	font-weight: 600;
	background: rgba(166, 66, 83, 0.1);
	padding: 5px 10px;
	border-radius: 15px;
}

.cities-count {
	color: #6a6a6a;
}

/* Secondary Button Styles */
.button--secondary,
.btn-secondary {
	background: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.button--secondary:hover,
.btn-secondary:hover {
	background: var(--primary-color);
	color: var(--text-white);
}

/* Sidebar */
.sidebar {
	position: sticky;
	top: 120px;
	height: fit-content;
}

.widget {
	background: #fff;
	padding: 35px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	border-left: 4px solid #a64253;
}

.widget h3 {
	margin-bottom: 25px;
	color: #2c2c2c;
	font-family: 'Montserrat', Arial, sans-serif;
	font-size: 1.4em;
}

.widget ul {
	list-style: none;
	padding: 0;
}

.widget li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.widget a {
	color: #6a6a6a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.widget a:hover {
	color: #a64253;
}

/* Budget Information */
.budget-breakdown {
	background: linear-gradient(135deg, #f8f5f5 0%, #f0ebe9 100%);
	padding: 35px;
	border-radius: 12px;
	border-left: 4px solid #a64253;
	margin: 40px 0;
}

.budget-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid rgba(166, 66, 83, 0.2);
	align-items: center;
}

.budget-item:last-child {
	border-bottom: none;
	font-weight: 600;
	color: #a64253;
	font-size: 1.1em;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 2px solid #a64253;
}

/* Footer Styles - Optimized */

/* Social Links - Mobile First */
.social {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 1.25rem;
}

.social__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: #444;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.social__link:hover {
	background: #a64253;
	transform: translateY(-2px);
}

.social__icon {
	fill: #cccccc;
	transition: fill 0.3s ease;
	width: 1.125rem;
	height: 1.125rem;
}

.social__link:hover .social__icon {
	fill: #fff;
}

/* Newsletter - Mobile First */
.newsletter__form {
	display: flex;
	flex-direction: column;
	margin-top: 1rem;
	gap: 0.75rem;
}

.newsletter__input {
	padding: 0.75rem 1rem;
	border: 1px solid #555;
	border-radius: 1.25rem;
	background: #444;
	color: #fff;
	font-size: 0.85rem;
}

.newsletter__input::placeholder {
	color: #999;
}

.newsletter__button {
	padding: 0.75rem 1.25rem;
	background: #a64253;
	color: #fff;
	border: none;
	border-radius: 1.25rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
	font-size: 0.85rem;
}

.newsletter__button:hover {
	background: #8b3545;
}

/* Fallback for existing classes */
.site-footer {
	background: var(--bg-dark);
	color: var(--text-light-gray);
	padding: 2.5rem 0 1.5rem;
	margin-top: var(--spacing-xxl);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--spacing-xl);
	margin-bottom: 0.5rem;
	text-align: center;
}

.footer-section h3 {
	color: var(--text-white);
	margin-bottom: var(--spacing-lg);
	font-family: var(--font-heading);
	font-size: 1.2rem;
}

.footer-section p {
	color: var(--text-light-gray);
	line-height: 1.7;
	margin-bottom: var(--spacing-md);
}

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

.footer-section li {
	margin-bottom: var(--spacing-sm);
}

.footer-section a {
	color: var(--text-light-gray);
	transition: color var(--transition-fast);
	text-decoration: none;
}

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

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 0;
	border-top: 1px solid #444;
	font-size: 0.85rem;
	text-align: center;
	gap: 1rem;
}


.social-links {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	margin-top: var(--spacing-lg);
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--bg-medium);
	border-radius: var(--border-radius-full);
	transition: all var(--transition-fast);
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
}

.social-links svg {
	fill: var(--text-light-gray);
	transition: fill var(--transition-fast);
	width: 1.125rem;
	height: 1.125rem;
}

.social-links a:hover svg {
	fill: var(--text-white);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	margin-top: 1rem;
	gap: 0.75rem;
}

.newsletter-form input {
	padding: 0.75rem 1rem;
	border: 1px solid #555;
	border-radius: 1.25rem;
	background: #444;
	color: #fff;
	font-size: 0.85rem;
}

.newsletter-form input::placeholder {
	color: #999;
}

.newsletter-form button {
	padding: 0.75rem 1.25rem;
	background: #a64253;
	color: #fff;
	border: none;
	border-radius: 1.25rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s ease;
	font-size: 0.85rem;
}

.newsletter-form button:hover {
	background: #8b3545;
}

/* Duplicate styles removed - using optimized versions above */

/* Footer Bottom */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
	border-top: 1px solid #444;
	font-size: 0.9em;
}

.footer-legal {
	display: flex;
	gap: 25px;
}

/* Stats */
.stats {
	display: flex;
	gap: 40px;
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 25px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	min-width: 140px;
}

.stat-label {
	display: block;
	font-size: 0.9em;
	margin-bottom: 8px;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stat-value {
	display: block;
	font-size: 1.4em;
	font-weight: 600;
	font-family: 'Montserrat', Arial, sans-serif;
}

/* About Page Styles - Mobile First Design */

/* Main Content */
.about-main {
	margin-top: var(--header-height-mobile);
	padding: var(--spacing-xxl) 0;
	background: var(--bg-white);
}

/* Section Styles */
.about-section {
	margin-bottom: var(--spacing-xxl);
}

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

.about-section__title {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xl);
	line-height: var(--line-height-heading);
	text-align: center;
	position: relative;
}

.about-section__title:after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background: var(--primary-color);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.about-section__content {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-medium);
}

.about-section__content p {
	margin-bottom: var(--spacing-lg);
}

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

/* Image Styles */
.about-image {
	margin: 0 0 var(--spacing-xl) 0;
	text-align: center;
}

.about-image__img {
	width: 100%;
	max-width: 400px;
	height: auto;
	border-radius: var(--border-radius-sm);
	box-shadow: var(--shadow-md);
}

/* CTA Styles */
.about-cta {
	text-align: center;
	margin-top: var(--spacing-xl);
}

/* Tablet and Desktop Responsive */
@media (min-width: 768px) {
	.about-section__title {
		font-size: 2.2rem;
	}

	.about-section__content {
		font-size: 1.1rem;
	}

	.about-image__img {
		max-width: 500px;
	}
}

@media (min-width: 1024px) {
	.about-main {
		max-width: 50rem;
		margin: 0 auto;
		padding: var(--spacing-xxl) var(--spacing-xl);
	}

	.about-section__title {
		font-size: 2.5rem;
	}

	.about-image__img {
		max-width: 600px;
	}
}

/* Start Here Page Styles - Mobile First Design */

/* Main Content */
.start-here-main {
	margin-top: var(--header-height-mobile);
	padding: var(--spacing-xxl) 0;
	background: var(--bg-white);
}

/* Section Styles */
.start-here-section {
	margin-bottom: var(--spacing-xxl);
}

.start-here-section:last-child {
	margin-bottom: 0;
}

.start-here__title {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xl);
	line-height: var(--line-height-heading);
	text-align: center;
	position: relative;
}

.start-here__title:after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background: var(--primary-color);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.start-here__section-title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--text-dark);
	margin-bottom: var(--spacing-xl);
	line-height: var(--line-height-heading);
	text-align: center;
	position: relative;
}

.start-here__section-title:after {
	content: '';
	display: block;
	width: 3rem;
	height: 3px;
	background: var(--primary-color);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.start-here__content {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-medium);
}

.start-here__content p {
	margin-bottom: var(--spacing-lg);
}

.start-here__content p:last-child {
	margin-bottom: 0;
}

/* Image Styles */
.start-here-image {
	margin: 0 0 var(--spacing-xl) 0;
	text-align: center;
}

.start-here-image__img {
	width: 100%;
	max-width: 400px;
	height: auto;
	border-radius: var(--border-radius-sm);
	box-shadow: var(--shadow-md);
}

/* Grid Layout */
.start-here-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-xl);
	margin-top: var(--spacing-xl);
}

/* Card Styles */
.start-here-card {
	background: var(--bg-white);
	border-radius: var(--border-radius-sm);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-fast);
	border-top: var(--border-width-thick) solid var(--primary-color);
}

.start-here-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: var(--shadow-lg);
}

.start-here-card__image {
	position: relative;
	height: 12rem;
	overflow: hidden;
}

.card-image__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-fast);
}

.start-here-card:hover .card-image__img {
	transform: scale(1.05);
}

.start-here-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: var(--spacing-md);
}

.start-here-card__title {
	font-family: var(--font-heading);
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--text-white);
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin: 0;
	line-height: var(--line-height-heading);
}

.start-here-card__content {
	padding: var(--spacing-lg);
}

.start-here-card__content p {
	margin-bottom: var(--spacing-md);
	color: var(--text-light);
	line-height: 1.6;
}

/* Content Grid for "Most Helpful Content" */
.start-here-content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-xl);
	margin-top: var(--spacing-xl);
}

/* CTA Styles */
.start-here-cta {
	text-align: center;
	background: var(--bg-gradient);
	padding: var(--spacing-xxl);
	border-radius: var(--border-radius-sm);
	margin-top: var(--spacing-xl);
}

.start-here-cta__buttons {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	margin-top: var(--spacing-xl);
	align-items: center;
}

/* Responsive Design */
@media (min-width: 768px) {
	.start-here__title {
		font-size: 2.2rem;
	}

	.start-here__section-title {
		font-size: 1.8rem;
	}

	.start-here__content {
		font-size: 1.1rem;
	}

	.start-here-image__img {
		max-width: 500px;
	}

	.start-here-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--spacing-xl);
	}

	.start-here-content-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-xl);
	}

	.start-here-cta__buttons {
		flex-direction: row;
		justify-content: center;
	}
}

@media (min-width: 1024px) {
	.start-here-main {
		max-width: 60rem;
		margin: var(--header-height-mobile) auto 0;
		padding: var(--spacing-xxl);
	}

	.start-here__title {
		font-size: 2.5rem;
	}

	.start-here__section-title {
		font-size: 2rem;
	}

	.start-here-image__img {
		max-width: 600px;
	}

	.start-here-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-xl);
	}

	.start-here-content-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-xl);
	}
}

/* Utility Classes */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-1 {
	margin-bottom: 1rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

.mt-0 {
	margin-top: 0;
}

.mt-1 {
	margin-top: 1rem;
}

.mt-2 {
	margin-top: 2rem;
}

.mt-3 {
	margin-top: 3rem;
}

.visually-hidden {
	position: absolute;
	left: -10000px;
}

/* ===================================
   RESPONSIVE BREAKPOINTS - MOBILE FIRST
   =================================== */

/* Small Mobile (min-width: 480px) */
@media (min-width: 480px) {
	html {
		font-size: 15px;
	}

	.container {
		padding: 0 1.25rem;
	}

	.header__title {
		font-size: 1.3rem;
	}

	.hero__title {
		font-size: 2.2rem;
	}

	.hero__subtitle {
		font-size: 1.1rem;
	}

	.card__image,
	.card-image img {
		height: 11rem;
	}

	.hero-main-image {
		width: 80%;
		max-width: 80%;
	}
}

/* Large Mobile / Tablet (min-width: 768px) */
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}

	.container {
		max-width: var(--max-width-sm);
		padding: 0 1.5rem;
	}

	.header__content {
		padding: 1rem 0;
	}

	.header__title {
		font-size: 1.5rem;
	}

	.header__tagline {
		display: block;
		font-size: 0.75rem;
	}

	/* Typography scales up */
	.heading--h1,
	h1 {
		font-size: 2.2rem;
	}

	.heading--h2,
	h2 {
		font-size: 1.8rem;
	}

	.heading--h3,
	h3 {
		font-size: 1.5rem;
	}

	/* Header adjustments for tablet */
	.header-content {
		padding: 1rem 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* Navigation becomes horizontal */
	.navigation {
		display: flex;
		position: static;
		background: none;
		box-shadow: none;
		margin-left: auto;
	}

	.navigation__menu {
		flex-direction: row;
		padding: 0;
		gap: 1rem;
	}

	.navigation__item {
		border-bottom: none;
	}

	.navigation__link {
		padding: 0.5rem 0.5rem;
		background: none !important;
		white-space: nowrap;
		font-size: 1rem;
	}

	.navigation__toggle {
		display: none;
	}

	/* Fallback classes */
	.main-navigation {
		display: flex;
		position: static;
		background: none;
		box-shadow: none;
		margin-left: auto;
	}

	.nav-menu {
		flex-direction: row;
		padding: 0;
		gap: 1rem;
	}

	.nav-menu li {
		border-bottom: none;
	}

	.nav-menu a {
		padding: 0.5rem 0.5rem;
		background: none !important;
		white-space: nowrap;
		font-size: 1rem;
	}

	.mobile-menu-toggle {
		display: none;
	}

	/* Hero section - centered for tablet */
	.hero,
	.hero-section {
		padding: 5rem 0 3rem;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 50vh;
	}

	.hero__content,
	.hero-content {
		text-align: center;
		margin: 0 auto;
	}

	.hero-image {
		margin-bottom: 2rem;
	}

	.hero__title,
	.hero-title {
		font-size: 2.2rem;
		text-align: center;
	}

	.hero__subtitle,
	.hero-subtitle {
		font-size: 1.1rem;
		text-align: center;
		max-width: 80%;
		margin: 0 auto;
	}

	.hero-main-image {
		width: 80%;
		max-width: 80%;
	}

	/* Layout - 2 column grid for larger content */
	.content-grid {
		grid-template-columns: 1fr 20rem;
		gap: 2.5rem;
	}

	.sidebar {
		position: sticky;
		top: 6rem;
	}

	.page-header {
		padding: 7rem 0 4rem;
	}

	.page-title {
		font-size: 2.2rem;
	}

	.page-description {
		font-size: 1.1rem;
		max-width: 70%;
	}

	/* Cards grid - 3 columns for tablet */
	.cards-grid,
	.destinations-grid,
	.resources-grid,
	.stories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.card__image,
	.destination-image,
	.story-image {
		height: 14rem;
	}

	/* Footer - 2 columns for tablet */
	.footer__content,
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		text-align: center;
	}

	.footer__bottom,
	.footer-bottom {
		flex-direction: row;
		justify-content: center;
		text-align: center;
	}

	.footer-copyright {
		text-align: center;
		width: 100%;
	}

	.footer__legal,
	.footer-legal {
		flex-direction: row;
		gap: 1.5rem;
	}

	.newsletter__form,
	.newsletter-form {
		flex-direction: row;
		gap: 0.5rem;
	}

	.newsletter__input,
	.newsletter-form input {
		flex: 1;
	}
}

/* Tablet Layout Fix (769px-1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
	.header-content {
		justify-content: space-between;
		align-items: center;
		padding: 1rem 0;
	}

	.site-branding {
		flex: 0 0 auto;
		margin-right: 2rem;
	}

	.site-logo {
		height: 3rem;
	}

	.main-navigation {
		flex: 1;
		display: flex;
		justify-content: flex-end;
		margin-left: auto;
	}

	/* Closer navigation spacing for tablet */
	.navigation__menu {
		gap: 1.2rem;
	}

	.nav-menu {
		gap: 1.2rem;
	}

	.nav-menu a {
		padding: 0.5rem 0.3rem;
		font-size: 0.95rem;
	}
}

/* Tablet / Small Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
	.container {
		max-width: var(--max-width-md);
		padding: 20 var(--container-padding-desktop);
	}

	.header__branding {
		gap: 1rem;
	}

	.header__logo {
		height: 3rem;
	}

	.header__title {
		font-size: 1.6rem;
	}

	.header__tagline {
		font-size: 0.8rem;
	}

	/* Typography scales up more */
	.heading--h1,
	h1 {
		font-size: 2.8rem;
	}

	.heading--h2,
	h2 {
		font-size: 2.2rem;
	}

	.heading--h3,
	h3 {
		font-size: 1.8rem;
	}

	.header__branding {
		gap: 1rem;
	}

	.header__logo {
		height: 3rem;
	}

	/* Navigation */
	.navigation__menu {
		gap: 2.5rem;
	}

	.nav-menu {
		gap: 2.5rem;
	}

	/* Hero */
	.hero,
	.hero-section {
		padding: 4rem 0;
	}

	.hero__content,
	.hero-content {
		max-width: 50rem;
	}

	.hero__title,
	.hero-title {
		font-size: 2.5rem;
	}

	.hero__subtitle,
	.hero-subtitle {
		font-size: 1.2rem;
	}

	.hero-main-image {
		width: 80%;
		max-width: 80%;
	}

	/* Cards grid - 3 columns for larger screens */
	.cards-grid,
	.destinations-grid,
	.resources-grid,
	.stories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem;
	}

	.card__image,
	.destination-image,
	.story-image {
		height: 15rem;
	}

	/* Footer - 3 columns */
	.footer__content,
	.footer-content {
		grid-template-columns: repeat(3, 1fr);
		gap: 3rem;
	}
}

/* Large Tablet/Small Desktop (1024px - 1279px) - Force single column */
@media (min-width: 1024px) and (max-width: 1279px) {

	/* Hero - centered single column for large tablets and smaller desktops */
	.hero,
	.hero-section {
		padding: 4rem 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 50vh !important;
		text-align: center !important;
	}

	.hero__content,
	.hero-content {
		display: block !important;
		/* Override any grid layout */
		text-align: center !important;
		max-width: 50rem !important;
		margin: 0 auto !important;
		grid-template-columns: none !important;
		/* Disable grid */
		grid: none !important;
		width: 100% !important;
	}

	.hero-image {
		margin-bottom: 2rem !important;
		order: initial !important;
		display: block !important;
		text-align: center !important;
		justify-content: center !important;
		align-items: center !important;
	}

	.hero-text {
		order: initial !important;
		display: block !important;
		text-align: center !important;
		align-items: center !important;
		flex-direction: column !important;
		justify-content: center !important;
	}

	.hero-main-image {
		width: 80% !important;
		max-width: 80% !important;
	}

	.hero__title,
	.hero-title {
		text-align: center !important;
		font-size: 2.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	.hero__subtitle,
	.hero-subtitle {
		text-align: center !important;
		max-width: 80% !important;
		margin: 0 auto !important;
	}
}

/* Desktop (min-width: 1280px) */
@media (min-width: 1280px) {
	.container {
		max-width: var(--max-width-lg);
	}

	/* Typography at full scale */
	.heading--h1,
	h1 {
		font-size: 3.5rem;
	}

	.heading--h2,
	h2 {
		font-size: 2.5rem;
	}

	.heading--h3,
	h3 {
		font-size: 2rem;
	}

	.header__title {
		font-size: 1.8rem;
	}

	.header__tagline {
		font-size: 0.85rem;
	}

	/* Navigation with more spacing */
	.navigation__menu {
		gap: 3rem;
	}

	.nav-menu {
		gap: 3rem;
	}

	/* Hero - 2 column layout for desktop */
	.hero,
	.hero-section {
		padding: 1rem 0;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 60vh;
	}

	.hero__content,
	.hero-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
		max-width: 75rem;
		width: 100%;
		margin: 0 auto;
	}

	.hero-image {
		margin-bottom: 0;
		order: 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.hero-text {
		order: 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		text-align: left;
	}

	.hero-main-image {
		width: 120%;
		max-width: 120%;
		height: auto;
	}

	.hero__title,
	.hero-title {
		font-size: 2.8rem;
		text-align: left;
		margin-bottom: 1.5rem;
	}

	.hero__subtitle,
	.hero-subtitle {
		font-size: 1.3rem;
		text-align: left;
		margin: 0;
	}

	/* Cards grid - can fit 4 columns on very wide screens */
	.cards-grid,
	.destinations-grid,
	.resources-grid,
	.stories-grid {
		grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
		gap: 3rem;
	}

	.card__image,
	.destination-image,
	.story-image {
		height: 16rem;
	}

	/* Footer - 2 columns for desktop */
	.footer__content,
	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		text-align: center;
	}

	.footer-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
	}

	.footer-section:first-child {
		order: 1;
	}

	.footer-section:last-child {
		order: 2;
	}

	.footer-section h3 {
		text-align: center;
		margin-bottom: 1.5rem;
	}

	.footer-section p {
		text-align: center;
		max-width: 90%;
	}

	.social-links {
		justify-content: center;
		margin-top: 1.5rem;
	}

	.footer__bottom,
	.footer-bottom {
		text-align: center;
		justify-content: center;
	}

	.footer-copyright {
		text-align: center;
		width: 100%;
	}
}
