/* --- 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  background: linear-gradient(135deg, #267CA7 0%, #85B844 100%);
  min-height: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #236D94;
  min-height: 100vh;
  background: #F7F7F2;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
a {
  color: #267CA7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #85B844;
  outline: none;
}
strong {
  font-weight: 700;
}

/* --- Typography --- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #236D94;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #267CA7;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #236D94;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #267CA7;
}
p, ul, ol, pre, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #236D94;
}

/* --- Containers and Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F7F2;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(38, 124, 167, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 700px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 24px 8px;
    border-radius: 13px;
  }
}

/* --- Header & Navigation --- */
header {
  background: linear-gradient(130deg, #267CA7 0%, #85B844 100%);
  padding: 0;
  box-shadow: 0 2px 15px 0 rgba(60, 120, 160, 0.10);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.20s, color 0.20s;
}
header nav a:hover, header nav a:focus {
  background: #85B844;
  color: #236D94;
}
header .cta.primary {
  background: #fff;
  color: #267CA7;
  padding: 10px 26px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(38, 124, 167, 0.13);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, outline 0.13s;
  margin-left: 16px;
}
header .cta.primary:hover, header .cta.primary:focus {
  background: #267CA7;
  color: #fff;
  outline: 2px solid #85B844;
}
/* Hide mobile menu button on desktop */
.mobile-menu-toggle {
  display: none;
}
/* --- Mobile Navigation --- */
@media (max-width: 980px) {
  header .container nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.3rem;
    padding: 4px 10px;
    cursor: pointer;
    z-index: 102;
    margin-right: 10px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(125deg, #267CA7 0%, #85B844 100%);
  box-shadow: -4px 0 24px 0 rgba(60,120,160,0.18);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.35s cubic-bezier(.7,.2,.2,1), left 0.01s;
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.33s, left 0s, transform 0.33s cubic-bezier(.6,.1,.45,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.25rem;
  margin: 20px 20px 12px 0;
  cursor: pointer;
  z-index: 220;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 0;
  width: 80%;
  text-align: left;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #236D94;
}

/* --- Main & Sections --- */
main {
  width: 100%;
  min-height: 60vh;
  padding-top: 20px;
  background: #F7F7F2;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(38, 124, 167, 0.04);
}
@media (max-width: 700px) {
  section {
    margin-bottom: 32px;
    padding: 18px 4px;
    border-radius: 11px;
  }
}

/* --- Flex-based Patterns (Mandatory) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #F7F7F2;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(38, 124, 167, 0.08);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 340px;
  padding: 24px 18px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(38, 124, 167, 0.13);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F7F7F2;
  border-radius: 15px;
  box-shadow: 0 2px 7px 0 rgba(38, 124, 167, 0.06);
  color: #236D94;
  font-size: 1.12rem;
  max-width: 550px;
}
.testimonial-card p {
  color: #236D94;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #267CA7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 4px 0;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(60,120,160,0.07);
  padding: 24px 18px;
  flex: 1 1 220px;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-height: 180px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 16px 0 rgba(133,184,68,0.15);
  transform: scale(1.018);
  z-index: 3;
}
.feature-grid img {
  max-width: 42px;
}

/* --- Quick Links --- */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 8px;
}
.quick-links a {
  font-weight: 600;
  color: #267CA7;
}
.quick-links a:hover {
  color: #85B844;
}

/* --- Activity & Category Cards (Aktivitäten) --- */
.activity-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 4px 0;
}
.activity-cards > div {
  background: #F7F7F2;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(38, 124, 167, 0.06);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 350px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.activity-cards > div:hover {
  box-shadow: 0 6px 16px 0 rgba(38, 124, 167, 0.13);
  transform: translateY(-2px) scale(1.01);
}
.activity-categories ul, .filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 6px 0 9px 0;
  padding-left: 0;
}
.activity-categories li, .filters li {
  background: #fff;
  color: #267CA7;
  border-radius: 10px;
  padding: 7px 13px;
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(38, 124, 167, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.filters li img {
  width: 20px;
  margin-right: 5px;
}

/* --- Weather Section --- */
.weather-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #F7F7F2;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px 0 rgba(38, 124, 167, 0.06);
  margin-bottom: 24px;
}
.weather-summary img {
  width: 50px;
  height: 50px;
}
.weather-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  list-style: none;
}
.weather-summary li {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  padding: 5px 11px;
  border-radius: 18px;
  color: #267CA7;
  font-size: 1rem;
  font-weight: 500;
}
.weather-summary li img {
  width: 22px;
  margin-right: 3px;
}

/* --- Indoor Icons --- */
.indoor-icons {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 10px;
}
.indoor-icons img {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 3px rgba(133,184,68,0.11);
  padding: 4px;
}

/* --- FAQ List --- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.faq-list > div {
  background: #F7F7F2;
  border-radius: 10px;
  padding: 16px 14px;
  box-shadow: 0 1px 4px rgba(38,124,167, 0.06);
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.faq-list > div:hover {
  box-shadow: 0 3px 10px 0 rgba(133, 184, 68, 0.17);
  transform: scale(1.014);
}

/* --- Event Calendar & Filters (Veranstaltungen) --- */
.event-calendar {
  background: #F7F7F2;
  border-radius: 14px;
  padding: 18px 17px;
  box-shadow: 0 1px 6px rgba(38, 124, 167, 0.07);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.event-calendar ul {
  margin-bottom: 0;
}
.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 1rem;
  color: #85B844;
  font-weight: 500;
}
.event-filters span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.event-filters img {
  width: 22px;
}

/* --- Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.contact-info img {
  width: 22px;
  margin-right: 6px;
  vertical-align: middle;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  background: #F7F7F2;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(38,124,167,0.07);
}
.map-embed img {
  width: 32px;
}

/* --- CTAs and Buttons --- */
.cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  background: #267CA7;
  color: #fff;
  border-radius: 16px;
  padding: 12px 32px;
  font-size: 1.11rem;
  border: none;
  text-align: center;
  margin: 0;
  display: inline-block;
  box-shadow: 0 2px 10px 0 rgba(38, 124, 167, 0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, outline 0.15s;
}
.cta.primary {
  background: #85B844;
  color: #236D94;
}
.cta:hover, .cta:focus {
  background: #85B844;
  color: #236D94;
  outline: 2px solid #267CA7;
}
.cta.primary:hover, .cta.primary:focus {
  background: #267CA7;
  color: #fff;
  outline: 2px solid #85B844;
}

/* --- Footer --- */
footer {
  background: linear-gradient(130deg, #267CA7 0%, #85B844 100%);
  color: #fff;
  padding: 24px 0 12px 0;
  width: 100%;
}
footer p {
  color: white;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover {
  background: #85B844;
  color: #236D94;
}
.legal-info {
  font-size: 0.98rem;
  color: #f7f7f2;
  line-height: 1.6;
  opacity: 0.85;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(255,255,255,0.99);
  box-shadow: 0 -2px 16px 0 rgba(38,124,167, 0.09);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 19px 26px;
  font-size: 1rem;
  color: #236D94;
  transition: transform 0.4s cubic-bezier(.7,.2,.2,1), opacity 0.15s;
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 0;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 12px;
  padding: 9px 22px;
  box-shadow: 0 2px 6px 0 rgba(38, 124, 167, 0.07);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: #85B844;
  color: #236D94;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #267CA7;
  color: #fff;
}
.cookie-btn.reject {
  background: #267CA7;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #85B844;
  color: #236D94;
}
.cookie-btn.settings {
  background: #fff;
  color: #267CA7;
  border: 2px solid #267CA7;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F7F7F2;
  color: #85B844;
  border-color: #85B844;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 8px 16px 8px;
  }
  .cookie-banner__actions {
    align-items: stretch;
    flex-direction: row;
    gap: 9px;
  }
}

/* --- Cookie Consent Modal --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  inset: 0;
  background: rgba(38,124,167,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.32s cubic-bezier(.58,.21,.53,.89);
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 10px 60px 0 rgba(38, 124, 167, 0.16);
  border-radius: 18px;
  max-width: 430px;
  width: 90vw;
  padding: 32px 28px;
  color: #236D94;
  font-size: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.29s 1 cubic-bezier(.7,.36,.15,.94);
}
@keyframes modalIn {
  0% { transform: scale(.85) translateY(30px); opacity:.7; }
  100% { transform: none; opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #267CA7;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal .category label {
  font-weight: 600;
  color: #236D94;
  flex: 1;
}
.cookie-modal .category input[type=checkbox] {
  accent-color: #267CA7;
  width: 20px;
  height: 20px;
}
.cookie-modal .category input[disabled],
.cookie-modal .category input[readonly] {
  filter: grayscale(1) brightness(0.95);
  accent-color: #A0A0A0;
  cursor: not-allowed;
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .btn-close-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #236D94;
  cursor: pointer;
  z-index: 4050;
  padding: 3px 9px;
}
.cookie-modal .btn-close-modal:hover, 
.cookie-modal .btn-close-modal:focus {
  color: #267CA7;
}

/* --- Utility/Helpers --- */
.mt-2 {
  margin-top: 16px !important;
}
.mb-2 {
  margin-bottom: 16px !important;
}
.mt-4 {
  margin-top: 32px !important;
}
.mb-4 {
  margin-bottom: 32px !important;
}
.text-center {
  text-align: center !important;
}

/* --- Responsive Layouts --- */
@media (max-width: 1100px) {
  .card-container,
  .feature-grid,
  .activity-cards,
  .faq-list,
  .content-grid {
    gap: 16px;
  }
  .card, .feature-grid>div,
  .activity-cards>div, .faq-list>div {
    min-width: 170px;
    max-width: 100%;
    padding: 18px 10px;
  }
}
@media (max-width: 850px) {
  .card-container, .feature-grid,
  .activity-cards, .faq-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card, .feature-grid>div,
  .activity-cards>div, .faq-list>div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-menu {
    gap: 14px;
  }
}

/* --- Animations on hover --- */
.card, .feature-grid>div, .activity-cards>div, .faq-list>div {
  transition: box-shadow 0.18s, transform 0.15s;
}
.cta, .cookie-btn {
  transition: background 0.16s, color 0.16s, outline 0.12s;
}
a {
  transition: color 0.18s;
}

/* --- Accessibility/Focus --- */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #85B844;
  outline-offset: 2px;
}

/* --- Miscellaneous (Spacing, Shadows, etc.) --- */
@media (max-width: 480px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.3rem; }
  .card, .feature-grid>div, .activity-cards>div, .faq-list>div {
    padding: 12px 5px;
  }
  .cookie-modal {
    padding: 18px 6px;
    font-size: 0.98rem;
    border-radius: 9px;
  }
}

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

/* --- END --- */
