/* Reset & Normalize */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
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 { line-height: 1.5; background: #131D2D; color: #ffffff; min-height: 100vh; -webkit-font-smoothing: antialiased; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* Font Import */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg,#16223b 0%, #20465c 90%);
  color: #e8f2fc;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #50A884;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }

p, li, blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: #e8f2fc;
  margin-bottom: 12px;
}
strong { color: #55fbb6; font-weight: 700; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  max-width: 750px;
  margin: 0 auto;
}

/***** MAIN NAV *****/
header {
  background: rgba(20,33,55,0.96);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 10px 0;
}
.main-nav .logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
.main-nav a {
  color: #55fbb6;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  border-radius: 20px;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:not(.logo):hover, .main-nav a.active {
  background: #50A884;
  color: #1C5376;
  box-shadow: 0 0 6px 2px #1C5376;
  text-shadow: 0 0 8px #00ffe7aa;
}
.main-nav .logo img { height: 36px; }

/**** Mobile menu hamburger ****/
.mobile-menu-toggle {
  display: none;
  background: #131D2D;
  color: #55fbb6;
  border: 2px solid #50A884;
  border-radius: 8px;
  font-size: 2.2rem;
  padding: 4px 10px;
  margin-left: auto;
  transition: box-shadow 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  box-shadow: 0 0 8px 2px #50A884;
  outline: none;
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #0c1524e6;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: transform 0.35s cubic-bezier(.9, .1, .2, 1) 0s, opacity 0.2s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 130;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #ffffff;
  border: none;
  font-size: 2.3rem;
  margin: 24px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #55fbb6;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  margin-top: 40px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #00ffe6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #50A884;
  border-color: #50A884;
}

/***** HERO SECTION *****/
.hero {
  padding: 60px 0 40px 0;
  min-height: 340px;
  background: linear-gradient(135deg,#1C5376 60%, #50A884 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1, .hero h2, .hero h3 { color: #fff; text-shadow: 0 4px 24px #1C5376cc; }
.hero p { color: #e5fcff; }

/***** FEATURES *****/
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper { gap: 32px; }
.feature-grid, .tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 10px;
  justify-content: space-between;
}
.feature-grid li, .tip-grid li {
  background: #162e44;
  flex: 1 1 210px;
  min-width: 220px;
  max-width: 255px;
  border-radius: 22px;
  padding: 32px 20px 28px 20px;
  box-shadow: 0 4px 32px 0 #08242e5d, 0 1.5px 0 0 #50A88420;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
  border: 2px solid #1C5376;
}
.feature-grid li img, .tip-grid li img {
  width: 38px; height: 38px; margin-bottom: 8px;
  filter: drop-shadow(0 2px 7px #3ee8e6cc);
}
.feature-grid li:hover, .tip-grid li:hover {
  box-shadow: 0 10px 36px 4px #50A88450, 0 2px 12px #55fbe744;
  transform: translateY(-2px) scale(1.03);
  border-color: #50A884;
}
.age-badge {
  display: inline-block;
  background: #50A884;
  color: #1C5376;
  font-size: 14px;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 2px 6px #00ffe844;
}

/***** CATEGORY, QUICK LINKS *****/
.category-list {
  margin-top: 24px;
  color: #fff6b2;
  font-size: 1rem;
  font-weight: 600;
}
.quick-links {
  margin-top: 12px;
  color: #aafffa;
}
.quick-links a {
  color: #55fbb6;
  text-decoration: underline;
  margin: 0 6px;
  transition: color 0.15s;
}
.quick-links a:hover {
  color: #00ffea;
}

/***** TESTIMONIALS *****/
.testimonials, .testimonial {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper, .testimonial .content-wrapper {
  gap: 28px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px 20px 24px;
  border-radius: 20px;
  background: #f4fafd;
  color: #24335c;
  box-shadow: 0 3px 18px 2px #00ffe645, 0 2px 6px #50A8841f;
  margin-bottom: 20px;
  min-width: 220px;
  border-left: 5px solid #50A884;
  transition: box-shadow 0.19s, border 0.13s;
  flex-wrap: wrap;
}
.testimonial-card p {
  color: #1B283d;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card .testimonial-info {
  color: #1C5376;
  margin-left: auto;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card .testimonial-info span {
  color: #FFD600;
  font-size: 1.12em;
  margin-left: 7px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 54px 12px #50A88447, 0 10px 16px #1C537644;
  border-left-color: #1C5376;
}

/***** CTA / PRIMARY BUTTONS *****/
.cta {
  display: inline-block;
  background: #1C5376;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 13px 34px;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 10px #00ffa878;
  border: none;
  outline: none;
  position: relative;
  transition: background 0.17s, color 0.15s, box-shadow 0.19s, transform 0.12s;
  cursor: pointer;
  z-index: 5;
}
.cta.primary {
  background: #50A884;
  color: #1C5376;
}
.cta.secondary {
  background: #1C5376;
  color: #50A884;
}
.cta:hover, .cta:focus {
  background: #1C5376;
  color: #55fbb6;
  box-shadow: 0 0 20px 5px #17fff6b9;
  outline: none;
  transform: translateY(-2px) scale(1.04);
}


/***** FOOTER *****/
footer {
  background: #171e2d;
  padding: 44px 0 24px 0;
  color: #b3e0fb;
  font-size: 1rem;
  border-top: 3px solid #50A88428;
}
footer .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #55fbb6;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  word-break: break-word;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #243d58;
  color: #fffbe4;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a { color: #a1fce7; transition: color 0.13s; }
.footer-contact a:hover { color: #50A884; }

/***** LEGAL, THANK YOU, MISC TEXT BLOCKS *****/
.legal, .thankyou, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal ul, .legal ol {
  margin-bottom: 22px;
  margin-top: 0;
  padding-left: 25px;
}
.legal h2 { color: #55fbb6; }
.address-block, .opening-hours, .phone-email-info {
  margin-top: 14px; margin-bottom: 8px;
  color: #e8f2fc;
}
.user-rights-section { margin: 18px 0; }
.blockquote, .expert-quote {
  background: #223b51;
  color: #b2fff2;
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 5px solid #55fbb6;
  font-style: italic;
  border-radius: 12px;
  box-shadow: 0 2px 16px #20ffdad8;
}

/***** WEATHER TABS (Wetterseite) *****/
.weather-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.tab {
  background: #1d344a;
  color: #e6fdff;
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px #50a88419;
  font-weight: 600;
  margin-bottom: 10px;
}
.tab img { width: 24px; }

/***** ARTICLE & CONTENT LISTS *****/
.article-list {
  margin-left: 0;
  list-style: none;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #e8f2fc;
}
.article-list li {
  margin-bottom: 10px;
  padding-left: 0;
}
.article-list a {
  color: #50A884;
  text-decoration: underline;
  transition: color 0.12s;
}
.article-list a:hover, .article-list a:focus {
  color: #55fbb6;
}
.seasonal-recommendations {
  background: #164b40;
  color: #c8fff6;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 32px;
  box-shadow: 0 2px 8px #00ffe639;
}

/***** COOKIE BANNER & PREFERENCES MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #232E3D;
  color: #e8f2fc;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 20px;
  z-index: 800;
  box-shadow: 0 -3px 24px #00ffe439;
  font-size: 1rem;
  gap: 28px;
  border-top: 3px solid #50A88499;
  animation: slideUp 0.36s cubic-bezier(.7, .4, .6, 1);
}
@keyframes slideUp { from { transform: translateY(100%); opacity:0; } to {transform:translateY(0); opacity:1; } }
.cookie-banner p {
  margin-right: auto;
  color: #e8f2fc;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  padding: 10px 24px;
  border: none;
  transition: background 0.17s, color 0.12s, box-shadow 0.21s;
  cursor: pointer;
  box-shadow: 0 1.5px 7px #00ffc422;
}
.cookie-btn.accept {
  background: #50A884;
  color: #1C5376;
}
.cookie-btn.reject {
  background: #fff;
  color: #1C5376;
  border: 1.2px solid #50A884;
}
.cookie-btn.settings {
  background: #1C5376;
  color: #55fbb6;
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 0 14px 2px #55fbb655;
  transform: scale(1.04);
  outline: none;
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #2b3563;
  color: #fff;
  z-index: 999;
  min-width: 324px;
  max-width: 96vw;
  border-radius: 14px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 18px 64px #00ffe7bb, 0 6px 18px #1C537699;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: cookieModalPop 0.32s cubic-bezier(.9, .1, .4, 1) both;
}
.cookie-modal.open { display: flex; }
@keyframes cookieModalPop { from { opacity:0; transform: translate(-50%,-48%) scale(0.95);} to { opacity: 1; transform:translate(-50%,-50%) scale(1);} }
.cookie-modal h2 {
  color: #55fbb6;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
}
.cookie-modal .toggle {
  width: 38px; height: 22px;
  border-radius: 14px;
  background: #16223b;
  border: 2px solid #50A884;
  position: relative;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-modal .toggle[data-enabled="true"] {
  background: #50A884;
}
.cookie-modal .toggle-knob {
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left 0.22s;
}
.cookie-modal .toggle[data-enabled="true"] .toggle-knob {
  left: 18px;
}
.cookie-modal .close-modal {
  align-self: flex-end;
  font-size: 1.7rem;
  background: none;
  color: #fff;
  border: none;
  margin-top: 2px;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .close-modal:hover { color: #55fbb6; }
.cookie-modal .cookie-btn {margin-top: 14px;}

/***** SPACING & FLEX LAYOUTS *****/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #1d324a;
  border-radius: 18px;
  box-shadow: 0 1.5px 10px #50A88421;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 7px 32px #50A88431;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** RESPONSIVE DESIGN *****/
@media (max-width: 1060px) {
  .feature-grid li, .tip-grid li {
    flex: 1 1 46%;
    max-width: 100%;
  }
  .content-wrapper { gap: 20px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    font-size: 15px;
  }
  .footer-nav { gap: 7px; }
  .feature-grid li, .tip-grid li {
    flex: 1 1 96%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  .content-grid, .card-container, .feature-grid, .tip-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-logo img {
    height: 38px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
    gap: 16px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .feature-grid li, .tip-grid li {
    padding: 18px 12px 18px 14px;
    min-width: 0; max-width: 100%;
  }
  .testimonial-card {
    padding: 14px 10px;
    border-radius: 12px;
  }
  .section, .features, .legal, .thankyou, .contact {
    padding: 26px 6px;
  }
}

/***** MICRO-INTERACTIONS *****/
a, button, .cta, .cookie-btn, .mobile-menu-toggle {
  transition: background 0.17s, color 0.13s, border 0.15s, box-shadow 0.13s, transform 0.14s;
}

/***** UTILITY CLASSES *****/
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.gap-20 { gap: 20px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }

/***** HIDE FOR JS-ACTIVE, NO SCROLL WHEN MODALS OPEN *****/
body.menu-open, body.modal-open {
  overflow: hidden;
}

/***** CUSTOM SCROLLBAR *****/
::-webkit-scrollbar { width: 10px; background: #171e2d; }
::-webkit-scrollbar-thumb { background: #1C5376; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #50A884; }

/***** ICON UTILITY *****/
img[alt*='icon-'], img[alt*='Icon-'] {
  vertical-align: middle;
  filter: drop-shadow(0px 1px 5px #38a9aa70);
}

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