/* --------------------------------------------------------------
   CSS RESET & NORMALIZE
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #234E5E;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

a {
  color: #234E5E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A9C98B;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button, [type=button], [type=submit] {
  cursor: pointer;
}

::selection {
  background: #A9C98B;
  color: #234E5E;
}

/* --------------------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #234E5E;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.subheadline {
  font-weight: 400;
  font-size: 1.125rem;
  color: #5d6c74;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

p, ul, ol {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #234E5E;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: #234E5E;
}
small {
  font-size: 0.85rem;
  color: #7C96A2;
}

.note, .confirmation-message {
  color: #6A858F;
  font-size: 0.95rem;
  margin-top: 14px;
}

/* --------------------------------------------------------------
   CONTAINERS, LAYOUT
-------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Section spacing pattern */
.section,
.hero,
.features,
.about,
.services,
.testimonials,
.cta,
.about-story,
.usp-features,
.route-highlights,
.safety-features,
.safety-services,
.tip-features,
.tip-testimonials,
.gear-features,
.equipment-service,
.contact,
.confirmation,
.legal,
.so-finden-sie-uns,
.route-testimonials,
.route-category-box,
.contact-hero,
.contact-info {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .about,
  .services,
  .testimonials,
  .cta,
  .about-story,
  .usp-features,
  .route-highlights,
  .safety-features,
  .safety-services,
  .tip-features,
  .tip-testimonials,
  .gear-features,
  .equipment-service,
  .contact,
  .confirmation,
  .legal,
  .so-finden-sie-uns,
  .route-testimonials,
  .route-category-box,
  .contact-hero,
  .contact-info {
    padding: 24px 0 0 0;
    margin-bottom: 38px;
  }
}

.grid, .content-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-wrapper, .grid, .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* --------------------------------------------------------------
   HEADER & MAIN NAVIGATION
-------------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #F0F4F6;
  box-shadow: 0 2px 12px rgba(35, 78, 94, 0.04);
  z-index: 1002;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 74px;
}
.logo img {
  display: block;
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #234E5E;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #A9C98B;
  transition: width 0.2s;
  position: absolute;
  bottom: -2px; left: 0;
  border-radius: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A9C98B;
}

.cta.primary {
  background: #234E5E;
  color: #fff;
  border-radius: 26px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 32px rgba(35,78,94,0.07);
  border: 1px solid #234E5E;
  margin-left: 18px;
  display: inline-block;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A9C98B;
  color: #234E5E;
  border: 1px solid #A9C98B;
  box-shadow: 0 6px 24px rgba(169, 201, 139, 0.20);
}
.cta.secondary {
  background: #fff;
  color: #234E5E;
  border: 1px solid #A9C98B;
  padding: 9px 22px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(169, 201, 139, 0.04);
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A9C98B;
  color: #fff;
  border: 1px solid #A9C98B;
}

@media (max-width: 1020px) {
  header .container {
    gap: 16px;
  }
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  header .container {
    gap: 8px;
  }
  .cta.primary { margin-left: 0; }
}
@media (max-width: 768px) {
  header .container {
    height: 56px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* --------------------------------------------------------------
   MOBILE MENU
-------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #A9C98B;
  border: none;
  border-radius: 6px;
  color: #234E5E;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #234E5E;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 24px rgba(35,78,94,0.12);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 32px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #A9C98B;
  color: #234E5E;
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  transition: background 0.18s, color 0.18s;
  z-index: 1300;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #234E5E;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #234E5E;
  padding: 10px 0 10px 0;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A9C98B33;
  color: #234E5E;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --------------------------------------------------------------
   HERO STYLE
-------------------------------------------------------------- */
.hero {
  background: #FAF8F5;
  padding-top: 64px;
  padding-bottom: 64px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 34px rgba(35,78,94,0.04);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1, .hero h2 {
  color: #234E5E;
}
.hero .cta.primary {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .hero { padding-top: 32px; padding-bottom: 32px; }
}

/* --------------------------------------------------------------
   CARD, FEATURE, & BOX STYLES
-------------------------------------------------------------- */
.feature-box, .service-box, .route-category-box, .tip-card, .gear-box, .safety-box, .featured-route, .testimonial-card, .tip-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #F0F4F6;
  box-shadow: 0 2px 20px rgba(35,78,94,0.06);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-box img, .route-category-box img, .tip-card img, .gear-box img, .safety-box img, .featured-route img, .tip-box img {
  height: 36px;
  width: 36px;
  margin-bottom: 8px;
}
.feature-box:hover, .service-box:hover, .route-category-box:hover, .tip-card:hover, .gear-box:hover,
.safety-box:hover, .featured-route:hover, .testimonial-card:hover, .tip-box:hover {
  box-shadow: 0 8px 36px rgba(35, 78, 94, 0.10);
  transform: translateY(-2px) scale(1.015);
}

.badge {
  display: inline-block;
  background: #A9C98B;
  color: #234E5E;
  font-size: 0.9rem;
  padding: 3px 12px;
  border-radius: 14px;
  font-weight: 600;
  margin-right: 8px;
  vertical-align: middle;
}

/* Testimonial Card & Review Styling */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #FAF8F5;
  color: #234E5E;
  border: 1px solid #E8ECF0;
  border-radius: 14px;
  box-shadow: 0 2.5px 21px rgba(35,78,94,0.07);
}
.testimonial-card p {
  color: #234E5E;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #7C96A2;
  font-style: italic;
  margin-bottom: 0;
}

/* --------------------------------------------------------------
   GENERAL COMPONENTS & UTILITY CLASSES
-------------------------------------------------------------- */
.facts-list, .values-list, .brand-list, .timeline, .quick-tips, .directions-list, .nearby-list, .next-steps ul {
  list-style: none;
  padding-left: 0;
}
.facts-list li, .values-list li, .brand-list li, .timeline li, .quick-tips li, .directions-list li, .nearby-list li, .next-steps ul li {
  margin-bottom: 10px;
  padding-left: 0;
}
.quick-tips li img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* Recommendation, Tip and Download Boxes */
.tip-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.tip-box {
  background: #FAF8F5;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 1rem;
  color: #234E5E;
  border: 1px solid #E9EDE2;
  box-shadow: 0 2px 12px rgba(169,201,139,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.download-link {
  color: #234E5E;
  font-weight: 600;
  border-bottom: 1px solid #A9C98B44;
  transition: color 0.15s, border 0.15s;
}
.download-link:hover, .download-link:focus {
  color: #A9C98B;
  border-bottom: 1px solid #A9C98B;
}

.map-placeholder {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7996A4;
  background: #FAF8F5;
  border-radius: 6px;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 90px;
}

@media (max-width: 768px) {
  .feature-box, .service-box, .route-category-box, .tip-card, .gear-box, .safety-box, .featured-route, .testimonial-card, .tip-box {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
  .tip-boxes {
    flex-direction: column;
    gap: 12px;
  }
}

/* --------------------------------------------------------------
   FORMS & CONTACT
-------------------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}
.contact-info img {
  height: 22px;
  width: 22px;
  margin-right: 4px;
  border-radius: 0;
}

.confirmation-message {
  margin-bottom: 16px;
  margin-top: 0;
  color: #7C96A2;
  font-size: 1.08rem;
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
footer {
  background: #FAF8F5;
  color: #234E5E;
  padding: 38px 0 18px 0;
  margin-top: 68px;
  border-top: 1px solid #F0F4F6;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: 100%;
}
.logo-footer img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #234E5E;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.85;
  border-radius: 6px;
  padding: 4px 12px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A9C98B44;
  color: #234E5E;
}
.branding-credits {
  text-align: center;
}
.branding-credits small {
  color: #7C96A2;
  margin: 0 6px;
}

@media (max-width: 768px) {
  footer {
    padding: 24px 0 10px 0;
    margin-top: 36px;
  }
  .footer-nav {
    gap: 8px;
    font-size: 0.97rem;
  }
}

/* --------------------------------------------------------------
   MODALS & OVERLAYS
-------------------------------------------------------------- */
.modal {
  position: fixed;
  left: 0; top: 0;
  z-index: 20010;
  width: 100vw;
  height: 100vh;
  background: rgba(34,78,94,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 6px 34px rgba(35,78,94,0.08);
  min-width: 286px;
  max-width: 94vw;
  max-height: 78vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 16px; top: 16px;
  background: #A9C98B;
  color: #234E5E;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.19s, color 0.19s;
}
.modal-close:hover, .modal-close:focus {
  background: #234E5E;
  color: #fff;
}

/* --------------------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20050;
  background: #FAF8F5;
  box-shadow: 0 -2px 24px rgba(35,78,94,0.08);
  border-top: 1px solid #A9C98B22;
  padding: 22px 18px 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  animation: cookieAppear 0.62s both;
}
@keyframes cookieAppear {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner__text {
  font-size: 0.98rem;
  color: #234E5E;
  max-width: 440px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  border: 1px solid #234E5E;
  padding: 7px 20px;
  transition: background 0.17s, color 0.14s, border 0.17s;
  color: #234E5E;
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,78,94,0.03);
}
.cookie-btn.accept {
  background: #234E5E;
  color: #fff;
  border: 1px solid #234E5E;
}
.cookie-btn.reject {
  border: 1px solid #A9C98B;
  background: #A9C98B22;
  color: #234E5E;
}
.cookie-btn.settings {
  border: 1px solid #E8ECF0;
  background: #fff;
  color: #234E5E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A9C98B;
  border: 1px solid #A9C98B;
  color: #234E5E;
}

@media (max-width:520px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 10px 20px 10px;
  }
  .cookie-banner__actions { width: 100%; gap: 7px; }
  .cookie-btn { width: 100%; text-align: left; }
}

/* Cookie Preferences Modal */
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 2px 0 0 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #FAF8F5;
  padding: 12px 14px;
  border-radius: 7px;
  border: 1px solid #E8ECF0;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #A9C98B;
}
.cookie-category .label {
  font-size: 1rem;
  color: #234E5E;
  font-weight: 500;
}
.cookie-category .desc {
  color: #7C96A2;
  font-size: 0.92rem;
  margin-left: 10px;
}
.cookie-category.essential {
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width:540px) {
  .modal-content {
    padding: 20px 6vw;
  }
}

/* --------------------------------------------------------------
   ANIMATIONS
-------------------------------------------------------------- */
.cta.primary, .cta.secondary, .cookie-btn, .modal-close, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s, filter 0.2s, transform 0.2s;
}
.card-container > * {
  transition: box-shadow 0.2s, transform 0.14s;
}
.card-container > *:hover {
  box-shadow: 0 10px 24px rgba(35,78,94,0.10);
  transform: translateY(-2px) scale(1.008);
}

/* --------------------------------------------------------------
   RESPONSIVE HELPERS
-------------------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.22rem; }
  .hero { padding-top: 28px; padding-bottom: 28px; }
}
@media (max-width: 600px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .hero .content-wrapper { gap: 10px; }
  h1 { font-size: 1.25rem; }
}

/* Utility */
._sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* End of CSS */
