/**
 * Main Stylesheet - Peaks Balkans DE
 * BOLD HIKING ADVENTURE DESIGN
 */

/* ============================================
   GOOGLE FONTS - SEXY TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES - BOLD ADVENTURE PALETTE
   ============================================ */
:root {
	--color-primary: #1a1a1a;
	--color-accent: #E8A838;
	--color-accent-dark: #D4922A;
	--color-forest: #2D5A3D;
	--color-forest-light: #3D7A52;
	--color-rock: #4A4A4A;
	--color-snow: #F5F5F5;
	--color-white: #ffffff;
	--color-text: #2C2C2C;
	--color-text-light: #666666;

	--font-display: 'Bebas Neue', sans-serif;
	--font-body: 'Montserrat', sans-serif;

	--shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
	--shadow-bold: 0 10px 40px rgba(0, 0, 0, 0.2);
	--shadow-dramatic: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255,255,255,0.85);
	background: #1a1a1a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: var(--color-forest);
	text-decoration: none;
	transition: all 0.3s ease;
}

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

/* ============================================
   TYPOGRAPHY - BOLD & SEXY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-primary);
}

h1 {
	font-size: 4rem;
	letter-spacing: 4px;
}

h2 {
	font-size: 2.5rem;
	letter-spacing: 3px;
	margin-bottom: 1.5rem;
}

h3 {
	font-size: 1.8rem;
	letter-spacing: 2px;
}

p {
	margin-bottom: 1.2rem;
	font-weight: 400;
}

/* ============================================
   HEADER - BOLD STICKY NAVIGATION
   ============================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--color-primary);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	box-shadow: var(--shadow-bold);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-logo .logo-link {
	display: flex;
	align-items: center;
	transition: opacity 0.3s ease;
}

.header-logo .logo-link:hover {
	opacity: 0.85;
}

.header-logo .logo-img {
	height: 60px;
	width: auto;
}

/* Main Navigation - Bold Style */
.main-navigation .nav-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.main-navigation .nav-menu li {
	position: relative;
}

.main-navigation .nav-menu a {
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0.5rem 0;
	display: block;
	transition: all 0.3s ease;
	position: relative;
}

.main-navigation .nav-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--color-accent);
	transition: width 0.3s ease;
}

.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu .current-menu-item a::after {
	width: 100%;
}

.main-navigation .nav-menu a:hover {
	color: var(--color-accent);
}

/* Dropdown Menu */
.main-navigation .nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-primary);
	min-width: 240px;
	padding: 1rem 0;
	list-style: none;
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	border-top: 3px solid var(--color-accent);
}

.main-navigation .nav-menu li:hover > .sub-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

.main-navigation .nav-menu .sub-menu a {
	padding: 0.75rem 1.5rem;
	font-size: 0.95rem;
}

.main-navigation .nav-menu .sub-menu a:hover {
	background: rgba(232, 168, 56, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hamburger-icon span {
	display: block;
	width: 28px;
	height: 3px;
	background: var(--color-white);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-icon span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-icon span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-navigation {
	display: none;
	background: var(--color-primary);
	padding: 1rem 0 2rem;
}

.mobile-navigation .mobile-nav-menu {
	list-style: none;
	padding: 0 2rem;
}

.mobile-navigation .mobile-nav-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation .mobile-nav-menu a {
	display: block;
	padding: 1rem 0;
	color: var(--color-white);
	font-family: var(--font-display);
	font-size: 1.2rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

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

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
.site-content {
	min-height: 60vh;
}

.content-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

/* ============================================
   HERO SECTION - DRAMATIC BOLD STYLE
   ============================================ */
.hero-section {
	background: linear-gradient(135deg, var(--color-primary) 0%, #2a2a2a 50%, var(--color-forest) 100%);
	padding: 8rem 2rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
	z-index: 0;
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 6rem;
	color: var(--color-white);
	margin-bottom: 1rem;
	letter-spacing: 8px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-family: var(--font-body);
	font-size: 1.3rem;
	color: var(--color-accent);
	font-weight: 600;
	margin-bottom: 2rem;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.hero-description {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 3rem;
	line-height: 1.8;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--color-accent);
	color: var(--color-primary);
	padding: 1.25rem 3rem;
	border-radius: 0;
	font-family: var(--font-display);
	font-size: 1.3rem;
	letter-spacing: 3px;
	text-transform: uppercase;
	box-shadow: var(--shadow-bold);
	transition: all 0.3s ease;
	border: 3px solid var(--color-accent);
}

.hero-cta:hover {
	background: transparent;
	color: var(--color-accent);
	transform: translateY(-3px);
	box-shadow: var(--shadow-dramatic);
}

/* ============================================
   INFO CARDS - BOLD ADVENTURE STYLE
   ============================================ */
.info-cards-section {
	padding: 6rem 2rem;
	background: var(--color-snow);
}

.info-cards-container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 3.5rem;
	margin-bottom: 4rem;
	color: var(--color-primary);
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--color-accent);
}

.info-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.info-card {
	background: var(--color-white);
	padding: 2.5rem;
	text-align: center;
	transition: all 0.4s ease;
	cursor: pointer;
	display: block;
	color: inherit;
	position: relative;
	overflow: hidden;
	border: none;
	box-shadow: var(--shadow-soft);
}

.info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--color-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

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

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-dramatic);
}

.info-card-icon {
	font-size: 3.5rem;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.info-card:hover .info-card-icon {
	color: var(--color-accent);
	transform: scale(1.1);
}

.info-card-title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0.75rem;
	color: var(--color-primary);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.info-card-description {
	font-size: 0.95rem;
	color: var(--color-text-light);
	margin: 0;
	font-weight: 500;
}

/* ============================================
   CONTENT SECTIONS - BOLD STYLE
   ============================================ */
.content-section {
	padding: 5rem 2rem;
	background: var(--color-white);
}

.content-section:nth-child(even) {
	background: var(--color-snow);
}

.content-section-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.content-box {
	background: var(--color-white);
	padding: 3rem;
	box-shadow: var(--shadow-soft);
	margin-bottom: 3rem;
	position: relative;
	border-left: 5px solid var(--color-accent);
}

.content-box h2 {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--color-primary);
}

.content-box-icon {
	font-size: 2.5rem;
	color: var(--color-accent);
}

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

.content-box ul li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-box ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: bold;
}

/* ============================================
   FAQ SECTION - BOLD STYLE
   ============================================ */
.faq-section {
	padding: 6rem 2rem;
	background: var(--color-primary);
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-section .section-title {
	color: var(--color-white);
}

.faq-section .section-title::after {
	background: var(--color-accent);
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	padding: 2rem;
	margin-bottom: 1.5rem;
	border-left: 4px solid var(--color-accent);
	transition: all 0.3s ease;
}

.faq-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(10px);
}

.faq-question {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--color-accent);
	margin-bottom: 0.75rem;
	letter-spacing: 1px;
}

.faq-answer {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
	margin: 0;
}

/* ============================================
   PAGE TEMPLATE STYLES
   ============================================ */
.page-header {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-forest) 100%);
	padding: 5rem 2rem;
	text-align: center;
	position: relative;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.page-title {
	font-size: 4rem;
	color: var(--color-white);
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-description {
	font-size: 1.2rem;
	color: var(--color-accent);
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.page-content {
	background: #1a1a1a;
	color: rgba(255,255,255,0.85);
	padding: 0;
}

.page-content > * {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

.page-content > section,
.page-content > div[style],
.page-content > .wp-block-html,
.page-content .trail-stages-grid {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.page-content p {
	color: rgba(255,255,255,0.8);
	line-height: 1.9;
}

.page-content h1 {
	font-size: 3rem;
	margin-bottom: 2rem;
	color: #fff;
}

.page-content h2 {
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: #fff;
	position: relative;
	padding-bottom: 0.5rem;
}

.page-content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--color-accent);
}

.page-content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #E8A838;
}

.page-content a {
	color: #E8A838;
}

.page-content a:hover {
	color: #fff;
}

.page-content ul,
.page-content ol {
	margin-bottom: 1.5rem;
	padding-left: 0;
	list-style: none;
}

.page-content ul li,
.page-content ol li {
	padding: 0.75rem 0;
	padding-left: 2rem;
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255,255,255,0.8);
}

.page-content ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: bold;
	font-size: 1.2rem;
}

.page-content strong {
	color: #fff;
}

.page-content blockquote {
	border-left: 4px solid #E8A838;
	background: #222;
	padding: 1.5rem 2rem;
	margin: 2rem 0;
	border-radius: 0 8px 8px 0;
}

.page-content blockquote p {
	color: rgba(255,255,255,0.9);
	font-style: italic;
}

/* Internal Links */
.internal-link {
	color: var(--color-forest);
	font-weight: 700;
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: 2px;
	transition: all 0.3s ease;
}

.internal-link:hover {
	color: var(--color-accent);
	border-bottom-color: var(--color-forest);
}

/* ============================================
   FOOTER - BOLD DARK STYLE
   ============================================ */
.site-footer {
	background: var(--color-primary);
	color: var(--color-white);
	padding: 4rem 2rem 2rem;
	margin-top: 0;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
	font-family: var(--font-display);
	color: var(--color-white);
	font-size: 2rem;
	letter-spacing: 3px;
	margin-bottom: 1rem;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.footer-email {
	margin-top: 0.5rem;
}

.footer-email a {
	color: #E8A838;
	text-decoration: none;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.footer-email a:hover {
	color: #fff;
}

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

.footer-nav-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.footer-nav-menu a:hover {
	color: var(--color-accent);
	padding-left: 10px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.9rem;
}

.legal-links {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.legal-links a {
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s ease;
}

.legal-links a:hover {
	color: var(--color-accent);
}

.separator {
	color: rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	.hero-title {
		font-size: 4rem;
	}

	h1 {
		font-size: 3rem;
	}

	.section-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	/* Header */
	.main-navigation {
		display: none;
	}

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

	.header-container {
		padding: 1rem;
	}

	.header-logo .logo-img {
		height: 50px;
	}

	/* Hero */
	.hero-title {
		font-size: 2.8rem;
		letter-spacing: 4px;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-section {
		padding: 5rem 1.5rem;
	}

	.hero-cta {
		padding: 1rem 2rem;
		font-size: 1.1rem;
	}

	/* Typography */
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

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

	.page-content h1 {
		font-size: 2.2rem;
	}

	/* Content */
	.content-container,
	.page-content {
		padding: 2rem 1rem;
	}

	.content-box {
		padding: 2rem 1.5rem;
	}

	.info-cards-grid {
		grid-template-columns: 1fr;
	}

	.info-cards-section,
	.content-section,
	.faq-section {
		padding: 4rem 1.5rem;
	}

	/* Footer */
	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2.2rem;
		letter-spacing: 2px;
	}

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

	.section-title {
		font-size: 2rem;
	}

	.content-box {
		padding: 1.5rem 1rem;
	}

	.faq-question {
		font-size: 1.2rem;
	}
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
	text-align: center;
}

.text-accent {
	color: var(--color-accent);
}

.bg-dark {
	background: var(--color-primary);
	color: var(--color-white);
}

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

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Bold accent underline for headings */
.accent-underline {
	position: relative;
	display: inline-block;
}

.accent-underline::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--color-accent);
}

/* ============================================
   TRAIL STAGES GRID
   ============================================ */
.trail-stages-grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.trail-stage-card {
	background: #222;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.trail-stage-card:hover {
	transform: translateX(6px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
	background: #2a2a2a;
}

.trail-stage-card-image {
	width: 200px;
	min-height: 120px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
	background-color: #333;
	position: relative;
}

.trail-stage-number {
	position: absolute;
	top: 0;
	left: 0;
	background: #E8A838;
	color: #1a1a1a;
	padding: 0.3rem 0.8rem;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.9rem;
	letter-spacing: 1px;
	border-radius: 0 0 6px 0;
}

.trail-difficulty-badge {
	position: absolute;
	bottom: 0.5rem;
	left: 0.5rem;
	color: #fff;
	padding: 0.25rem 0.6rem;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 2px;
}

.trail-stage-card-content {
	padding: 1.25rem 1.5rem;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.trail-stage-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 1px;
	margin: 0;
	line-height: 1.2;
	min-width: 200px;
}

.trail-stage-route {
	color: rgba(255,255,255,0.5);
	font-size: 0.85rem;
	margin: 0;
	white-space: nowrap;
}

.trail-stage-stats {
	display: flex;
	gap: 1.5rem;
	margin-left: auto;
	padding: 0;
	border: none;
}

.trail-stat {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(255,255,255,0.8);
	font-size: 0.85rem;
	white-space: nowrap;
}

.trail-stat i {
	color: #E8A838;
	font-size: 0.9rem;
}

/* Responsive Trail Rows */
@media (max-width: 768px) {
	.trail-stages-grid {
		padding: 1.5rem;
	}

	.trail-stage-card {
		flex-direction: column;
	}

	.trail-stage-card-image {
		width: 100%;
		height: 160px;
	}

	.trail-stage-card-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.trail-stage-title {
		min-width: auto;
	}

	.trail-stage-stats {
		margin-left: 0;
		flex-wrap: wrap;
	}
}

/* ============================================
   HOMEPAGE - BOLD ADVENTURE DESIGN
   ============================================ */

/* --- HERO BANNER --- */
.hp-hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #2D5A3D 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 6rem 2rem 0 2rem;
	background-size: cover;
	background-position: center;
}

.hp-hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(0, 0, 0, 0.2) 40%,
		rgba(0, 0, 0, 0.5) 70%,
		rgba(26, 26, 26, 0.9) 100%
	);
	z-index: 0;
}

.hp-hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.hp-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(232, 168, 56, 0.15);
	color: #E8A838;
	padding: 0.5rem 1.5rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	border: 1px solid rgba(232, 168, 56, 0.3);
	margin-bottom: 2rem;
}

.hp-hero-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 8rem;
	color: #fff;
	letter-spacing: 10px;
	line-height: 0.95;
	margin: 0 0 1.5rem 0;
	text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hp-hero-sub {
	font-size: 1.3rem;
	color: rgba(255,255,255,0.8);
	margin: 0 0 1.5rem 0;
	font-weight: 400;
}

.hp-hero-countries {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	margin-bottom: 2.5rem;
}

.hp-hero-countries i {
	color: #E8A838;
}

.hp-hero-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #E8A838;
}

.hp-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.hp-btn-gold {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #E8A838;
	color: #1a1a1a;
	padding: 1rem 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #E8A838;
}

.hp-btn-gold:hover {
	background: #fff;
	border-color: #fff;
	color: #1a1a1a;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(232, 168, 56, 0.3);
}

.hp-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: transparent;
	color: #fff;
	padding: 1rem 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	text-decoration: none;
	border: 2px solid rgba(255,255,255,0.3);
	transition: all 0.3s ease;
}

.hp-btn-outline:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.1);
	color: #fff;
	transform: translateY(-3px);
}

.hp-hero-stats {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 0;
	width: 100%;
	max-width: 900px;
	margin-top: auto;
}

.hp-hero-stat {
	flex: 1;
	padding: 2rem 1rem;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.hp-hero-stat:not(:last-child) {
	border-right: 1px solid rgba(255,255,255,0.1);
}

.hp-hero-stat-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.5rem;
	color: #E8A838;
	display: block;
	line-height: 1;
}

.hp-hero-stat-label {
	font-size: 0.7rem;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 0.5rem;
	display: block;
}

/* --- ICON NAVIGATION --- */
.hp-nav-icons {
	background: #E8A838;
	padding: 3rem 2rem;
}

.hp-nav-icons-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.hp-nav-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: #1a1a1a;
	transition: all 0.3s ease;
	padding: 0.5rem;
	flex: 1;
	min-width: 80px;
}

.hp-nav-icon-item:hover {
	transform: translateY(-5px);
	color: #1a1a1a;
}

.hp-nav-icon-item:hover .hp-nav-icon-circle {
	background: #1a1a1a;
	color: #E8A838;
}

.hp-nav-icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: #1a1a1a;
	transition: all 0.3s ease;
}

.hp-nav-icon-item span {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* --- SECTION SHARED STYLES --- */
.hp-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.hp-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.hp-section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.5rem;
	color: #fff;
	letter-spacing: 3px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hp-section-title i {
	color: #E8A838;
}

.hp-view-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #E8A838;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85rem;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
	border-bottom: 2px solid transparent;
}

.hp-view-more:hover {
	color: #fff;
	border-bottom-color: #E8A838;
}

/* --- NEWS SECTION --- */
.hp-news {
	background: #1a1a1a;
	padding: 5rem 0;
}

.hp-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.hp-news-card {
	background: #222;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease;
}

.hp-news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hp-news-card-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #333;
	position: relative;
}

.hp-news-date {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background: rgba(0,0,0,0.7);
	color: rgba(255,255,255,0.8);
	padding: 0.3rem 0.8rem;
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hp-news-card-body {
	padding: 1.5rem;
}

.hp-news-card-body h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 1px;
	margin: 0 0 0.75rem 0;
	line-height: 1.2;
}

.hp-news-card-body p {
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 1rem 0;
}

.hp-read-more {
	color: #E8A838;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hp-news-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 4rem 2rem;
	background: #222;
	border-radius: 10px;
}

.hp-news-empty p {
	color: rgba(255,255,255,0.6);
	margin: 0;
}

/* --- TRAIL STAGES SECTION --- */
.hp-stages {
	background: #111;
	padding: 5rem 0;
}

/* --- ACCOMMODATIONS SECTION --- */
.hp-accommodation {
	background: #2D5A3D;
	padding: 5rem 0;
}

.hp-accom-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.hp-accom-intro {
	color: rgba(255,255,255,0.8);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.hp-accom-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.hp-accom-card-photo {
	padding: 0;
	text-align: left;
}

.hp-accom-photo {
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: rgba(255,255,255,0.05);
}

.hp-accom-card-body {
	padding: 1.5rem;
}

.hp-accom-card:hover {
	transform: translateY(-6px);
	background: rgba(255,255,255,0.12);
	border-color: rgba(255,255,255,0.2);
}

.hp-accom-card h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	color: #fff;
	letter-spacing: 2px;
	margin: 0 0 0.5rem 0;
}

.hp-accom-location {
	font-size: 0.85rem;
	font-weight: 600;
	margin: 0 0 0.75rem 0 !important;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.hp-accom-card p {
	color: rgba(255,255,255,0.7);
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}

/* --- FAQ SECTION --- */
.hp-faq {
	background: #1a1a1a;
	padding: 5rem 0;
}

.hp-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.hp-faq-item {
	border-bottom: 1px solid #333;
}

.hp-faq-question {
	width: 100%;
	background: none;
	border: none;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 1.5rem 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-align: left;
	transition: color 0.3s ease;
}

.hp-faq-question:hover {
	color: #E8A838;
}

.hp-faq-question i {
	color: #E8A838;
	transition: transform 0.3s ease;
	font-size: 0.9rem;
}

.hp-faq-item.open .hp-faq-question i {
	transform: rotate(180deg);
}

.hp-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.hp-faq-item.open .hp-faq-answer {
	max-height: 300px;
	padding-bottom: 1.5rem;
}

.hp-faq-answer p {
	color: rgba(255,255,255,0.7);
	font-size: 0.95rem;
	line-height: 1.8;
	margin: 0;
}

.hp-faq-answer a {
	color: #E8A838;
	text-decoration: none;
	font-weight: 600;
}

/* --- CTA SECTION --- */
.hp-cta {
	background: linear-gradient(135deg, #2D5A3D 0%, #1a3d28 50%, #1a1a1a 100%);
	padding: 6rem 2rem;
	text-align: center;
}

.hp-cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.hp-cta-icon {
	font-size: 4rem;
	color: #E8A838;
	margin-bottom: 2rem;
	display: block;
}

.hp-cta h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3rem;
	color: #fff;
	letter-spacing: 4px;
	margin: 0 0 1rem 0;
}

.hp-cta p {
	color: rgba(255,255,255,0.8);
	font-size: 1.15rem;
	margin: 0 0 2.5rem 0;
}

.hp-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

/* --- HOMEPAGE RESPONSIVE --- */
@media (max-width: 1024px) {
	.hp-hero-title {
		font-size: 5rem;
		letter-spacing: 6px;
	}

	.hp-nav-icons-inner {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.hp-hero {
		min-height: 90vh;
		padding: 4rem 1.5rem 0;
	}

	.hp-hero-title {
		font-size: 3.5rem;
		letter-spacing: 4px;
	}

	.hp-hero-sub {
		font-size: 1rem;
	}

	.hp-hero-countries {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}

	.hp-hero-stats {
		flex-wrap: wrap;
	}

	.hp-hero-stat {
		flex: 1 1 45%;
	}

	.hp-hero-stat:nth-child(2) {
		border-right: none;
	}

	.hp-hero-stat-num {
		font-size: 2rem;
	}

	.hp-nav-icons-inner {
		gap: 0.5rem;
	}

	.hp-nav-icon-circle {
		width: 50px;
		height: 50px;
		font-size: 1.1rem;
	}

	.hp-nav-icon-item span {
		font-size: 0.65rem;
	}

	.hp-news-grid {
		grid-template-columns: 1fr;
	}

	.hp-accom-grid {
		grid-template-columns: 1fr;
	}

	.hp-section-title {
		font-size: 2rem;
	}

	.hp-cta h2 {
		font-size: 2.2rem;
	}

	.hp-btn-gold, .hp-btn-outline {
		padding: 0.9rem 1.8rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.hp-hero-title {
		font-size: 2.8rem;
		letter-spacing: 3px;
	}

	.hp-hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.hp-btn-gold, .hp-btn-outline {
		width: 100%;
		justify-content: center;
	}

	.hp-nav-icon-item {
		min-width: 60px;
	}
}

/* ============================================
   BLOG ARCHIVE PAGE
   ============================================ */
.blog-hero {
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #2D5A3D 100%);
	padding: 6rem 2rem 4rem;
	text-align: center;
	position: relative;
}

.blog-hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.blog-hero-content {
	position: relative;
	z-index: 1;
}

.blog-hero-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(232, 168, 56, 0.15);
	color: #E8A838;
	padding: 0.5rem 1.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	border: 1px solid rgba(232, 168, 56, 0.3);
	margin-bottom: 1.5rem;
}

.blog-hero-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 5rem;
	color: #fff;
	letter-spacing: 8px;
	margin: 0 0 1rem 0;
	text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.blog-hero-sub {
	color: rgba(255,255,255,0.7);
	font-size: 1.1rem;
	margin: 0;
}

/* Blog Grid */
.blog-archive {
	background: #1a1a1a;
	padding: 4rem 0 6rem;
}

.blog-archive-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

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

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

.blog-card {
	background: #222;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.blog-card-image {
	height: 220px;
	background-size: cover;
	background-position: center;
	background-color: #333;
	position: relative;
}

.blog-card-date {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background: rgba(0,0,0,0.75);
	color: rgba(255,255,255,0.8);
	padding: 0.3rem 0.8rem;
	font-size: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	border-radius: 3px;
}

.blog-card-cat {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: #E8A838;
	color: #1a1a1a;
	padding: 0.25rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
}

.blog-card-body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 1px;
	margin: 0 0 0.75rem 0;
	line-height: 1.2;
}

.blog-card-excerpt {
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 1rem 0;
	flex: 1;
}

.blog-card-read {
	color: #E8A838;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-read {
	gap: 0.8rem;
}

/* Blog Pagination */
.blog-pagination {
	margin-top: 3rem;
	text-align: center;
}

.blog-pagination .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
}

.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	background: #222;
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.blog-pagination .page-numbers:hover {
	background: #333;
	color: #fff;
}

.blog-pagination .page-numbers.current {
	background: #E8A838;
	color: #1a1a1a;
}

.blog-pagination .prev,
.blog-pagination .next {
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 1px;
	font-size: 1rem;
}

/* Blog Empty State */
.blog-empty {
	text-align: center;
	padding: 6rem 2rem;
	background: #222;
	border-radius: 10px;
}

.blog-empty i {
	font-size: 4rem;
	color: #E8A838;
	margin-bottom: 1.5rem;
}

.blog-empty h2 {
	font-family: 'Bebas Neue', sans-serif;
	color: #fff;
	font-size: 2rem;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
}

.blog-empty p {
	color: rgba(255,255,255,0.6);
	margin: 0;
}

/* ============================================
   SINGLE BLOG POST
   ============================================ */
.single-hero {
	position: relative;
	min-height: 450px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.single-hero-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	background-color: #2D5A3D;
}

.single-hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.2) 0%,
		rgba(0,0,0,0.4) 50%,
		rgba(26,26,26,0.95) 100%
	);
}

.single-hero-content {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 2rem 3rem;
	width: 100%;
}

.single-hero-cat {
	display: inline-block;
	background: #E8A838;
	color: #1a1a1a;
	padding: 0.3rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
}

.single-hero-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 3.5rem;
	color: #fff;
	letter-spacing: 3px;
	line-height: 1.05;
	margin: 0 0 1.5rem 0;
	text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.single-hero-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
}

.single-hero-meta i {
	color: #E8A838;
}

.single-hero-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255,255,255,0.3);
}

/* Single Article */
.single-article {
	background: #1a1a1a;
	padding: 3rem 0 4rem;
}

.single-article-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.single-content {
	color: rgba(255,255,255,0.85);
	font-size: 1.05rem;
	line-height: 1.9;
}

.single-content p {
	margin-bottom: 1.5rem;
	color: rgba(255,255,255,0.85);
}

.single-content h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 2px;
	margin: 2.5rem 0 1rem;
}

.single-content h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.5rem;
	color: #E8A838;
	margin: 2rem 0 0.75rem;
}

.single-content a {
	color: #E8A838;
	border-bottom: 1px solid rgba(232, 168, 56, 0.3);
}

.single-content a:hover {
	color: #fff;
	border-bottom-color: #fff;
}

.single-content img {
	border-radius: 8px;
	margin: 2rem 0;
}

.single-content blockquote {
	border-left: 4px solid #E8A838;
	background: #222;
	padding: 1.5rem 2rem;
	margin: 2rem 0;
	border-radius: 0 8px 8px 0;
}

.single-content blockquote p {
	color: rgba(255,255,255,0.9);
	font-style: italic;
	margin: 0;
}

/* Tags */
.single-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #333;
}

.single-tag {
	background: #222;
	color: rgba(255,255,255,0.6);
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.single-tag:hover {
	background: #E8A838;
	color: #1a1a1a;
}

/* Post Navigation */
.single-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #333;
}

.single-nav-link {
	background: #222;
	padding: 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.single-nav-link:hover {
	background: #2a2a2a;
	transform: translateY(-3px);
}

.single-nav-prev {
	text-align: left;
}

.single-nav-next {
	text-align: right;
}

.single-nav-label {
	font-size: 0.75rem;
	color: #E8A838;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
}

.single-nav-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: 1px;
	line-height: 1.2;
}

/* Related Posts */
.single-related {
	background: #111;
	padding: 4rem 0 5rem;
}

.single-related-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.single-related-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 2.5rem;
	color: #fff;
	letter-spacing: 3px;
	margin: 0 0 2.5rem 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.single-related-title i {
	color: #E8A838;
}

/* Blog Responsive */
@media (max-width: 768px) {
	.blog-hero-title {
		font-size: 3.5rem;
	}

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

	.blog-grid-3 {
		grid-template-columns: 1fr;
	}

	.single-hero {
		min-height: 350px;
	}

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

	.single-hero-meta {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.single-post-nav {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.blog-hero-title {
		font-size: 2.8rem;
	}

	.single-hero-title {
		font-size: 2rem;
	}
}

/* ============================================
   LIGHT MODE
   Activate: add ?mode=light to any URL
   ============================================ */

/* --- Base --- */
body.light-mode {
	background: #f5f3ef;
	color: #333;
}

/* --- Page Content Area --- */
body.light-mode .page-content {
	background: #f5f3ef !important;
	color: #444 !important;
}

body.light-mode .page-content p {
	color: #555 !important;
}

body.light-mode .page-content h1,
body.light-mode .page-content h2 {
	color: #1a1a1a !important;
}

body.light-mode .page-content h3 {
	color: #b8841c !important;
}

body.light-mode .page-content strong {
	color: #1a1a1a !important;
}

body.light-mode .page-content a {
	color: #b8841c !important;
}

body.light-mode .page-content a:hover {
	color: #1a1a1a !important;
}

body.light-mode .page-content ul li,
body.light-mode .page-content ol li {
	color: #555 !important;
	border-bottom-color: rgba(0,0,0,0.08) !important;
}

body.light-mode .page-content blockquote {
	background: #fff !important;
}

body.light-mode .page-content blockquote p {
	color: #444 !important;
}

/* --- Inline Background Overrides --- */
/* Main sections: #1a1a1a → warm light */
body.light-mode .page-content section[style*="background: #1a1a1a"] {
	background: #f5f3ef !important;
}

/* Secondary sections: #222 → slightly warmer */
body.light-mode .page-content section[style*="background: #222"] {
	background: #ede8e0 !important;
}

/* Darker sections: #111 → warm */
body.light-mode .page-content section[style*="background: #111"] {
	background: #eae5dd !important;
}

/* Cards & boxes: #222 → white with shadow */
body.light-mode .page-content div[style*="background: #222"],
body.light-mode .page-content a[style*="background: #222"] {
	background: #ffffff !important;
	box-shadow: 0 1px 8px rgba(0,0,0,0.06) !important;
}

/* --- Inline Text Color Overrides --- */
/* Pure white text → near-black */
body.light-mode .page-content [style*="color: #fff"],
body.light-mode .page-content [style*="color:#fff"] {
	color: #1a1a1a !important;
}

/* White alpha text - maintain hierarchy */
body.light-mode .page-content [style*="color: rgba(255,255,255,0.9)"] {
	color: #333 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.85)"] {
	color: #444 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.8)"] {
	color: #444 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.7)"] {
	color: #555 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.6)"] {
	color: #666 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.5)"] {
	color: #777 !important;
}

body.light-mode .page-content [style*="color: rgba(255,255,255,0.4)"] {
	color: #999 !important;
}

/* --- PRESERVE colors on intentionally-colored backgrounds --- */

/* Green bg (#2D5A3D) - keep white/light text */
body.light-mode .page-content [style*="background: #2D5A3D"] [style*="color: #fff"],
body.light-mode .page-content [style*="background: #2D5A3D"] [style*="color:#fff"],
body.light-mode .page-content a[style*="background: #2D5A3D"][style*="color: #fff"],
body.light-mode .page-content a[style*="background: #2D5A3D"][style*="color:#fff"] {
	color: #fff !important;
}

body.light-mode .page-content [style*="background: #2D5A3D"] [style*="color: rgba(255,255,255"],
body.light-mode .page-content [style*="background: #2D5A3D"] small,
body.light-mode .page-content [style*="background: #2D5A3D"] p {
	color: rgba(255,255,255,0.7) !important;
}

body.light-mode .page-content [style*="background: #2D5A3D"] p[style*="color: #fff"] {
	color: #fff !important;
}

/* Blue bg (#2EA3F2) - keep white text */
body.light-mode .page-content [style*="background: #2EA3F2"] [style*="color: #fff"],
body.light-mode .page-content [style*="background: #2EA3F2"][style*="color: #fff"] {
	color: #fff !important;
}

/* Gradient backgrounds - keep light text */
body.light-mode .page-content [style*="linear-gradient"] [style*="color: #fff"],
body.light-mode .page-content [style*="linear-gradient"] [style*="color:#fff"] {
	color: #fff !important;
}

body.light-mode .page-content [style*="linear-gradient"] [style*="color: rgba(255,255,255"] {
	color: rgba(255,255,255,0.7) !important;
}

/* Gold gradient CTA - keep dark text */
body.light-mode .page-content [style*="linear-gradient(135deg, #E8A838"] [style*="color: #1a1a1a"],
body.light-mode .page-content [style*="linear-gradient(135deg, #E8A838"] h3,
body.light-mode .page-content [style*="linear-gradient(135deg, #E8A838"] p {
	color: #1a1a1a !important;
}

body.light-mode .page-content [style*="linear-gradient(135deg, #E8A838"] [style*="color: rgba(0,0,0"] {
	color: rgba(0,0,0,0.7) !important;
}

/* --- Accent colors: slightly deeper for light bg readability --- */
body.light-mode .page-content [style*="color: #E8A838"] {
	color: #b8841c !important;
}

body.light-mode .page-content i[style*="color: #E8A838"] {
	color: #c78a1e !important;
}

/* Keep specific icon colors */
body.light-mode .page-content i[style*="color: #FF5722"] {
	color: #FF5722 !important;
}

body.light-mode .page-content i[style*="color: #2EA3F2"] {
	color: #2EA3F2 !important;
}

/* Keep forest green and blue text */
body.light-mode .page-content [style*="color: #2D5A3D"] {
	color: #2D5A3D !important;
}

body.light-mode .page-content [style*="color: #2EA3F2"] {
	color: #2EA3F2 !important;
}

/* --- Homepage Sections --- */
body.light-mode .hp-news {
	background: #f5f3ef;
}

body.light-mode .hp-news-card {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

body.light-mode .hp-news-card-body h3 {
	color: #1a1a1a;
}

body.light-mode .hp-news-card-body p {
	color: #666;
}

body.light-mode .hp-stages {
	background: #eae5dd;
}

body.light-mode .hp-faq {
	background: #f5f3ef;
}

body.light-mode .hp-faq-question {
	color: #1a1a1a;
}

body.light-mode .hp-faq-answer p {
	color: #555;
}

body.light-mode .hp-faq-item {
	border-bottom-color: #ddd;
}

body.light-mode .hp-section-title {
	color: #1a1a1a;
}

/* --- Blog Pages --- */
body.light-mode .blog-archive {
	background: #f5f3ef;
}

body.light-mode .blog-card {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

body.light-mode .blog-card-title {
	color: #1a1a1a;
}

body.light-mode .blog-card-excerpt {
	color: #666;
}

body.light-mode .single-article {
	background: #f5f3ef;
}

body.light-mode .single-content {
	color: #333;
}

body.light-mode .single-content p {
	color: #444;
}

body.light-mode .single-content h2 {
	color: #1a1a1a;
}

body.light-mode .single-content h3 {
	color: #b8841c;
}

body.light-mode .single-content a {
	color: #b8841c;
	border-bottom-color: rgba(184, 132, 28, 0.3);
}

body.light-mode .single-tag {
	background: #e8e3db;
	color: #555;
}

body.light-mode .single-tag:hover {
	background: #E8A838;
	color: #1a1a1a;
}

body.light-mode .single-nav-link {
	background: #fff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

body.light-mode .single-nav-link:hover {
	background: #f8f6f3;
}

body.light-mode .single-nav-title {
	color: #1a1a1a;
}

body.light-mode .single-related {
	background: #eae5dd;
}

body.light-mode .single-related-title {
	color: #1a1a1a;
}

body.light-mode .single-tags,
body.light-mode .single-post-nav {
	border-top-color: #ddd;
}

/* --- Trail Stage Cards --- */
body.light-mode .trail-stage-card {
	background: #fff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

body.light-mode .trail-stage-card:hover {
	background: #f8f6f3;
}

body.light-mode .trail-stage-title {
	color: #1a1a1a;
}

body.light-mode .trail-stage-route {
	color: #777;
}

body.light-mode .trail-stat {
	color: #555;
}

body.light-mode .trail-stages-grid {
	background: transparent;
}

/* --- Blog Pagination --- */
body.light-mode .blog-pagination .page-numbers {
	background: #e8e3db;
	color: #555;
}

body.light-mode .blog-pagination .page-numbers:hover {
	background: #ddd;
	color: #1a1a1a;
}

body.light-mode .blog-pagination .page-numbers.current {
	background: #E8A838;
	color: #1a1a1a;
}

/* --- Blog Empty State --- */
body.light-mode .blog-empty {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

body.light-mode .blog-empty h2 {
	color: #1a1a1a;
}

body.light-mode .blog-empty p {
	color: #666;
}

/* --- FAQ Section (standalone) --- */
body.light-mode .faq-section {
	background: #f5f3ef;
}

body.light-mode .faq-section .section-title {
	color: #1a1a1a;
}

body.light-mode .faq-item {
	background: #fff;
}

body.light-mode .faq-item:hover {
	background: #f8f6f3;
}

body.light-mode .faq-answer {
	color: #555;
}

/* --- Single Trail Stage (Etappe) --- */

/* Hero: keep white text on dark overlay */
body.light-mode .trail-hero-content {
	color: #fff;
}

body.light-mode .trail-hero-title {
	color: #fff;
}

body.light-mode .trail-hero-route {
	color: rgba(255,255,255,0.9);
}

body.light-mode .trail-hero-badge {
	color: #1a1a1a;
}

body.light-mode .trail-hero-difficulty {
	color: #fff;
}

body.light-mode .trail-main {
	background: #f5f3ef;
}

body.light-mode .trail-section-title {
	color: #1a1a1a;
}

body.light-mode .trail-section-title i {
	color: #c78a1e;
}

body.light-mode .trail-description {
	background: #fff;
	color: #444;
	box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

body.light-mode .trail-description p {
	color: #555;
}

body.light-mode .elevation-stat {
	background: #fff;
	box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

body.light-mode .elevation-stat-value {
	color: #1a1a1a;
}

body.light-mode .elevation-stat-label {
	color: #777;
}

body.light-mode .trail-map-container {
	background: #fff;
	box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

body.light-mode .trail-info-card {
	background: #fff;
	box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

body.light-mode .trail-info-card-label {
	color: #777;
}

body.light-mode .trail-info-card-value {
	color: #1a1a1a;
}

body.light-mode .trail-navigation {
	background: #ede8e0;
}

body.light-mode .trail-nav-label {
	color: #777;
}

body.light-mode .trail-nav-title {
	color: #1a1a1a;
}

body.light-mode .trail-nav-link:hover {
	background: #fff;
}

body.light-mode .trail-nav-link i {
	color: #b8841c;
}

/* Keep GPX box & CTA green gradient as-is (dark bg = white text stays) */
body.light-mode .gpx-download-info h3 {
	color: #fff;
}

body.light-mode .gpx-download-info p {
	color: rgba(255,255,255,0.7);
}

body.light-mode .trail-cta h2 {
	color: #fff;
}

body.light-mode .trail-cta p {
	color: rgba(255,255,255,0.8);
}
