/* HanseStadtEntdecker Playful Dynamic CSS Style Sheet */
/* ----------------------------------------------------------
  CSS RESET & BASELINE NORMALIZATION
---------------------------------------------------------- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F7FAFE;
}
ul, ol {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ----------------------------------------------------------
  VARIABLES (for reference, not using :root custom prop)
---------------------------------------------------------- */
/* COLORS: 
   - Primary: #21456F
   - Secondary: #D8B300
   - Accent: #F5F5F5
   - Error/Rose: #EE4C7C (for accents)
   - Fresh Blue: #25C4F2 (playful accent)
   - Green Accent: #19C287 (playful accent)
   - White: #fff
   - DarkGrey: #212121
*/

/* ----------------------------------------------------------
  TYPOGRAPHY
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #243959;
  background: #F7FAFE;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  color: #21456F;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-top: 0;
}
h3 {
  font-size: 1.3rem;
  color: #19C287;
  margin-top: 0;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #243959;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}
strong {
  color: #D8B300;
  font-weight: 700;
}

/* Fun Playful Headline Styles */
h1, h2 {
  text-shadow: 2px 4px 16px rgba(25, 196, 135, 0.07), 0 1px 0 #fff;
  position: relative;
}
h2::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 6px;
  margin-left: 12px;
  vertical-align: middle;
  background: #25C4F2;
  border-radius: 3px;
}

@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}

/* ----------------------------------------------------------
  LAYOUT CONTAINERS & GLOBAL SPACING
---------------------------------------------------------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(37, 196, 242, 0.08);
  transition: box-shadow 0.3s;
}

@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
}

/* ----------------------------------------------------------
  NAVIGATION (DESKTOP & MOBILE)
---------------------------------------------------------- */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  background: #fff;
  padding: 18px 0 18px 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 2px 16px rgba(33, 69, 111, 0.06);
  z-index: 100;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #21456F;
  padding: 8px 18px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a.button-primary {
  background: #D8B300;
  color: #fff;
  font-size: 1rem;
  border-radius: 1000px;
  box-shadow: 0 3px 8px rgba(216, 179, 0, 0.08);
  padding: 10px 22px;
  font-weight: 900;
  border: 2px solid #D8B300;
}
.main-nav a.button-primary:hover, .main-nav a.button-primary:focus {
  background: #21456F;
  color: #FFE254;
  border-color: #21456F;
}
.main-nav a:hover, .main-nav a:focus {
  background: #25C4F2;
  color: #fff;
}
.main-nav img {
  max-height: 36px;
  margin-right: 8px;
}

/* Hide menu on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU BURGER */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 28px;
    z-index: 2002;
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #21456F;
    border: 2px solid #D8B300;
    box-shadow: 0 3px 8px rgba(216,179,0,0.13);
    transition: background 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #D8B300;
    color: #fff;
  }
}

/* MOBILE MENU OVERLAY and Nav */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #F7FAFE;
  box-shadow: 0 8px 30px rgba(33, 69, 111, 0.15);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(102vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(.51,.03,.31,1.19), opacity 0.28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  margin: 25px 18px 10px auto;
  font-size: 2rem;
  background: #fff;
  color: #21456F;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  border: 2px solid #21456F;
  box-shadow: 0 2px 6px rgba(33,69,111,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #25C4F2;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 26px 30px 18px 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #21456F;
  padding: 12px 24px;
  border-radius: 18px;
  background: #fff;
  transition: background 0.16s, color 0.15s;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D8B300;
  color: #fff;
}

/* Hide on desktop */
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle { display: none; }
}

/* Ensure menu overlays content */
.mobile-menu {
  box-shadow: 0px 8px 32px rgba(33, 69, 111, 0.14);
  z-index: 3000 !important;
}

/* ----------------------------------------------------------
  BUTTONS, TAGS & MICRO-INTERACTIONS
---------------------------------------------------------- */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 31px;
  border-radius: 1000px;
  min-width: 44px;
  min-height: 44px;
  box-shadow: 0 5px 16px rgba(33,69,111,0.10);
  background: #D8B300;
  color: #fff;
  border: 2px solid #D8B300;
  margin: 8px 0;
  transition: background 0.22s, color 0.2s, box-shadow 0.16s;
  cursor: pointer;
  letter-spacing: 0.01em;
  gap: 10px;
}
.button-primary:hover, .button-primary:focus {
  background: #21456F;
  border-color: #21456F;
  color: #FFE254;
  box-shadow: 0 7px 18px rgba(33,69,111,0.16);
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: #25C4F2;
  color: #fff;
  border-color: #25C4F2;
}
.button-secondary:hover, .button-secondary:focus {
  background: #19C287;
  border-color: #19C287;
  color: #fff;
}

.difficulty-tag {
  display: inline-flex;
  align-items: center;
  background: #25C4F2;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 13px;
  margin-top: 10px;
  box-shadow: 0 3px 8px rgba(25,196,135,0.10);
  letter-spacing: 0.04em;
  transition: background 0.18s;
}

/* Playful bounce for buttons */
.button-primary, .button-secondary, .difficulty-tag {
  transition: transform 0.12s cubic-bezier(.61,.03,.44,1.19);
}
.button-primary:active, .button-secondary:active, .difficulty-tag:active {
  transform: scale(0.97);
}

/* ----------------------------------------------------------
  HERO, FEATURES, GRIDS, CARDS
---------------------------------------------------------- */
.hero, .about-hero, .stadtteile-hero, .tourist-hero, .route-hero, .galerie-hero, .attractions-hero, .thank-you-hero {
  background: linear-gradient(105deg, #D8B300 70%, #25C4F2 100%);
  background-size: 250% 250%;
  background-position: 30% 60%;
  color: #fff;
  min-height: 300px;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 15px 50px rgba(33, 69, 111, 0.07);
  margin-bottom: 46px;
  padding: 60px 0;
  animation: hbg-hero-an 13s cubic-bezier(.47,.03,.39,1) infinite alternate;
}
@keyframes hbg-hero-an {
  0% { background-position: 20% 62%; }
  100% { background-position: 65% 70%; }
}
.hero h1, .about-hero h1, .stadtteile-hero h1, .tourist-hero h1, .route-hero h1, .galerie-hero h1, .attractions-hero h1, .thank-you-hero h1 {
  color: #fff;
  text-shadow: 3px 2px 12px rgba(37,196,242,0.27);
}
.hero .button-primary {
  margin-top: 16px;
}

.section, .features, .services, .about, .testimonials, .contact {
  margin-bottom: 60px;
}

.card-container, .feature-grid, .attractions-grid, .route-list, .tipps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}
.card, .feature-grid > div, .route-card, .attractions-grid > div, .tipps-grid > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 13px rgba(216,179,0,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 20px 30px 24px;
  flex: 1 1 228px;
  min-width: 220px;
  min-height: 170px;
  transition: box-shadow 0.2s, transform 0.1s;
}
.card:hover, .feature-grid > div:hover, .route-card:hover, .attractions-grid > div:hover, .tipps-grid > div:hover {
  box-shadow: 0 6px 33px rgba(216, 179, 0, 0.19);
  transform: translateY(-7px) scale(1.025) rotate(-1.3deg);
}
.card img, .feature-grid img, .attractions-grid img {
  display: block;
  margin-bottom: 14px;
  width: 48px; height: 48px;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(25,196,135,0.10);
}
@media (max-width: 850px) {
  .card-container, .feature-grid, .attractions-grid, .route-list, .tipps-grid {
    flex-direction: column;
    gap: 22px;
  }
  .card, .feature-grid > div, .route-card, .attractions-grid > div, .tipps-grid > div {
    min-width: 0;
    width: 100%;
  }
}

/* .content-grid generic for flex layouts */
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/**** Testimonial Cards ****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F5F5;
  box-shadow: 0 3px 16px rgba(37,69,111,0.07);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #243959;
  font-size: 1.08rem;
  min-height: 70px;
  flex-wrap: wrap;
  transition: box-shadow .15s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 33px rgba(33,69,111,0.15);
  transform: translateY(-3px) scale(1.015);
  background: #fffbe6;
}
.testimonial-card p {
  color: #21456F;
  font-style: italic;
  margin: 0 0 6px 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #D8B300;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

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

/**** Lists and FAQ ****/
ul, ol {
  margin-bottom: 16px;
  padding-left: 25px;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.5;
}
ul li:before {
  content: '⦿';
  color: #25C4F2;
  margin-right: 9px;
  font-size: 1em;
}
.section ul {
  padding-left: 22px;
}

/**** Content summaries and contact ****/
.contact-summary a {
  color: #25C4F2;
  text-decoration: underline;
  font-weight: 700;
}

/**** Decorative micro-animations ****/
.feature-grid > div, .attractions-grid > div, .route-card {
  animation: playful-bounce 0.93s cubic-bezier(.4,0,.24,1.3) backwards;
  animation-delay: 0.09s;
}
@keyframes playful-bounce {
  0%   { opacity: 0; transform: scale(0.85) translateY(24px); }
  85%  { opacity: 1; transform: scale(1.03) translateY(-3px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/**** Unique-value prop, FAQ-section, Tags ****/
.unique-value-prop {
  background: #25C4F2;
  color: #fff;
  border-radius: 13px;
  padding: 19px 22px;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 14px rgba(33,69,111,0.09);
  font-weight: 700;
}
.faq-section {
  background: #fffbe6;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 22px;
  box-shadow: 0 1px 8px rgba(216,179,0, 0.09);
}
.faq-section h3 { color: #D8B300; }

/**** Responsive cards and routes ****/
.route-card {
  border-left: 5px solid #19C287;
  padding-left: 20px;
}

/**** Footer Layouts ****/
footer {
  background: #21456F;
  color: #fff;
  border-radius: 44px 44px 0 0;
  margin-top: 60px;
  box-shadow: 0 -7px 25px rgba(33,69,111,0.08);
}
footer .container { padding-top: 36px; padding-bottom: 18px; }
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #FFE254;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  transition: background 0.18s, color 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover {
  background: #D8B300;
  color: #fff;
}
.social-media {
  display: flex;
  gap: 20px;
  align-items: center;
}
.social-media a img {
  max-width: 30px;
  background: #fff;
  border-radius: 11px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(37,196,242,0.10);
  transition: background .18s, box-shadow .15s;
}
.social-media a img:hover {
  background: #25C4F2;
  box-shadow: 0 4px 18px rgba(25, 196, 135, .11);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-top: 7px;
}
.brand-info img {
  max-width: 35px;
  border-radius: 8px;
}
@media (max-width: 700px) {
  footer .content-wrapper { gap: 8px; }
  .footer-nav, .footer-legal {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .brand-info { font-size: 0.94rem; }
}

/* ----------------------------------------------------------
  COOKIE BANNER (Fixed bottom, modal included)
---------------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe5;
  color: #243959;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 2px rgba(37, 196, 242, 0.13);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 10vw 18px 10vw;
  gap: 18px;
  z-index: 3500;
  border-radius: 20px 20px 0 0;
  animation: playful-slideup .7s cubic-bezier(.54,.03,.44,1.23);
}
@keyframes playful-slideup {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p { margin: 0 24px 0 0;
  font-size: 1rem;
}
.cookie-consent-banner .button-primary, 
.cookie-consent-banner .button-secondary, 
.cookie-consent-banner .button-settings {
  margin: 0 6px 0 0;
  font-size: 0.98rem;
  min-width: 120px;
  padding: 11px 12px;
}
.button-settings {
  background: #25C4F2;
  color: #fff;
  border: 2px solid #25C4F2;
  border-radius: 1000px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.button-settings:hover {
  background: #19C287;
  border-color: #19C287;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 12px 14px 12px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner p {
    margin-bottom: 10px;
  }
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,69,111,0.33);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  min-width: 330px;
  max-width: 94vw;
  margin: 0 auto;
  border-radius: 21px;
  padding: 35px 24px 24px 24px;
  box-shadow: 0 7px 34px 7px rgba(33, 69, 111, 0.14);
  color: #243959;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  animation: slideupmod 0.33s;
  z-index: 4100;
}
@keyframes fadein {
  0% { opacity: 0; } 100% { opacity: 1; }
}
@keyframes slideupmod {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 20px; top: 18px;
  background: #21456F;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 34px; height: 34px; border: 2px solid #19C287;
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.cookie-modal .close-cookie-modal:hover {
  background: #D8B300;
  color: #fff;
}
.cookie-modal h3 {
  color: #19C287;
  font-size: 1.18rem;
  margin-bottom: 15px;
}
.cookie-modal ul {
  margin: 0;
  padding: 0 0 17px 0;
  list-style: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 10px 0;
  padding: 7px 0;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #243959;
}
/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e3eaf5;
  border-radius: 22px;
  transition: .35s;
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  top: 2px;
  background: #D8B300;
  border-radius: 50%;
  transition: .35s;
}
input:checked + .slider {
  background: #19C287;
}
input:checked + .slider:before {
  transform: translateX(20px);
  background: #25C4F2;
}

/* ----------------------------------------------------------
  MEDIA QUERIES FOR RESPONSIVE DESIGN
---------------------------------------------------------- */
@media (max-width: 600px) {
  .container {
    padding: 0 2vw;
  }
  .hero, .about-hero, .stadtteile-hero, .tourist-hero, .route-hero, .galerie-hero, .thank-you-hero, .attractions-hero {
    padding: 40px 0 25px 0;
    min-height: 180px;
    border-radius: 0 0 18px 18px;
  }
  .section {
    padding: 18px 2px;
    margin-bottom: 25px;
  }
  .card, .feature-grid > div, .route-card, .attractions-grid > div, .tipps-grid > div {
    padding: 15px 12px 18px 12px;
    min-height: 110px;
    border-radius: 12px;
  }
}

/**** Accessibility: focus styles ****/
a, button, .button-primary, .button-secondary, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  box-shadow: none;
}
a:focus, .button-primary:focus, .button-secondary:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #25C4F2;
  outline: 0 !important;
}

/* ----------------------------------------------------------
  EXTRAS: MODAL BACKDROP, Z-INDEX, Etc.
---------------------------------------------------------- */
[hidden] { display: none !important; }

/**** Hide scrollbars in mobile menu */
.mobile-menu::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.mobile-menu {
  overflow-y: auto;
}

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

/* ----------------------------------------------------------
  PLAYFUL/DYNAMIC HOVER STATES & ANIMATIONS
---------------------------------------------------------- */
a, .card, .feature-grid > div, .route-card, .attractions-grid > div, .tipps-grid > div {
  transition: box-shadow 0.27s cubic-bezier(.78,.12,.18,.82), transform 0.21s, background 0.17s, color 0.14s;
}

/* ----------------------------------------------------------
  BRAND PERSONALITY – COLOR SPLASH DECORATIVE (could be absolute for only decor)
---------------------------------------------------------- */
.hero::before, .about-hero::before, .tourist-hero::before, .galerie-hero::before, .attractions-hero::before, .thank-you-hero::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 104px; height: 104px;
  background: #25C4F2;
  border-radius: 60px 30px 90px 20px / 80px 44px 85px 22px;
  opacity: 0.15;
  filter: blur(1px);
  z-index: 1;
}
.hero::after, .about-hero::after, .tourist-hero::after, .galerie-hero::after, .attractions-hero::after, .thank-you-hero::after {
  content: '';
  display: block;
  position: absolute;
  right: 0; bottom: 0;
  width: 145px; height: 78px;
  background: #D8B300;
  border-radius: 44px 44px 33px 80px / 36px 46px 80px 22px;
  opacity: 0.14;
  filter: blur(2px);
  z-index: 1;
}

/**** Priority Content on top ****/
.hero .container, .about-hero .container, .stadtteile-hero .container, .tourist-hero .container, .galerie-hero .container, .attractions-hero .container, .thank-you-hero .container {
  position: relative;
  z-index: 5;
}

/**** Elevate z-index for banners/modals ****/
.cookie-consent-banner, .cookie-modal-overlay { z-index: 5000 !important; }
