/* =======================
   RESET & BASE STYLES
   ======================= */
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, font, 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, hgroup, main, 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 { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F7F8FA;
  color: #243A4B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; border-radius: 8px; }
a { color: #243A4B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F9D785; outline: none; }
ul, ol {list-style: none;}
strong, b { font-weight: 700; }


/* =======================
   BRAND TYPOGRAPHY
   ======================= */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #243A4B;
  margin-bottom: 20px;
  text-shadow: 2px 6px #F9D785, 0 0 1px #8BAAA9, 0 2px 2px #fff0;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #243A4B;
  margin-bottom: 24px;
  letter-spacing: 0.1rem;
  position: relative;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #8BAAA9;
  letter-spacing: 0.05rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.2rem;
  color: #243A4B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  max-width: 540px;
}
p {
  margin-bottom: 18px;
  color: #243A4B;
}
small { font-size: 0.92rem; color: #8BAAA9; font-style: italic; }


/* =======================
   CREATIVE ARTISTIC COLORS
   ======================= */
:root {
  --primary: #243A4B;
  --secondary: #8BAAA9;
  --accent: #F9D785;
  --background: #F7F8FA;
  --cta: #F9D785;
  --white: #fff;
  --black: #181A1B;
  --shadow: rgba(36, 58, 75, 0.07);
  --card-shadow: rgba(36,58,75,0.13);
}


/* =======================
   CONTAINERS & FLEX LAYOUTS
   ======================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container,
.features-grid,
.route-cards,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 var(--card-shadow);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: transform .12s, box-shadow .2s;
  min-width: 270px;
  flex: 1 1 270px;
}
.card:hover {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 8px 42px 0 rgba(36,58,75,0.17);
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 4px 24px 0 var(--shadow);
  max-width: 540px;
  min-width: 280px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 var(--card-shadow);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-content p {
  color: var(--primary);
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-author {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-grid > div,
.route-cards > div {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  transition: transform .14s, box-shadow .14s;
}
.features-grid > div:hover, .route-cards > div:hover {
  transform: scale(1.03) rotate(-1.5deg);
  background: var(--accent);
  box-shadow: 0 12px 44px 0 var(--card-shadow);
}
.features-grid img, .route-cards img {
  margin-bottom: 14px;
  width: 48px;
  height: 48px;
}

.route-highlights, .route-durations, .tipps-overview {
  margin: 20px 0 12px 0;
  padding: 14px 16px;
  background: var(--accent);
  border-radius: 10px;
  color: var(--primary);
  font-weight: 600;
}
.insidertipps, .faq-list, .location-highlights {
  margin-top: 18px;
  background: #fffbe6;
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--primary);
}
.insidertipps ul, .faq-list ul, .location-highlights ul {
  margin-top: 5px;
  margin-left: 18px;
  list-style-type: disc;
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 14px 0 var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  height: 74px;
  padding: 0 20px;
}
.main-nav .logo {
  margin-right: 34px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 18px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:not(.logo):hover {
  background: var(--accent);
  color: var(--primary);
}
.cta-btn {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 28px;
  border: none;
  box-shadow: 0 2px 8px 0 var(--shadow);
  transition: background 0.19s, box-shadow 0.18s, color 0.15s, transform 0.13s;
  margin-left: 20px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary) !important;
  color: var(--accent) !important;
  box-shadow: 0 4px 18px 0 rgba(249, 215, 133, 0.14);
  transform: scale(1.07) rotate(-2deg);
}
/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  padding: 8px 14px;
  border-radius: 50%;
  position: absolute;
  right: 26px;
  top: 16px;
  cursor: pointer;
  z-index: 2101;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 10px 0 var(--shadow);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36,58,75,0.97);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 42px 0 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.7,.1,.34,1.4);
  z-index: 3000;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 24px 4px rgba(36,58,75,.17);
}
.mobile-menu-close {
  margin-top: 38px;
  margin-bottom: 36px;
  font-size: 2rem;
  background: transparent;
  color: var(--accent);
  border: none;
  align-self: flex-end;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 50%;
  transition: background 0.16s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.26rem;
  color: var(--accent);
  letter-spacing: 1px;
  font-weight: 600;
  padding: 16px 0 16px 18px;
  border-radius: 12px;
  margin-bottom: 2px;
  transition: background 0.13s, color 0.12s, transform 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(6px) scale(1.04);
}

/* Hide desktop nav on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .mobile-menu {
    padding-left: 6vw;
    padding-right: 11vw;
  }
}

/* =======================
   HERO SECTION
   ======================= */
.hero {
  min-height: 380px;
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #F9D785 10%, #8BAAA9 86%, #F7F8FA 100%);
  border-radius: 0 0 42px 42px / 0 0 16px 38px;
  box-shadow: 0 6px 40px 0 var(--shadow);
}
.hero .container { display: flex; flex-direction: column; align-items: flex-start; }
.hero .content-wrapper > * {
  margin-bottom: 18px;
}
.hero .cta-btn {
  margin-top: 12px;
}
.section.hero {
  padding-left: 0; padding-right: 0;
}
@media (max-width: 800px) {
  .hero { padding: 34px 0 20px 0; }
}
@media (max-width: 600px) {
  .hero { min-height: 270px; border-radius: 0 0 22px 22px/0 0 11px 19px; }
}

/* =======================
   FEATURES & CARDS
   ======================= */
.features {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features-grid {
  margin-bottom: 22px;
}
.features-grid > div {
  min-width: 200px;
}
.route-cards {
  margin-top: 16px;
  margin-bottom: 10px;
}
.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.features ul li,
.services ul li {
  background: var(--white);
  border-radius: 13px;
  padding: 22px 18px;
  margin-bottom: 12px;
  color: var(--primary);
  box-shadow: 0 2px 9px 0 var(--shadow);
  font-family: 'Roboto', Arial, sans-serif;
  flex: 1 1 220px;
  min-width: 170px;
  transition: background 0.11s, box-shadow 0.14s, transform 0.13s;
}
.features ul li:hover, .services ul li:hover {
  background: var(--accent);
  box-shadow: 0 8px 32px 0 var(--shadow);
  transform: translateY(-2px) scale(1.02);
}


/* =======================
   CONTACT DETAILS & MAP
   ======================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}
.contact .map {
  margin-top: 22px;
  max-width: 380px;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 var(--shadow);
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: var(--primary);
  color: var(--accent);
  padding-top: 36px; padding-bottom: 26px;
}
footer section {
  padding-top: 0; padding-bottom: 0;
}
footer .container {
  padding-left: 14px;
  padding-right: 14px;
}
footer .content-wrapper {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand-info img {
  width: 54px; height: 54px; background: var(--accent); border-radius: 50%; box-shadow: 0 2px 9px 0 var(--shadow);
  margin-right: 5px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: var(--accent);
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s, text-decoration 0.11s;
  text-decoration: underline dashed transparent;
}
.footer-menu a:hover {
  color: var(--secondary);
  text-decoration: underline dashed var(--accent);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--accent);
  font-size: 1rem;
  max-width: 320px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}

/* =======================
   PRIVACY, TOS, ETC.
   ======================= */
.privacy, .gdpr, .cookies, .terms {
  margin-bottom: 60px;
  padding: 40px 10px;
  background: var(--accent);
  border-radius: 20px 20px 32px 12px;
  box-shadow: 0 2px 30px 0 var(--shadow);
}
.privacy h1, .gdpr h1, .cookies h1, .terms h1 {
  color: var(--primary);
  margin-bottom: 18px;
}
.privacy ul, .gdpr ul, .cookies ul, .terms ul {
  margin-left: 22px;
  margin-top: 10px;
  margin-bottom: 20px;
  list-style: disc inside;
}

/* =======================
   COOKIE BANNER/MODAL
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--primary);
  color: var(--accent);
  width: 100vw;
  z-index: 2200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 16px 32px 14px 18px;
  box-shadow: 0 -2px 24px 0 var(--shadow);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookie-slide-in 0.9s cubic-bezier(.6,-0.36,.39,1.45);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  92% { transform: translateY(-12px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__content {
  flex: 1;
  font-size: 1.08rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 1;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  padding: 9px 24px;
  margin: 0 2px;
  transition: background 0.11s, color 0.13s, box-shadow 0.13s, transform 0.13s;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 1px 6px 0 var(--shadow);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--white);
  outline: none;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.reject-btn {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.reject-btn:hover {
  background: #f99b85;
  color: var(--white);
}
.cookie-btn.settings-btn {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent);
}
.cookie-btn.settings-btn:hover {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(36, 58, 75, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  animation: fadein-ccmodal 0.35s cubic-bezier(.7,0,.23,1.12);
}
@keyframes fadein-ccmodal {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal__content {
  background: var(--white);
  border-radius: 18px;
  padding: 38px 22px 24px 22px;
  box-shadow: 0 6px 48px 0 var(--card-shadow);
  min-width: 320px;
  max-width: 98vw;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookie-modal-content-in 0.7s cubic-bezier(.64,-0.41,.19,1.51);
}
@keyframes cookie-modal-content-in {
  0% { transform: translateY(44px) scale(.92) rotate(-2deg); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 12px;
}
.cookie-toggle {
  width: 32px;
  height: 17px;
  background: var(--secondary);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 2.5px;
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.13s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  transform: translateX(12px);
  background: var(--accent);
}
/* Always enabled for essential cookies */
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal__buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 9px;
  border-radius: 50%;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal__close:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Example add to hide modal/banner */
.cookie-modal.closed, .cookie-banner.closed { display: none !important; }

/* =======================
   RESPONSIVE ADJUSTMENTS
   ======================= */
@media (max-width: 1024px) {
  .footer .content-wrapper { flex-direction: column; align-items: flex-start; }
  .brand-info { margin-bottom: 18px; }
}
@media (max-width: 900px) {
  .features-grid, .route-cards, .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 800px) {
  .content-wrapper { gap: 18px; }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 700px) {
  .footer .content-wrapper,
  .brand-info, .contact-info, .footer-menu {
    flex-direction: column !important;
    gap: 11px !important;
    align-items: flex-start !important;
  }
  .brand-info { margin-bottom: 14px; }
}
@media (max-width: 700px) {
  .route-highlights, .route-durations, .tipps-overview {
    font-size: 0.95rem;
    padding: 11px 9px;
  }
  .features-grid img, .route-cards img { width: 40px; height: 40px; }
}
@media (max-width: 550px) {
  .brand-info img { width:36px; height:36px; }
  .footer-menu a { font-size: 0.98rem; }
  .container { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column!important;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 15px; }
  .card-container, .features-grid, .card-grid { flex-direction: column; gap: 15px; }
  .testimonial-card, .features-grid > div, .route-cards > div, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* =======================
   MICRO-INTERACTIONS & EFFECTS
   ======================= */
button, .cta-btn, .cookie-btn {
  cursor: pointer;
  outline: none;
  transition: box-shadow 0.17s, background 0.14s, color 0.13s, transform 0.11s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* Artisic 'paint' underlines for H2 (creative detail) */
h2::after {
  content: '';
  display: block;
  width: 66px;
  height: 9px;
  background: var(--accent);
  border-radius: 14px 44px 10px 8px;
  margin-top: 8px;
  margin-bottom: 5px;
  opacity: 0.95;
  mix-blend-mode: multiply;
}

/* =======================
   UNIQUE, ARTISTIC TOUCHES
   ======================= */
/* Slight skew on some cards for 'creative' look */
.features-grid > div:nth-child(2) {
  transform: rotate(-2deg);
}
.features-grid > div:nth-child(3) {
  transform: rotate(1.6deg);
}
.route-cards > div:nth-child(2) {
  transform: rotate(1.1deg);
}
.route-cards > div:nth-child(3) {
  transform: rotate(-2deg);
}

/* Small color splashes for icons */
.features-grid img, .route-cards img {
  filter: drop-shadow(0 3px 5px #8BAAA9aa) brightness(1.08);
  background: var(--accent);
  border-radius: 13px;
  padding: 6px;
}

/* Artistic font fallback */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800|Roboto:400,500,700&display=swap');

/* =======================
   END OF STYLE.CSS
   ======================= */