/* =========================
   RESET & BASE 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, main, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  background: #F4F9F4;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #215353;
  background: #F4F9F4;
  line-height: 1.55;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}
a {
  color: #215353;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #C2B280;
  text-decoration: underline;
  outline: none;
}
ol, ul {
  list-style: none;
  padding-left: 0;
}
button, input, textarea, select {
  font: inherit;
  outline: none;
}

/* =========================
   BRAND FONTS & COLORS
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --color-primary: #215353;
  --color-secondary: #C2B280;
  --color-accent: #F4F9F4;
  --color-bright: #11C3FF;
  --color-pink: #FFB1C3;
  --color-orange: #FFE066;
  --color-green: #65D6AD;
  --color-card-bg: #fff4ec;
  --color-neutral: #fff;
  --color-gray: #E9ECEF;
  --color-shadow: rgba(33, 83, 83, 0.07);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* Responsive text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--color-neutral);
  box-shadow: 0 3px 10px -5px var(--color-shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
header img {
  height: 46px;
  margin-right: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 15px;
  font-size: 1.05rem;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  background: none;
}
nav a:hover, nav a:focus {
  color: var(--color-bright);
  background: var(--color-gray);
}
.cta.primary {
  font-family: var(--font-display);
  background: var(--color-primary);
  color: var(--color-neutral);
  font-size: 1.07rem;
  font-weight: 800;
  border-radius: 100px;
  padding: 12px 32px;
  letter-spacing: 0.03em;
  margin-left: 16px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(17, 195, 255, 0.08);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: background 0.22s, color 0.18s, transform 0.11s;
  outline: none;
  /* playful bouncy effect */
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-bright);
  color: var(--color-primary);
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 24px 0 rgba(33,83,83,0.08);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 5001;
  background: var(--color-primary);
  color: var(--color-neutral);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 6px 24px #C2B28020;
  transition: background 0.2s, transform 0.14s;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-bright);
  color: var(--color-primary);
  outline: none;
  transform: scale(1.12);
}
@media (max-width: 1020px) {
  nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =========================
   MOBILE NAVIGATION MENU
   ========================= */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9000;
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.6,0,0.3,1);
  box-shadow: 4px 0 32px 0 var(--color-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-bright);
  color: var(--color-primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  margin: 26px 18px 18px 0;
  cursor: pointer;
  box-shadow: 0 2px 16px #fff4ec60;
  transition: background 0.16s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-pink);
  color: var(--color-primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 30px;
  padding: 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 13px 0 11px 0;
  color: var(--color-neutral);
  width: 100%;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s, transform 0.11s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-bright);
  color: var(--color-primary);
  transform: translateX(8px) scale(1.02) skew(-2deg,1deg);
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =========================
   PAGE TITLES & TYPOGRAPHY
   ========================= */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.22;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-bright);
  margin-bottom: 8px;
  line-height: 1.25;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}
h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.subtitle {
  font-family: var(--font-body);
  color: var(--color-secondary);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 18px;
}
p, ul, ol, li {
  font-family: var(--font-body);
  color: #215353;
  font-size: 1.07rem;
}
blockquote {
  border-left: 5px solid var(--color-bright);
  background: #F4F9F4;
  padding: 16px 24px;
  font-style: italic;
  color: #215353;
  font-size: 1.1rem;
  border-radius: 18px 0 30px 18px;
  margin-bottom: 16px;
  box-shadow: 2px 4px 30px 0 #c2b28014;
}

/* =========================
   BUTTONS
   ========================= */
button, .cta, .cta.primary {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(33,83,83,0.07);
  padding: 11px 30px;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.18s, box-shadow 0.22s, transform 0.1s;
  outline: none;
}
/* Accent secondary button */
.cta.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--color-orange);
  color: var(--color-primary);
  transform: scale(1.05) rotate(-1deg);
}
/* Icon button playful */
.cta.icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-green);
  color: var(--color-primary);
}
.cta.icon:hover {
  background: var(--color-pink);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.06);
}

/* =========================
   FLEXBOX LAYOUT PATTERNS
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 6px 18px 0 var(--color-shadow);
  padding: 26px 22px;
  min-width: 260px;
  flex: 1 1 250px;
  transition: transform 0.12s, box-shadow 0.14s;
}
.card:hover, .card:focus {
  transform: translateY(-6px) rotate(-0.5deg) scale(1.025);
  box-shadow: 0 14px 40px 0 #21535314;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

/******  Feature Grid (index) ******/
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid > div {
  background: var(--color-neutral);
  border-radius: 18px;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 4px 18px 0 var(--color-shadow);
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 340px;
  transition: transform 0.12s, box-shadow 0.12s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65em;
  margin-bottom: 18px;
  border-bottom: 6px solid var(--color-bright);
  position: relative;
  overflow: visible;
  cursor: pointer;
}
.feature-grid > div:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 11px 32px 0 #11C3FF23;
  border-bottom: 7px solid var(--color-green);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px #11C3FF14);
}

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

/****** Testimonial Cards ******/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: var(--color-neutral);
  border-radius: 18px;
  box-shadow: 0 7px 28px 0 #21535324;
  font-family: var(--font-body);
  font-size: 1.13rem;
  color: #215353;
  position: relative;
  transition: box-shadow 0.16s, transform 0.12s;
}
.testimonial-card p {
  color: #215353;
  font-size: 1.13rem;
  margin-right: 10px;
}
.testimonial-card span {
  color: var(--color-bright);
  font-weight: bold;
  margin-left: 7px;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 16px 40px 0 #11C3FF40;
  transform: scale(1.02) rotate(-1deg);
}

/***** Service List (touren-erlebnisse) *****/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 18px 0;
}
.service-item {
  background: #FFF9E3;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 #C2B28033;
  padding: 18px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.1s;
  border-bottom: 5px solid var(--color-green);
}
.service-item:hover {
  box-shadow: 0 9px 30px 0 #65D6AD36;
  transform: translateY(-7px) scale(1.025) rotate(0.5deg);
}
.service-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.price {
  background: var(--color-bright);
  color: var(--color-primary);
  border-radius: 14px;
  padding: 5px 11px;
  font-size: 1.02rem;
  font-weight: bold;
  margin-left: 16px;
}

/* FAQ-STYLES besucherinfo.html */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list h3 {
  color: var(--color-bright);
  margin-top: 15px;
  font-size: 1.15rem;
}
.faq-list p {
  margin-top: 3px;
  color: #215353;
  font-size: 1.03rem;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--color-primary);
  color: var(--color-neutral);
  padding: 36px 0 15px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 13px;
}
.footer-nav a {
  color: var(--color-neutral);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 14px;
  background: none;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:focus, .footer-nav a:hover {
  background: var(--color-bright);
  color: var(--color-primary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.footer-brand img {
  height: 28px;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 900px) {
  header .container {
    padding: 0 12px;
    gap: 14px;
    height: 68px;
  }
  h1 {
    font-size: 2.04rem;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .feature-grid > div, .service-item {
    max-width: 100%;
    min-width: 90%;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.49rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .container {
    padding: 0 6px;
  }
  .footer-nav {
    font-size: 0.99rem;
    gap: 9px;
  }
  .footer-brand {
    font-size: 0.99rem;
  }
}

/* =========================
   MICRO-INTERACTIONS & ANIMATIONS
   ========================= */
/* Card bounce-in animation */
@keyframes playfulCard {
  0% { opacity: 0; transform: scale(0.85) rotate(-2.5deg); }
  70% { opacity: 1; transform: scale(1.05) rotate(1.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.card, .feature-grid > div, .service-item, .testimonial-card {
  animation: playfulCard 0.7s cubic-bezier(0.77,0.08,0.37,1.06) both;
}

/* Subtle hover wiggle for playful dynamism */
nav a:hover, .feature-grid > div:hover, .service-item:hover, .cta.primary:hover {
  animation: wiggle 0.18s 1 linear;
}
@keyframes wiggle {
  15% { transform: rotate(-2deg); }
  33% { transform: rotate(1.5deg) scale(1.02); }
  66% { transform: rotate(-1deg) scale(1.02); }
  100% { transform: none; }
}

/* =========================
   COOKIE CONSENT BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #215353;
  color: #fff;
  z-index: 9010;
  padding: 22px 30px 16px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 -3px 28px #21535318;
  font-family: var(--font-body);
  animation: showCookieBanner 0.65s cubic-bezier(0.7,0,0.4,1);
}
@keyframes showCookieBanner {
  from { opacity: 0; transform: translateY(84px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  font-size: 1.06rem;
  max-width: 580px;
  color: #fff;
}
.cookie-banner__buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 76px;
  border: none;
  padding: 10px 26px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px #C2B28011;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, transform 0.09s;
}
.cookie-btn.accept {
  background: #65D6AD;
  color: #215353;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #11C3FF;
  color: #215353;
}
.cookie-btn.reject {
  background: #FFB1C3;
  color: #215353;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFE066;
  color: #215353;
}
.cookie-btn.settings {
  background: #FFF4EC;
  color: #215353;
  border: 2px solid #C2B280;
  font-weight: 700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E9ECEF;
  border-color: #11C3FF;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 19px 10px 9px 10px;
    gap: 18px;
  }
  .cookie-banner__buttons {
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,83,83,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  animation: cookieModalIn 0.55s cubic-bezier(0.67,0,0.43,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 16px 64px 0 #21535360;
  padding: 40px 28px 28px 28px;
  width: 98vw;
  max-width: 470px;
  font-family: var(--font-body);
  color: #215353;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalPopIn 0.39s cubic-bezier(0.6,0,0.2,1);
}
@keyframes cookieModalPopIn {
  from { transform: scale(0.84); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.47rem;
  margin-bottom: 11px;
  color: var(--color-primary);
}
.cookie-modal .category {
  font-weight: 700;
  font-size: 1.09rem;
  color: var(--color-bright);
  margin-bottom: 2px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  padding: 9px 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 21px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #215353;
  cursor: pointer;
  transition: color 0.1s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-bright);
}

/* =========================
   MISC CLASSES
   ========================= */
.team-bio {
  background: #F0FDFF;
  border-left: 5px solid var(--color-bright);
  border-radius: 13px;
  font-size: 1.07rem;
  padding: 15px 20px 14px 18px;
  margin-bottom: 13px;
}
.info {
  background: #F6FFF6;
  border-left: 5px solid var(--color-green);
  border-radius: 10px;
  padding: 11px 19px 11px 17px;
  margin-top: 10px;
  margin-bottom: 14px;
  color: #215353;
  font-size: 1.07rem;
}

ul {
  margin-bottom: 11px;
  margin-top: 6px;
  margin-left: 1.2em;
  list-style: disc inside;
}
ul li {
  margin-bottom: 7px;
  padding-left: 2px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}

/****** Input styles, if ever needed ******/
input, textarea {
  border: 2px solid #E9ECEF;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  margin-bottom: 9px;
  transition: border-color 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--color-bright);
}

/***** Hide outline on mouse but not keyboard navigation *****/
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px dashed var(--color-bright);
  outline-offset: 2px;
}

/* =========================
   PLAYFUL VISUAL DECOR
   ========================= */
/* - Subtle colored shadows for playfulness */
.card, .feature-grid > div, .service-item, .testimonial-card {
  box-shadow: 0 4px 20px 0 #11C3FF22;
}

/* Fun, bouncy hover on cards */
.card:hover,
.feature-grid > div:hover,
.service-item:hover {
  background: #F0FDFF;
  border-bottom: 7px solid var(--color-pink);
}

/* ===============
   Z-INDEX CONTROL
   =============== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 9999;
}
section {
  padding: 20px 0;
}

/* =========================
   END OF CSS FILE
   ========================= */
