:root {
--forest-green: #2d5016;
--moss-green: #4a7c2e;
--earth-brown: #5d4037;
--deep-brown: #3e2723;
--stone-grey: #78909c;
--light-grey: #eceff1;
--cream-white: #fafaf8;
--text-light: #ffffff;
--text-dark: #212121;
--accent-gold: #d4a574;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background-color: var(--cream-white);
overflow-x: hidden;
}

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

a {
text-decoration: none;
color: inherit;
}

.main-header {
background: var(--text-light);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.navigation-bar {
padding: 0.5rem 0;
}

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

.brand-logo a {
display: flex;
align-items: center;
gap: 1rem;
}

.brand-logo img {
border-radius: 50%;
object-fit: cover;
}

.brand-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--forest-green);
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
align-items: center;
}

.nav-link {
font-size: 1.05rem;
font-weight: 500;
color: var(--text-dark);
transition: color 0.3s ease;
position: relative;
}

.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gold);
transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
color: var(--forest-green);
}

.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.hamburger-line {
width: 28px;
height: 3px;
background: var(--forest-green);
border-radius: 2px;
transition: all 0.3s ease;
}

.hero-section {
position: relative;
height: 85vh;
min-height: 600px;
overflow: hidden;
}

.hero-image-wrapper {
position: relative;
width: 100%;
height: 100%;
}

.hero-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
color: var(--text-light);
width: 90%;
max-width: 900px;
z-index: 10;
}

.hero-title {
font-size: 4rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
letter-spacing: 1px;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
line-height: 1.8;
}

.hero-cta {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--accent-gold);
color: var(--text-light);
font-size: 1.2rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-cta:hover {
background: var(--forest-green);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

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

.featured-article {
background: var(--text-light);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.content-wrapper {
padding: 3rem;
}

.article-header {
margin-bottom: 2rem;
}

.article-title {
font-size: 2.5rem;
color: var(--earth-brown);
margin-bottom: 1rem;
line-height: 1.3;
}

.article-meta {
display: flex;
gap: 2rem;
flex-wrap: wrap;
color: var(--stone-grey);
}

.meta-item {
display: flex;
align-items: center;
gap: 0.5rem;
}

.icon {
flex-shrink: 0;
}

.article-image-container {
width: 100%;
overflow: hidden;
border-radius: 8px;
margin-bottom: 2.5rem;
}

.article-featured-image {
width: 100%;
height: auto;
transition: transform 0.3s ease;
}

.article-featured-image:hover {
transform: scale(1.02);
}

.article-body {
font-size: 1.1rem;
line-height: 1.9;
color: var(--text-dark);
}

.lead-paragraph {
font-size: 1.25rem;
font-weight: 500;
color: var(--deep-brown);
margin-bottom: 2rem;
line-height: 1.8;
}

.section-heading {
font-size: 1.8rem;
color: var(--forest-green);
margin-top: 2.5rem;
margin-bottom: 1.5rem;
}

.article-body p {
margin-bottom: 1.5rem;
}

.trail-info-box {
background: var(--light-grey);
padding: 1.5rem;
border-radius: 8px;
margin: 1.5rem 0;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1rem;
}

.trail-detail {
font-size: 1rem;
color: var(--text-dark);
}

.image-gallery {
margin: 2rem 0;
border-radius: 8px;
overflow: hidden;
}

.gallery-image {
width: 100%;
height: auto;
}

.safety-tips {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin: 2rem 0;
}

.safety-tip-card {
background: var(--cream-white);
padding: 2rem;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: transform 0.3s ease;
}

.safety-tip-card:hover {
transform: translateY(-5px);
}

.tip-icon {
color: var(--forest-green);
margin-bottom: 1rem;
}

.safety-tip-card h4 {
font-size: 1.3rem;
color: var(--earth-brown);
margin-bottom: 1rem;
}

.safety-tip-card p {
color: var(--text-dark);
line-height: 1.7;
margin: 0;
}

.conclusion-box {
background: linear-gradient(135deg, var(--forest-green) 0%, var(--moss-green) 100%);
color: var(--text-light);
padding: 2.5rem;
border-radius: 10px;
margin-top: 3rem;
}

.conclusion-box h3 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

.conclusion-box p {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1rem;
}

.timeline-section {
background: var(--light-grey);
padding: 5rem 2rem;
}

.section-title {
font-size: 2.5rem;
color: var(--earth-brown);
text-align: center;
margin-bottom: 3rem;
}

.timeline-container {
max-width: 900px;
margin: 0 auto;
position: relative;
}

.timeline-container::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 100%;
background: var(--forest-green);
}

.timeline-item {
display: flex;
gap: 3rem;
margin-bottom: 3rem;
position: relative;
}

.timeline-item:nth-child(odd) {
flex-direction: row;
}

.timeline-item:nth-child(even) {
flex-direction: row-reverse;
}

.timeline-marker {
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 20px;
height: 20px;
background: var(--accent-gold);
border: 4px solid var(--text-light);
border-radius: 50%;
z-index: 10;
}

.timeline-content {
flex: 1;
background: var(--text-light);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-year {
font-size: 2rem;
color: var(--forest-green);
font-weight: 700;
margin-bottom: 0.5rem;
}

.timeline-title {
font-size: 1.3rem;
color: var(--earth-brown);
margin-bottom: 1rem;
}

.timeline-content p {
color: var(--text-dark);
line-height: 1.7;
}

.cta-section {
background: linear-gradient(135deg, var(--earth-brown) 0%, var(--deep-brown) 100%);
color: var(--text-light);
padding: 5rem 2rem;
text-align: center;
}

.cta-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
line-height: 1.8;
}

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

.btn {
padding: 1rem 2.5rem;
font-size: 1.1rem;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
display: inline-block;
}

.btn-primary {
background: var(--accent-gold);
color: var(--text-light);
}

.btn-primary:hover {
background: var(--forest-green);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
background: transparent;
color: var(--text-light);
border: 2px solid var(--text-light);
}

.btn-secondary:hover {
background: var(--text-light);
color: var(--earth-brown);
}

.main-footer {
background: var(--deep-brown);
color: var(--text-light);
padding: 4rem 2rem 2rem;
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-heading {
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--accent-gold);
}

.footer-text {
line-height: 1.8;
margin-bottom: 1.5rem;
}

.footer-logo img {
border-radius: 50%;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 1rem;
display: flex;
align-items: flex-start;
gap: 0.8rem;
}

.footer-icon {
flex-shrink: 0;
margin-top: 3px;
}

.footer-links a {
transition: color 0.3s ease;
}

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

.footer-bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 2rem;
text-align: center;
}

.impressum-section {
margin-bottom: 2rem;
text-align: left;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.impressum-section h3 {
color: var(--accent-gold);
margin-bottom: 1rem;
}

.impressum-section p {
margin-bottom: 0.5rem;
line-height: 1.6;
}

.copyright {
color: rgba(255,255,255,0.7);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-light);
box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
padding: 2rem;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.cookie-banner.show {
transform: translateY(0);
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-title {
font-size: 1.5rem;
color: var(--earth-brown);
margin-bottom: 1rem;
}

.cookie-text {
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.7;
}

.cookie-text a {
color: var(--forest-green);
text-decoration: underline;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.cookie-btn {
padding: 0.8rem 1.8rem;
border: none;
border-radius: 6px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

.cookie-accept {
background: var(--forest-green);
color: var(--text-light);
}

.cookie-accept:hover {
background: var(--moss-green);
}

.cookie-settings {
background: var(--light-grey);
color: var(--text-dark);
}

.cookie-settings:hover {
background: var(--stone-grey);
color: var(--text-light);
}

.cookie-decline {
background: transparent;
color: var(--text-dark);
border: 2px solid var(--stone-grey);
}

.cookie-decline:hover {
background: var(--stone-grey);
color: var(--text-light);
}

.cookie-settings-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 10001;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.cookie-settings-modal.show {
opacity: 1;
visibility: visible;
}

.cookie-modal-content {
background: var(--text-light);
max-width: 600px;
width: 90%;
border-radius: 12px;
overflow: hidden;
max-height: 90vh;
overflow-y: auto;
}

.cookie-modal-header {
padding: 2rem;
border-bottom: 1px solid var(--light-grey);
display: flex;
justify-content: space-between;
align-items: center;
}

.cookie-modal-header h3 {
color: var(--earth-brown);
font-size: 1.5rem;
}

.cookie-modal-close {
background: none;
border: none;
font-size: 2rem;
cursor: pointer;
color: var(--stone-grey);
transition: color 0.3s ease;
}

.cookie-modal-close:hover {
color: var(--text-dark);
}

.cookie-modal-body {
padding: 2rem;
}

.cookie-category {
margin-bottom: 2rem;
}

.cookie-category-header {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 0.8rem;
}

.cookie-switch {
position: relative;
display: inline-block;
width: 50px;
height: 26px;
}

.cookie-switch input {
opacity: 0;
width: 0;
height: 0;
}

.cookie-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--stone-grey);
transition: 0.3s;
border-radius: 26px;
}

.cookie-slider::before {
position: absolute;
content: '';
height: 20px;
width: 20px;
left: 3px;
bottom: 3px;
background: white;
transition: 0.3s;
border-radius: 50%;
}

input:checked + .cookie-slider {
background: var(--forest-green);
}

input:checked + .cookie-slider::before {
transform: translateX(24px);
}

input:disabled + .cookie-slider {
opacity: 0.5;
cursor: not-allowed;
}

.cookie-category h4 {
color: var(--earth-brown);
font-size: 1.2rem;
}

.cookie-category p {
color: var(--text-dark);
line-height: 1.7;
}

.cookie-modal-footer {
padding: 2rem;
border-top: 1px solid var(--light-grey);
display: flex;
justify-content: flex-end;
}

@media (max-width: 992px) {
.nav-menu {
position: fixed;
left: -100%;
top: 80px;
flex-direction: column;
background: var(--text-light);
width: 100%;
text-align: center;
transition: left 0.3s ease;
box-shadow: 0 10px 27px rgba(0,0,0,0.1);
padding: 2rem 0;
}

.nav-menu.active {
left: 0;
}

.mobile-toggle {
display: flex;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-toggle.active .hamburger-line:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.timeline-container::before {
left: 20px;
}

.timeline-item,
.timeline-item:nth-child(even) {
flex-direction: row;
padding-left: 50px;
}

.timeline-marker {
left: 20px;
transform: translateX(0);
}

.timeline-content {
flex: 1;
}
}

@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}

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

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

.content-wrapper {
padding: 2rem;
}

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

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

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

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

.cookie-buttons {
flex-direction: column;
}

.cookie-btn {
width: 100%;
}
}

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

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

.brand-text {
font-size: 1.2rem;
}

.article-title {
font-size: 1.6rem;
}

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