/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
  background: #0a0a0a;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}
.navbar.scrolled { background: rgba(10, 10, 10, 0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo img { height: 40px; transition: transform 0.3s; }
.nav-logo img:hover { transform: scale(1.05); }
.nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: all 0.3s;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(76,175,80,0.15); }
.nav-cta {
  background: linear-gradient(135deg, #43a047, #2e7d32) !important;
  color: #fff !important; border-radius: 24px !important;
  padding: 8px 20px !important; font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(76,175,80,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: url('../images/hero-blackforest.jpg') center/cover fixed;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(transparent, #0a0a0a);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 20px; }
.hero-logo { width: 180px; margin-bottom: 30px; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); }
.hero-badge {
  display: inline-block; padding: 6px 20px; border-radius: 30px; font-size: 0.85rem;
  background: rgba(76,175,80,0.2); border: 1px solid rgba(76,175,80,0.4);
  color: #a5d6a7; font-family: 'Montserrat', sans-serif; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 12px; text-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.hero h1 .accent {
  background: linear-gradient(135deg, #66bb6a, #a5d6a7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-date { font-size: 1.3rem; color: rgba(255,255,255,0.85); margin-bottom: 8px; font-weight: 300; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #43a047, #2e7d32); color: #fff;
  box-shadow: 0 4px 20px rgba(76,175,80,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(76,175,80,0.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; animation: pulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  display: block; width: 24px; height: 24px; border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5); transform: rotate(45deg);
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-dark { background: #0a0a0a; color: #fff; }
.section-light { background: #f8f9fa; color: #2d2d2d; }
.section-gradient { background: linear-gradient(180deg, #0a0a0a 0%, #1a2f1a 50%, #0a0a0a 100%); color: #fff; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-header .line { width: 60px; height: 3px; margin: 0 auto 20px; background: linear-gradient(90deg, #43a047, #66bb6a); border-radius: 3px; }
.section-header p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-light .section-header p { color: #666; }
.section-light .section-header .line { background: linear-gradient(90deg, #2e7d32, #43a047); }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 45%), 1fr)); gap: 24px; margin-top: 50px; }
.stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px 24px; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #43a047, #66bb6a);
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.stat-card:hover { transform: translateY(-8px); border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.05); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-number { font-size: 3rem; font-weight: 800; color: #66bb6a; font-family: 'Montserrat', sans-serif; }
.stat-unit { font-size: 1rem; color: #43a047; font-weight: 600; }
.stat-label { color: rgba(255,255,255,0.6); margin-top: 8px; font-size: 0.9rem; }

/* ===== TRAILS ===== */
.trails-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr)); gap: 30px; }
.trail-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08); transition: all 0.4s ease; }
.trail-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.trail-card-header { padding: 30px; color: #fff; background: linear-gradient(135deg, #2e7d32, #43a047); }
.trail-card.light .trail-card-header { background: linear-gradient(135deg, #1565c0, #42a5f5); }
.trail-card-header h3 { font-size: 1.8rem; margin-bottom: 4px; }
.trail-card-header .difficulty { font-size: 0.85rem; opacity: 0.8; }
.trail-card-body { padding: 30px; }
.trail-card-body p { color: #555; line-height: 1.7; margin-bottom: 16px; }
.trail-stats { display: flex; gap: 20px; }
.trail-stat { text-align: center; flex: 1; padding: 12px; background: #f5f5f5; border-radius: 12px; }
.trail-stat .val { font-size: 1.4rem; font-weight: 800; color: #2e7d32; font-family: 'Montserrat'; }
.trail-card.light .trail-stat .val { color: #1565c0; }
.trail-stat .lbl { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: 24px; }
.news-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; transition: all 0.4s;
}
.news-card:hover { border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.03); }
.news-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #a5d6a7; }
.news-card p { color: rgba(255,255,255,0.6); line-height: 1.7; }
.news-card .tag {
  display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem;
  background: rgba(76,175,80,0.15); color: #66bb6a; margin-bottom: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== INFO CARDS ===== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.info-card {
  background: #fff; border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s;
  border-left: 4px solid #43a047;
}
.info-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.info-card h3 { font-size: 1.1rem; color: #2e7d32; margin-bottom: 12px; }
.info-card p { color: #555; line-height: 1.7; font-size: 0.95rem; }
.info-card .icon { font-size: 2rem; margin-bottom: 12px; }

/* ===== ERGEBNISSE ===== */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 45%), 1fr)); gap: 16px; }
.result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s; cursor: pointer; display: block;
}
.result-card:hover { transform: translateY(-5px); border-color: #43a047; background: rgba(76,175,80,0.08); }
.result-card .year { font-size: 1.8rem; font-weight: 800; color: #66bb6a; font-family: 'Montserrat'; }
.result-card .desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.result-card .arrow { color: #43a047; margin-top: 8px; font-size: 1.2rem; opacity: 0; transition: opacity 0.3s; }
.result-card:hover .arrow { opacity: 1; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #1b5e20, #2e7d32, #43a047);
  background-size: 200% 200%; animation: gradientShift 6s ease infinite;
  text-align: center; color: #fff; padding: 80px 24px; border-radius: 30px; margin: 0 24px;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white { background: #fff; color: #2e7d32; font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ===== SPONSORS ===== */
.sponsor-main { text-align: center; margin-bottom: 50px; }
.sponsor-main-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.sponsor-main-logo {
  background: #fff; border-radius: 20px; padding: 24px 40px; display: inline-block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); transition: transform 0.3s;
}
.sponsor-main-logo:hover { transform: scale(1.03); }
.sponsor-main-logo img { max-height: 80px; max-width: 300px; object-fit: contain; }
.sponsor-main-sub { display: block; color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 12px; }
.sponsor-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.sponsor-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px; display: flex; align-items: center; justify-content: center;
  transition: all 0.4s; min-height: 100px;
}
.sponsor-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(76,175,80,0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.sponsor-card img { max-height: 60px; max-width: 140px; object-fit: contain; filter: brightness(0.95); transition: filter 0.3s; }
.sponsor-card:hover img { filter: brightness(1.1); }

/* ===== KONTAKT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 30px; }
.contact-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(76,175,80,0.3); }
.contact-card h3 { color: #a5d6a7; margin-bottom: 16px; font-size: 1.1rem; }
.contact-card p { color: rgba(255,255,255,0.6); line-height: 1.8; }
.contact-card a { color: #66bb6a; transition: color 0.3s; }
.contact-card a:hover { color: #a5d6a7; }

/* ===== FOOTER ===== */
footer {
  background: #050505; border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem;
}
footer a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
footer a:hover { color: #66bb6a; }
footer .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; }

/* ===== SECTION ICONS ===== */
.section-icon { margin-bottom: 16px; color: #66bb6a; }
.section-icon.dark { color: #2e7d32; }
.stat-icon { color: #43a047; margin-bottom: 12px; }
.info-icon { color: #2e7d32; margin-bottom: 16px; background: rgba(46,125,50,0.1); width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.trail-card-icon { margin-bottom: 8px; opacity: 0.8; }

/* ===== NEWS LINKS ===== */
.news-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 12px;
  color: #66bb6a; font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.news-link:hover { color: #a5d6a7; transform: translateX(4px); }

/* ===== INFO LINKS ===== */
.info-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 12px;
  color: #2e7d32; font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
  padding: 6px 14px; background: rgba(46,125,50,0.08); border-radius: 8px;
}
.info-link:hover { background: rgba(46,125,50,0.15); transform: translateX(4px); }

/* ===== RESULT BADGE ===== */
.result-badge {
  position: absolute; top: 8px; right: 8px; background: #43a047; color: #fff;
  padding: 2px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.05em;
}
.result-card { position: relative; }

/* ===== CTA ICON ===== */
.cta-icon { margin-bottom: 20px; opacity: 0.8; }

/* ===== TRAIL LINKS ===== */
.trail-link {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px;
  color: #2e7d32; font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
  padding: 8px 16px; background: rgba(46,125,50,0.08); border-radius: 10px;
}
.trail-link:hover { background: rgba(46,125,50,0.15); transform: translateX(4px); }
.trail-link.blue { color: #1565c0; background: rgba(21,101,192,0.08); }
.trail-link.blue:hover { background: rgba(21,101,192,0.15); }

/* ===== KOMOOT EMBEDS ===== */
.komoot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr)); gap: 24px; }
.komoot-wrap { overflow: hidden; }
.komoot-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; }

/* ===== PHOTO GALLERY ===== */
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px;
  max-height: 600px; overflow-y: auto; border-radius: 16px; padding: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  scrollbar-width: thin; scrollbar-color: rgba(76,175,80,0.3) transparent;
}
.photo-grid::-webkit-scrollbar { width: 6px; }
.photo-grid::-webkit-scrollbar-thumb { background: rgba(76,175,80,0.3); border-radius: 3px; }
.photo-thumb {
  aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: pointer;
  transition: all 0.3s; position: relative;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-thumb:hover { transform: scale(1.03); box-shadow: 0 4px 20px rgba(0,0,0,0.4); z-index: 1; }
.photo-thumb:hover img { transform: scale(1.1); }

/* External gallery links */
.ext-gallery-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ext-gallery-link {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px; color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: all 0.3s;
}
.ext-gallery-link:hover { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.3); color: #a5d6a7; transform: translateY(-2px); }
.ext-year { font-weight: 700; color: #66bb6a; font-family: 'Montserrat', sans-serif; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; }
.lb-content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; }
.lb-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-close {
  position: absolute; top: 16px; right: 16px; z-index: 10001;
  background: rgba(255,255,255,0.1); border: none; color: #fff; padding: 12px;
  border-radius: 50%; cursor: pointer; transition: all 0.3s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10001;
  background: rgba(255,255,255,0.1); border: none; color: #fff; padding: 16px 12px;
  border-radius: 50%; cursor: pointer; transition: all 0.3s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(76,175,80,0.3); }
.lb-counter { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 12px; font-family: 'Montserrat', sans-serif; }

/* ===== CONSENT PLACEHOLDER ===== */
.consent-placeholder {
  background: rgba(255,255,255,0.04); border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 20px; min-height: 200px; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.consent-inner { text-align: center; padding: 40px 24px; color: rgba(255,255,255,0.5); }
.consent-inner p { margin: 12px 0 16px; font-size: 0.9rem; max-width: 360px; }
.consent-placeholder iframe { border: 0; border-radius: 20px; width: 100%; }

/* ===== LINK ACCESSIBILITY ===== */
.section-light a:not(.btn):not(.nav-logo):not(.trail-link):not(.nav-cta),
.info-card a { text-decoration: underline; text-underline-offset: 3px; }
.news-link, .info-link { text-decoration: underline; text-underline-offset: 3px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(20,25,20,0.97); border-top: 1px solid rgba(76,175,80,0.2);
  backdrop-filter: blur(20px); padding: 20px 24px;
}
.cookie-banner.show { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-content { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-content p { flex: 1; min-width: 280px; color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.5; margin: 0; }
.cookie-content a { color: #66bb6a; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-small { padding: 8px 18px !important; font-size: 0.85rem !important; }

/* ===== MAP ===== */
.leaflet-container { font-family: 'Open Sans', sans-serif; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,10,0.98); flex-direction: column; padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .hero-logo { width: 120px; }
  section { padding: 60px 0; }
  .trails-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .komoot-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .ext-gallery-grid { flex-direction: column; align-items: stretch; }
  .ext-gallery-link { justify-content: center; }
  .cta-section { margin: 0 12px; border-radius: 20px; padding: 50px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); max-height: 400px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trail-stats { flex-wrap: wrap; }
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .consent-inner { padding: 24px 16px; }
  .lb-prev { left: 8px; padding: 10px 8px; }
  .lb-next { right: 8px; padding: 10px 8px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .results-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
