/* --- 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,
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 {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #E9EAE4;
  color: #2C374B;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #5683A6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #255175;
  outline: none;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.4em;
  margin-bottom: 1.2em;
}
ul li, ol li { margin-bottom: 0.5em; }
p + ul, p + ol { margin-top: 0.7em; }
hr {
  border: none;
  border-top: 2px solid #2C374B;
  margin: 40px 0;
}

/* --- TYPOGRAPHY: Modern Bold ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #2C374B;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.blockquote, blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #255175;
  border-left: 5px solid #5683A6;
  padding-left: 18px;
  margin: 0 0 16px 0;
}
strong, b {
  font-weight: 900;
  color: #2C374B;
}

/* --- SPACING & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(44,55,75,0.06), 0 0.5px 2px rgba(44,55,75,0.03);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(44,55,75,.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #F7F8FA;
  box-shadow: 0 2px 8px 0 rgba(44,55,75,.05);
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(44,55,75,0.14);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER --- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(44,55,75,.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  color: #2C374B;
  transition: background .16s, color .16s;
}
header nav a.cta-primary {
  background: #5683A6;
  color: #FFFFFF;
  font-weight: 900;
  margin-left: 12px;
  box-shadow: 0 2px 8px 0 rgba(86,131,166,.13);
  letter-spacing: .02em;
  border: none;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #255175;
  color: #fff;
}
header nav a:hover,
header nav a:focus {
  background: #E9EAE4;
  color: #255175;
}
header img {
  height: 46px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #5683A6;
  padding: 10px;
  margin-left: 18px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 110;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #5683A6;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,55,75,0.93);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(.77,.2,.05,1), opacity 0.3s;
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 32px 32px 12px 0;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus {
  outline: 2px solid #FFFFFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  padding: 12px 32px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
  text-align: center;
  flex: none;
  width: 85%;
}
.mobile-nav a.cta-primary,
.mobile-nav a:last-child {
  background: #5683A6;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  margin-top: 16px;
  box-shadow: 0 2px 6px 0 rgba(86,131,166,0.20);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #255175;
  color: #fff;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #5683A6;
  color: #fff;
  border-radius: 0 0 44px 44px;
  padding: 50px 0 42px 0;
  min-height: 290px;
  margin-bottom: 50px;
  box-shadow: 0 10px 36px -12px rgba(44,55,75,0.15);
}
.hero .container, .hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero h1,
.hero h2 {
  color: #fff;
}
.hero p {
  color: #E9EAE4;
  font-size: 1.15rem;
  font-weight: 500;
}
.hero .cta-primary {
  background: #fff;
  color: #2C374B;
  font-weight: 900;
}
.hero .cta-primary:hover, .hero .cta-primary:focus {
  background: #255175;
  color: #fff;
}

/* --- BUTTONS / CTAs --- */
.cta-primary, .cta {
  display: inline-block;
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  padding: 14px 38px;
  background: #5683A6;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(44, 55, 75, 0.09);
  transition: background 0.23s, color 0.23s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus, .cta:hover, .cta:focus {
  background: #2C374B;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px rgba(44,55,75,0.17);
  outline: none;
}

/* --- FEATURES + SERVICES LISTS --- */
.features, .services, .event-program, .service-description, .shopping-info, .about, .success-message, .find-us, .contact-info, .legal, .cta-banner {
  margin-bottom: 60px;
}
.features .content-wrapper, .services .content-wrapper, .event-program .content-wrapper, .shopping-info .content-wrapper, .service-description .content-wrapper, .about .content-wrapper, .success-message .content-wrapper {
  gap: 24px;
  background: none;
}
.features ul, .services ul, .event-program ul, .shopping-info ul, .service-description ul, .contact-info ul {
  padding-left: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 14px;
}
.features ul li, .services ul li, .event-program ul li, .shopping-info ul li, .service-description ul li, .contact-info ul li {
  background: #FFFFFF;
  color: #2C374B;
  padding: 16px 16px 16px 28px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 1px 7px rgba(44,55,75,.04);
  border-left: 5px solid #5683A6;
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}
.features ul li img, .contact-info ul li img, address img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* --- PRICING & SHOP --- */
.pricing-card {
  background: #E9EAE4;
  border-left: 7px solid #5683A6;
  border-radius: 10px;
  padding: 22px 26px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 1px 6px rgba(44,55,75,.07);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 16px;
  margin-bottom: 0;
}

/* --- CARDS & GRIDS --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* --- TESTIMONIAL SECTIONS --- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-weight: 800;
  color: #255175;
  margin: 0 0 6px 0;
  border-left: none;
  padding-left: 0;
}
.testimonial-card p {
  font-size: 1em;
  color: #2C374B;
}
.testimonial-card strong {
  color: #2C374B;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: #255175;
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(44,55,75,.08);
}
.cta-banner .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.cta-banner h2 {
  color: #fff;
}
.cta-banner .cta-primary {
  background: #fff;
  color: #255175;
}
.cta-banner .cta-primary:hover, .cta-banner .cta-primary:focus {
  background: #E9EAE4;
  color: #2C374B;
}

/* --- FOOTER --- */
footer {
  background: #2C374B;
  color: #fff;
  padding: 38px 0 24px 0;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -6px 24px rgba(44,55,75,.10);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  transition: color .17s, text-decoration .17s;
  text-decoration: underline;
}
footer nav a:hover, footer nav a:focus {
  color: #5683A6;
  text-decoration: none;
}
footer address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.98rem;
  color: #fff;
}
footer address img {
  vertical-align: middle;
  margin-right: 8px;
  height: 18px;
  width: 18px;
}

/* --- LEGAL (DSGVO, Cookie, Impressum, Nutzungsbedingungen) --- */
.legal .container, .legal .content-wrapper {
  gap: 16px;
}
.legal ul {
  margin-bottom: 6px;
}
.legal {
  background: #fff;
  border-radius: 14px;
}

/* --- SUCCESS PAGE --- */
.success-message .content-wrapper {
  align-items: flex-start;
}
.success-message a.cta-primary {
  margin-top: 22px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #2C374B;
  color: #fff;
  box-shadow: 0 -4px 32px rgba(44,55,75,.21);
  padding: 24px 16px;
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(.83,.01,.17,1), opacity 0.32s;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  max-width: 480px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  margin: 0 0 0 0;
  font-weight: 900;
  transition: background 0.15s, color 0.18s, box-shadow 0.13s, transform 0.14s;
  outline: none;
}
.cookie-banner .cookie-accept {
  background: #5683A6;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(86,131,166,.12);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #255175;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-reject {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  border-color: #5683A6;
  background: #5683A6;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #2C374B;
  border: none;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E9EAE4;
  color: #2C374B;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0;
  top: 0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(44,55,75,0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 460px;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 10px 40px rgba(44,55,75,0.20);
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #2C374B;
  animation: fadein 0.6s cubic-bezier(.53,1.77,.61,.38);
}
@keyframes fadein {
  from { transform: translateY(56px) scale(.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header { font-family: 'Merriweather', serif; font-size: 1.4rem; font-weight: 900;}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #5683A6;
  cursor: pointer;
  z-index: 10;
  transition: color .16s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #255175;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1.09rem;
  font-weight: bold;
  flex: 1;
  color: #2C374B;
}
.cookie-category input[type="checkbox"] {
  accent-color: #5683A6;
  width: 22px;
  height: 22px;
}
.cookie-category input:disabled + label {
  color: #999;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-btns button {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 990px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.5rem; }
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 820px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer .container {
    gap: 18px;
  }
  .cta-primary, .cta {
    padding: 10px 20px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    margin-bottom: 36px;
    padding: 32px 8px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 32px 0 24px 0;
    border-radius: 0 0 28px 28px;
    min-height: 150px;
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 1.35rem; }
  .hero p { font-size: 1rem; }
  .features ul li,
  .services ul li,
  .event-program ul li,
  .shopping-info ul li,
  .service-description ul li, .contact-info ul li {
    padding: 10px 10px 10px 23px;
    font-size: 0.99rem;
    border-radius: 7px;
  }
  .testimonial-card { padding: 12px; border-radius: 10px; }
  .pricing-card { padding: 14px 10px; border-radius: 7px; font-size: 1rem; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  .cta-primary, .cta {
    font-size: 0.98rem;
    padding: 8px 13px;
    border-radius: 8px;
  }
  .section, .hero, .cta-banner, .features, .services, .event-program,.about, .success-message {
    padding-left: 3px;
    padding-right: 3px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 4px 14px 6px;
  }
}

/* --- ANIMATIONS & SHADOWS --- */
button, .cta-primary, .cta, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.16s, color 0.15s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(44,55,75,.14);
  transform: translateY(-4px) scale(1.02);
}

/* --- MICROINTERACTIONS --- */
.cta-primary:active, .cta:active {
  transform: scale(0.98);
}
.testimonial-card:active {
  transform: scale(.98);
}

/* --- UTILITIES / HELPER CLASSES --- */
.hide { display: none !important; }
.show { display: block !important; }
.text-center { text-align: center; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 3px solid #5683A6;
  outline-offset: 1px;
}

/* --- OVERRIDES FOR HIGH CONTRAST IN TESTIMONIALS --- */
.testimonial-card, .testimonial-card blockquote, .testimonial-card p, .testimonial-card strong {
  color: #2C374B !important;
  background: #F7F8FA !important;
}

/* --- END --- */
