/* CSS Reset and industrial_modern 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #222831;
  color: #e0e0e0;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #23262a;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: #FFBC42;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #F1F1F1;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #d2d2d2;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.125rem;
  color: #a4acb5;
  margin-bottom: 22px;
}
strong, b {
  color: #FFBC42;
  font-weight: bold;
}

/* Containers & Layouts */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* can be overridden by inner containers */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #222831;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(28,28,28,0.14), 0 1.5px 8px rgba(92,92,90,.10), 0 0.5px 2px rgba(88,90,98,0.10);
}

/* Cards & Flex Containers */
.card-container, .service-cards, .features-grid, .activity-grid, .indoor-activities-grid, .team-profiles, .experience-cards, .footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service, .activity, .indoor-activity, .team-profile, .experience, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
  background: #262d34;
  border-radius: 12px;
  border: 1.5px solid #363942;
  box-shadow: 0 4px 16px rgba(28,28,28,0.13);
  transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1), border-color 0.2s cubic-bezier(.4,0,.2,1);
}
.card:hover, .feature:hover, .service:hover, .activity:hover, .indoor-activity:hover, .team-profile:hover, .experience:hover {
  box-shadow: 0 8px 36px rgba(28,28,28,0.19), 0 3px 16px rgba(88,90,98,.13);
  border-color: #FFBC42;
  z-index: 2;
}

.card-content, .feature, .service, .activity, .indoor-activity, .team-profile, .experience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  min-height: 160px;
}

.features-grid, .service-cards, .activity-grid, .indoor-activities-grid, .team-profiles, .experience-cards {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

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

/* Spacing helpers for sections and elements */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  min-width: 220px;
  background: #f1f1f1;
  color: #222831;
  border-radius: 16px;
  border: 1px solid #ccd4db;
  box-shadow: 0 4px 16px rgba(44,47,55,.07);
  margin-bottom: 20px;
  min-height: 170px;
}

.testimonial-card p,
.testimonial-card .family-name,
.testimonial-card .star-rating {
  color: #222831;
}

.testimonial-card .star-rating {
  font-size: 1.3rem;
  color: #FFD600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.family-name {
  color: #285394;
  font-weight: 700;
  margin-top: 8px;
  font-size: 1rem;
}

/* Tag Badges & Event Tags */
.tag-badge, .event-tag, .rainy-day-badge {
  display: inline-block;
  background: #444850;
  color: #FFBC42;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  padding: 4px 13px;
  border-radius: 32px;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 6px 0 2px 0;
  border: 1px solid #FFBC42;
}

.rainy-day-badge {
  background: #23262a;
  color: #fff;
  border-color: #c2c5cd;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #202429 90%, #222831 100%);
  border-bottom: 2px solid #363942;
  box-shadow: 0 2px 32px rgba(40,83,148,0.12);
  margin-bottom: 60px;
  padding: 38px 0 48px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}

/********************************
 * Navigation & Header
 ********************************/

header {
  background: #21242a;
  width: 100%;
  padding: 0;
  border-bottom: 2px solid #3c4251;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
  padding: 0 20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.main-nav a {
  color: #e3e3e3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a.active {
  color: #FFBC42;
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 28px;
  background: #285394;
  color: #fff;
  border: none;
  margin-left: 20px;
  transition: background 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 10px rgba(40,83,148,0.08);
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  text-shadow: 0 2px 8px rgba(32,32,32,0.09);
}
.cta-btn.primary {
  background: linear-gradient(90deg,#285394 95%, #223262 100%);
  color: #fff;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #143058;
  color: #FFBC42;
  box-shadow: 0 8px 32px rgba(255,188,66,0.09), 0 2px 12px rgba(28,28,28,0.08);
}
.cta-btn.secondary {
  background: none;
  color: #FFBC42;
  border: 2px solid #FFBC42;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #FFBC42;
  color: #23262a;
}

/* Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: #23262a;
  border: 2px solid #FFBC42;
  color: #FFBC42;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  transition: border-color 0.2s cubic-bezier(.4,0,.2,1), background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFBC42;
  color: #23262a;
  border-color: #23262a;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #21242a;
  padding: 40px 32px 32px 32px;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  box-shadow: 0 2px 40px rgba(44,47,55,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #23262a;
  border: 2px solid #FFBC42;
  border-radius: 50%;
  color: #FFBC42;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  margin-bottom: 22px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFBC42;
  color: #23262a;
  border-color: #23262a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 18px;
}
.mobile-nav a {
  color: #e3e3e3;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 650;
  padding: 10px 0;
  transition: color 0.23s cubic-bezier(.4,0,.2,1), background 0.2s;
  border-radius: 8px;
  min-width: 180px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FFBC42;
  background: #222831;
}

/* Footer */
footer {
  background: #181b20;
  color: #bbbbbd;
  padding: 48px 0 12px 0;
  border-top: 2px solid #363942;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer-columns > div {
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #bbbbbd;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #FFBC42;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

/* List & Step Styles */
.values-list, .idea-list, .step-by-step, .quick-tips ul,
.preparation-list ul, .seasonal-tips ul, .age-group-guide ul, .logistics-tips ul, .next-steps, .faq-links ul {
  margin-top: 12px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-by-step li,
.next-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.values-list li, .idea-list li, .quick-tips ul li, .preparation-list ul li, .seasonal-tips ul li, .age-group-guide ul li, .logistics-tips ul li, .faq-links ul li {
  color: #a4acb5;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Filter Options for search on "kostenlose-aktivitaeten.html" */
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  background: #23262a;
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(32,32,32,0.10);
}
.filter-options label {
  color: #FFBC42;
  font-weight: bold;
  font-size: 1rem;
}
.filter-options select {
  background: #23262a;
  color: #ffbc42;
  border: 1.5px solid #3c4251;
  padding: 7px 15px;
  border-radius: 8px;
  margin-right: 8px;
  margin-left: 7px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border-color 0.2s;
}
.filter-options select:focus {
  border-color: #FFBC42;
}

.activity-categories, .homepage-link {
  display: flex;
  gap: 15px;
}

.homepage-link a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFBC42;
  font-weight: bold;
  border-bottom: 2px solid #FFBC42;
  padding: 0 2px;
  transition: color 0.18s;
}
.homepage-link a:hover { color: #fff; }

.quick-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFBC42;
  font-weight: 650;
  font-size: 1rem;
  margin-left: 2px;
  margin-top: 6px;
  border-bottom: 2px dotted #FFBC42;
  transition: color 0.17s;
}
.quick-link:hover { color: #fff; }

/********************************
 * Cookie Consent Banner + Modal
 ********************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 1300;
  background: #292b30;
  color: #f1f1f1;
  box-shadow: 0 -1px 18px 4px rgba(32,32,32,0.15);
  padding: 23px 16px 15px 16px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: cookiebanner-slideup 0.5s cubic-bezier(.3,.68,.48,1) 1;
}
@keyframes cookiebanner-slideup {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 8px 23px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid #FFBC42;
  background: #285394;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.cookie-btn.reject {
  background: #fff;
  color: #ba3b27;
  border: 2px solid #ba3b27;
}
.cookie-btn.accept {
  background: #FFBC42;
  color: #222831;
  border: 2px solid #285394;
}
.cookie-settings-btn {
  background: transparent;
  color: #FFBC42;
  border: 2px solid #FFBC42;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  filter: brightness(1.1);
  background: #23262a;
  color: #FFBC42;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,32,38,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiefadein 0.22s cubic-bezier(.4,0,.2,1);
}
@keyframes cookiefadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #23262a;
  color: #fff;
  border-radius: 18px;
  padding: 34px 26px 26px 26px;
  box-shadow: 0 8px 42px rgba(44,47,55,0.27);
  min-width: 310px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieslidein .34s cubic-bezier(.4,0,.2,1);
}
@keyframes cookieslidein {
  from { transform: translateY(48px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #FFBC42;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category-label {
  font-size: 1.02rem;
  font-weight: 600;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #445;
  position: relative;
  outline: none;
  border: 1.5px solid #FFBC42;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s;
}
.cookie-toggle[data-active="1"] {
  background: #FFBC42;
  border-color: #285394;
}
.cookie-toggle-knob {
  position: absolute;
  top: 2.5px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(40,83,148,0.06);
  transition: left 0.18s;
}
.cookie-toggle[data-active="1"] .cookie-toggle-knob {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Section-specific: e.g. weather-tabs */
.weather-tabs {
  display: flex;
  gap: 18px;
  margin: 16px 0 8px 0;
}
.weather-option {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #23262a;
  color: #FFBC42;
  border: 2px solid #285394;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 10px 19px;
  font-weight: 650;
  transition: background 0.17s, color 0.18s, border-color 0.18s;
  cursor: pointer;
}
.weather-option:hover, .weather-option:focus {
  background: #285394;
  color: #fff;
  outline: none;
  border-color: #FFBC42;
}

/********************************
 * Responsive Design: Mobile First
 ********************************/

@media (max-width: 1120px) {
  .container { max-width: 98vw; }
}

@media (max-width: 950px) {
  .footer-columns {
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-columns > div {
    min-width: 130px;
  }
  .features-grid, .service-cards, .team-profiles, .activity-grid, .indoor-activities-grid, .experience-cards {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    gap: 9px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 22px;
  }
  .footer-columns > div {
    min-width: unset;
    flex: 1 1 auto;
  }
}

@media (max-width: 690px) {
  .card-container, .service-cards, .features-grid, .activity-grid, .indoor-activities-grid, .team-profiles, .experience-cards {
    flex-direction: column;
    gap: 16px;
  }
  .footer-columns {
    gap: 14px;
  }
  .hero { padding-bottom: 22px; }
  .hero h1 { font-size: 1.45rem; }
  .section { padding: 30px 7px; }
  .testimonial-card {
    min-width: 100px;
    padding: 15px 10px;
  }
  .cookie-modal { padding: 18px 5vw 12px 5vw; }
}
@media (max-width: 530px) {
  .cookie-modal { min-width: 98vw; }
  .cookie-banner { padding: 13px 5px; font-size: 0.92rem; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/********************************
 * Misc. UI Micro Interactions
 ********************************/
input, textarea, select {
  background: #23262a;
  color: #FFBC42;
  border: 2px solid #3c4251;
  border-radius: 7px;
  padding: 9px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.18s, background 0.1s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFBC42;
  color: #fff;
  background: #2f3441;
}

::-webkit-scrollbar {
  width: 10px;
  background: #222831;
}
::-webkit-scrollbar-thumb {
  background: #2d3c49;
  border-radius: 8px;
}

/* Accessibility: focus ring */
a:focus-visible, .cta-btn:focus-visible, button:focus-visible, .quick-link:focus-visible, .feature:focus-visible {
  outline: 2px solid #FFBC42;
  outline-offset: 2px;
  border-radius: 8px;
}

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

/****************************************************
 * Industrial_Mordern Theming: Metals & Urban Details
 ****************************************************/
/* "Metallic" border shimmers and accents */
.card, .feature, .service, .activity, .indoor-activity, .team-profile, .experience {
  border-image: linear-gradient(125deg, #363942, #b3b3b9, #363942) 1;
  box-shadow: 0 1.5px 12px rgba(67, 70, 77, 0.15);
}

.section {
  border: 2.5px solid #35363a;
  background: linear-gradient(110deg, #222831 88%, #262d34 100%);
  box-shadow: 0 5px 32px rgba(47,51,62,0.12);
}

.hero {
  border-bottom: 2.5px solid #35363a;
  background: linear-gradient(120deg, #202429 89%, #3c4251 100%);
}

.cta-btn::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.07);
  pointer-events: none;
}

/* Subtle "steel plate" pattern at bottom site background */
body::after {
  content: '';
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0; right: 0; bottom: 0; height: 140px;
  background: repeating-linear-gradient(135deg, #363942 0 8px, #23262a 10px 18px);
  opacity: 0.06;
  z-index: 1;
}

/* Urban line on footer */
footer::before {
  content: '';
  display: block;
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg,#FFBC42 5%, #285394 96%);
  border-radius: 3px;
  margin: 0 0 22px 0;
}

/* Button metallic shine on hover */
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(95deg,#FFBC42 22%, #285394 98%);
  color: #23262a;
  box-shadow: 0 6px 26px rgba(255,188,66,0.18), 0 1.5px 9px rgba(28,28,28,0.10);
}

/* Visually separate every .section on page */
section + section {
  margin-top: 60px;
}

/********* Print Basic Branding ******/
@media print {
  .cta-btn, nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
