/* CSS RESET & NORMALIZE - Scandinavian Clean Base */
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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F3F0;
  color: #23395D;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23395D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FFAC41;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: #23395D;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: #23395D;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p, li, .text-section {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #23395D;
}
strong { font-weight: 600; }

/* SPACING LAYOUT PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44,64,97,0.06);
}
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* HERO SECTION */
.hero {
  background: #EAF1F7;
  border-radius: 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
}
.hero .container { align-items: center; }
.hero h1 {
  color: #23395D;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  color: #23395D;
  max-width: 650px;
}
.hero .cta {
  margin-top: 10px;
}

/* CTA BUTTONS */
.cta, a.cta, .content-wrapper .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFAC41;
  color: #23395D;
  border-radius: 25px;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 10px 32px;
  margin-top: 16px;
  box-shadow: 0 2px 8px rgba(255,172,65,0.08);
  border: none;
  transition: background 0.24s, box-shadow 0.2s, transform 0.15s;
}
.cta:focus, .cta:hover {
  background: #ffd789;
  color: #23395D;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 16px rgba(255,172,65,0.13);
}

/* FEATURES-LIST, HIGHLIGHTS-LIST, ETC. */
.features-list, .highlights-list, .sample-recommendations, .genres-overview, .thematic-lists, .review-list, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-list li, .thematic-lists li, .review-list li, .sample-recommendations li, .genres-overview li, .event-list li {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,64,97,0.05);
  padding: 24px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  min-width: 210px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.features-list li:hover, .review-list li:hover, .thematic-lists li:hover, .sample-recommendations li:hover, .event-list li:hover {
  box-shadow: 0 6px 32px rgba(44, 64, 97, 0.12);
  transform: translateY(-2px) scale(1.018);
}
.features-list img {
  height: 38px;
  margin-bottom: 8px;
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.highlights-list article {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(44,64,97,0.06);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.highlights-list article:hover {
  box-shadow: 0 6px 32px rgba(44, 64, 97, 0.11);
  transform: translateY(-1px) scale(1.015);
}
.highlights-list article h3 {
  font-size: 1.125rem;
}
.highlights-list article a {
  color: #FFAC41;
  font-weight: 600;
  margin-top: 8px;
  transition: color 0.2s;
}
.highlights-list article a:hover, .highlights-list article a:focus {
  color: #23395D;
}

/* CARD CONTAINERS FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(44,64,97,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TEXT-IMAGE SECTION FLEXPATTERN */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-image-section .img {
  flex: 0 0 160px;
}
.text-image-section .text {
  flex: 1 1 220px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-left: 5px solid #FFAC41;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(44,64,97,0.07);
  padding: 24px 28px 16px 22px;
  margin-bottom: 24px;
  max-width: 540px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px rgba(255,172,65,0.13);
  border-left-color: #23395D;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #23395D;
  line-height: 1.5;
}
.testimonial-person {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #888c98;
  font-size: 0.95rem;
}

/* FILTER OPTIONS for buchrezensionen */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 0 0;
}
.filter-options ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#search-bar {
  background: #F5F3F0;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 7px 11px;
  min-width: 190px;
  transition: border 0.2s, box-shadow 0.2s;
}
#search-bar:focus {
  border-color: #FFAC41;
  box-shadow: 0 0 0 2px #FFAC4144;
}
.filter-options label {
  margin-right: 10px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion details {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(44,64,97,0.07);
  padding: 18px 22px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.faq-accordion details[open] {
  box-shadow: 0 4px 18px rgba(255,172,65,0.10);
}
.faq-accordion summary {
  font-weight: 600;
  color: #23395D;
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
}
.faq-accordion details p {
  margin-top: 12px;
  color: #273F5D;
  font-size: 1rem;
}

/* TOPIC TAGS */
.topic-tags {
  display: flex;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.topic-tags span {
  background: #EAF1F7;
  color: #23395D;
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.22s, color 0.16s;
}
.topic-tags span:hover {
  background: #FFAC41;
  color: #23395D;
}

/* MAP EMBED */
.map-embed {
  background: #F5F3F0;
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 1rem;
  color: #505768;
  font-style: italic;
  margin-bottom: 0;
}

/* NEWSLETTER SIGNUP/PROMO */
.newsletter-signup, .newsletter-promo {
  background: #EAF1F7;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44,64,97,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.newsletter-signup ul {
  margin-bottom: 18px;
  margin-left: 18px;
}
.newsletter-signup ul li {
  color: #23395D;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

/* NAVIGATION BAR & MOBILE MENU */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(44,64,97,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  min-height: 70px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  color: #23395D;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 2px;
  border-radius: 6px;
  transition: background 0.1s, color 0.2s;
}
header nav a.active, header nav a:focus, header nav a:hover {
  color: #FFAC41;
  background: #F5F3F0;
}
header img {
  height: 50px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #23395D;
  background: none;
  border: none;
  z-index: 123;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #FFAC41;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(35,57,93,0.87);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.64,.2,.63,1.45);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 25px 32px 0 0;
  font-size: 2.4rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFAC41;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 54px 38px 16px 38px;
  width: 100vw;
  box-sizing: border-box;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 14px 6px;
  border-radius: 10px;
  transition: background 0.1s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFAC41;
  color: #23395D;
}
/* HIDE DESKTOP NAV ON MOBILE AND SHOW BURGER */
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: 6px;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E2E2;
  box-shadow: 0 -2px 8px rgba(44,64,97,0.04);
  padding: 38px 0 28px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #23395D;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 0;
  opacity: 0.95;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFAC41;
}
footer img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
footer .text-section p {
  font-size: 0.98rem;
  color: #505768;
  margin: 2px 0 0 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #fff;
  border-top: 2px solid #FFAC41;
  box-shadow: 0 -2px 20px rgba(44,64,97,0.17);
  padding: 18px 12px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: slide-up-cookie 0.45s cubic-bezier(.54,.12,.62,1.25);
}
.cookie-banner p {
  color: #23395D;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: #FFAC41;
  color: #23395D;
  border: none;
  border-radius: 24px;
  padding: 8px 26px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0;
  transition: background 0.16s, color 0.2s, transform 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffd789;
  color: #23395D;
}
.cookie-banner .cookie-btn.secondary, .cookie-banner #cookie-settings-btn {
  background: #FFFFFF;
  color: #23395D;
  border: 1px solid #E2E2E2;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: #F5F3F0;
  color: #23395D;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,57,93,0.47);
  z-index: 1221;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 8px 38px rgba(44,64,97,0.12);
  padding: 32px 26px 22px 32px;
  max-width: 420px;
  width: 94vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.44s cubic-bezier(.64, 0.2, 0.43, 1.25);
}
@keyframes fadeInModal {
  from { transform: translateY(44px); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
.cookie-modal .modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 2px;
}
.cookie-modal .modal-content .cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
}
.cookie-modal .modal-content label {
  font-size: 1.05rem;
  color: #23395D;
  font-weight: 600;
}
.cookie-modal .modal-content input[type="checkbox"] {
  accent-color: #FFAC41;
  width: 19px;
  height: 19px;
}
.cookie-modal .modal-content .modal-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 13px;
  flex-wrap: wrap;
}
.cookie-modal .modal-content button {
  background: #FFAC41;
  color: #23395D;
  border: none;
  border-radius: 24px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.17s;
}
.cookie-modal .modal-content button.secondary {
  background: #fff;
  color: #23395D;
  border: 1px solid #E2E2E2;
}
.cookie-modal .modal-content button:hover, .cookie-modal .modal-content button:focus {
  background: #ffd789;
  color: #23395D;
}

/* CONTACT & TEXT SECTIONS */
.text-section {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #23395D;
}
.contact-information {
  margin-bottom: 22px;
  background: #EAF1F7;
  border-radius: 8px;
  padding: 16px 18px;
  color: #23395D;
  font-size: 1.01rem;
  font-weight: 500;
}
.contact-information a {
  color: #FFAC41;
  text-decoration: underline;
  font-weight: 600;
}
.contact-information a:hover, .contact-information a:focus {
  color: #23395D;
}

/* DETAILS and SUMMARY (Accordion) */
details {
  transition: background 0.2s;
}
details[open] summary:before {
  content: "−";
}
details summary:before {
  content: "+ ";
  font-weight: 700;
  font-size: 1.2em;
  color: #FFAC41;
  margin-right: 8px;
}

/* UTILITY: CARD GRID, CONTENT GRID, FEATURE-ITEM */
.card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING: general */
section, .section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* MEDIA QUERIES - RESPONSIVE FLEX LAYOUTS */
@media (max-width: 1000px) {
  .footer .container, .card-grid, .content-grid, .features-list, .thematic-lists, .highlights-list, .review-list, .sample-recommendations, .genres-overview, .newsletter-signup .container, .event-list {
    flex-direction: column !important;
    gap: 22px !important;
    align-items: stretch;
  }
  .feature-item {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.05rem; }
  section, .section, .newsletter-signup, .newsletter-promo {
    padding: 28px 6px 0 6px;
    margin-bottom: 35px;
    border-radius: 10px;
  }
  .container {
    padding: 0 6px;
    gap: 0;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 2px;
  }
  .features-list, .thematic-lists, .highlights-list, .review-list, .sample-recommendations, .genres-overview {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .features-list li, .thematic-lists li, .review-list li, .event-list li {
    min-width: 0;
  }
  .hero {
    padding: 25px 0 26px 0;
    border-radius: 0 0 18px 18px;
  }
  .newsletter-signup, .newsletter-promo {
    padding: 22px 8px 18px 8px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 18px 11px 12px 10px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  footer .container {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .cookie-modal .modal-content {
    padding: 18px 8px 17px 10px;
    max-width: 96vw;
  }
}
/* Accessibility: Focus style */
a, button, summary, input[type="text"]:focus {
  outline: 2px solid #FFAC41;
  outline-offset: 2px;
}

/* TRANSITIONS, MICRO-INTERACTIONS */
.card, .features-list li, .highlights-list article, .card-grid .card, .testimonial-card, .faq-accordion details {
  transition: box-shadow 0.18s, transform 0.12s, border-color 0.13s;
}

/* HIDE SCROLLBAR for cookie modal overlay */
.cookie-modal::-webkit-scrollbar {
  width: 0 !important;
}

/* Hide banner/modal overlays when not shown */
.cookie-banner.hidden {
  display: none !important;
  opacity: 0;
}

/* ANIMATIONS FOR BURGER MENU AND COOKIE BANNER */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100vw;
    height: 100vh;
    min-width: 0;
    min-height: 0;
  }
}

/* END OF SCANDINAVIAN CLEAN CSS */
