/* --- CSS RESET & 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.5;
  background: #fffbe7;
  color: #232946;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
a {
  color: #232946;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #eebbc3;
}
ul, ol {
  list-style: none;
  padding: 0;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
}
button {
  cursor: pointer;
  background: none;
}

/* --- FONT FACE (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* --- GLOBAL CLASSES --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(232, 187, 195, 0.12);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 28px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(232, 187, 195, 0.22);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: center;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35, 41, 70, 0.06);
  margin-bottom: 28px;
  min-width: 0;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-card strong {
  color: #eebbc3;
}

/* --- BUTTONS & CTA --- */
.cta {
  display: inline-block;
  padding: 13px 30px;
  background: #eebbc3;
  color: #232946;
  border-radius: 24px;
  font-size: 18px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(232, 187, 195, 0.14);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  border: none;
  outline: none;
}
.cta.primary {
  background: #eebbc3;
}
.cta.secondary {
  background: #fff;
  color: #232946;
  border: 2px solid #eebbc3;
}
.cta:hover, .cta:focus {
  background: #232946;
  color: #fffbe7;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 18px rgba(35,41,70,0.13);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(232, 187, 195, 0.07);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.logo img {
  height: 46px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #232946;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #eebbc3;
  color: #232946;
}
header .cta {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: #eebbc3;
  color: #232946;
  border: none;
  border-radius: 50%;
  padding: 11px 14px;
  font-size: 28px;
  line-height: 1;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(232, 187, 195, 0.2);
  transition: background 0.15s;
  z-index: 110;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #232946;
  background: #fffbe7;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.44,0.12,0.24,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  justify-content: flex-start;
  box-shadow: 0 6px 36px rgba(232, 187, 195, 0.10);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #eebbc3;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  width: 44px;
  height: 44px;
  margin: 22px 18px 8px auto;
  color: #232946;
  box-shadow: 0 2px 8px rgba(232, 187, 195, 0.15);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232946;
  color: #fffbe7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 36px;
}
.mobile-nav a {
  font-size: 22px;
  color: #232946;
  font-family: 'Merriweather', serif;
  padding: 14px 6px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.1s, color 0.15s;
  min-width: 200px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eebbc3;
  color: #232946;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 14px;
  }
  header .logo img {
    height: 38px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta {
    display: none;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #fffbe7;
  padding: 60px 0 56px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 28px;
  text-align: center;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #232946;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.19rem;
  color: #b98089;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}

/* --- HEADLINES & TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #232946;
  font-weight: 700;
}
h1 { font-size: 2rem; margin-bottom: 10px; }
h2 { font-size: 1.5rem; margin-bottom: 7px; }
h3 { font-size: 1.2rem; margin-bottom: 4px; }
h4 { font-size: 1rem; }
p, ul, ol, li {
  font-size: 16px;
  color: #232946;
}
strong {
  color: #eebbc3;
  font-weight: 700;
  font-family: inherit;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 2.6rem; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.24rem; }
}
@media (min-width: 870px) {
  .hero h1 { font-size: 2.9rem; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.32rem; }
}

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

/* --- FEATURES GRID / FEATURE CARDS --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(232, 187, 195, 0.11);
  padding: 30px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.feature img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  padding: 4px;
  background: #fffbe7;
}
.feature:hover {
  box-shadow: 0 6px 18px rgba(232, 187, 195, 0.20);
  transform: translateY(-2px) scale(1.03);
}
.feature h3 {
  margin-bottom: 4px;
}
.feature p {
  color: #494b61;
}

/* --- ACCENT BG SECTION --- */
.accent-bg {
  background: #fffbe7;
  border-radius: 24px;
  margin-top: 32px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 3px 16px rgba(232, 187, 195, 0.07);
}

/* --- REVIEWS AND LISTS --- */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 15px;
}
.review-preview {
  background: #fff;
  border-radius: 13px;
  padding: 24px 20px;
  box-shadow: 0 1px 9px rgba(232, 187, 195, 0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.13s;
}
.review-preview:hover {
  box-shadow: 0 4px 18px rgba(232, 187, 195, 0.12);
}
.review-preview h3 {
  font-size: 1.18rem;
  margin-bottom: 3px;
}
.review-preview span {
  color: #eebbc3;
  font-weight: 700;
  margin-top: 4px;
  display: inline-block;
}

/* --- FEATURE CARDS (emphasized, lesetipps, recommendations) --- */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px 20px 28px;
  box-shadow: 0 2px 8px rgba(232, 187, 195, 0.09);
  margin-bottom: 20px;
  margin-top: 16px;
  transition: box-shadow 0.13s;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(232, 187, 195, 0.17);
}

.book-summary strong {
  font-size: 1.09em;
}
.book-summary span {
  color: #eebbc3;
  font-weight: 700;
}

/* --- TEAM SECTION --- */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.team-member {
  background: #fff;
  padding: 16px 20px;
  border-radius: 13px;
  flex: 1 1 200px;
  min-width: 180px;
  box-shadow: 0 1px 8px rgba(232, 187, 195, 0.07);
  margin-bottom: 12px;
  font-size: 1rem;
  color: #232946;
}

/* --- INFO BOX --- */
.info-box {
  background: #fffbe7;
  border-left: 7px solid #eebbc3;
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 16px;
  color: #232946;
  box-shadow: 0 1px 8px rgba(232, 187, 195, 0.07);
}

/* --- FILTERS (Events) --- */
.filters {
  margin-top: 18px;
  background: #fff;
  border-radius: 13px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  box-shadow: 0 1px 8px rgba(232, 187, 195, 0.07);
}
.filters strong {
  color: #eebbc3;
}

/* --- FOOTER --- */
footer {
  background: #232946;
  color: #fff;
  padding: 32px 0 20px 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: 0px -4px 24px rgba(232, 187, 195, 0.05);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #eebbc3;
  font-weight: 600;
  font-size: 15px;
  padding: 7px 6px;
  border-radius: 7px;
  transition: background 0.1s, color 0.1s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fffbe7;
  color: #232946;
}
.footer-info {
  font-size: 14px;
  color: #eebbc3;
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232946;
  color: #fff;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px 18px 10px;
  box-shadow: 0 -4px 22px rgba(35, 41, 70, 0.14);
  gap: 18px;
  animation: slideUp 0.5s;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner__btn {
  background: #eebbc3;
  color: #232946;
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.17s, color 0.17s, transform 0.13s;
}
.cookie-banner__btn.settings {
  background: #fffbe7;
  color: #232946;
  border: 1.5px solid #eebbc3;
}
.cookie-banner__btn.reject {
  background: #fffbe7;
  color: #b98089;
  border: 1.5px solid #eebbc3;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #232946;
  color: #fffbe7;
  transform: scale(1.03);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 41, 70, 0.40);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeInModal 0.29s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__content {
  background: #fffbe7;
  color: #232946;
  border-radius: 20px;
  min-width: 310px;
  max-width: 98vw;
  box-shadow: 0 8px 32px rgba(232, 187, 195, 0.20);
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: #eebbc3;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 21px;
  color: #232946;
  text-align: center;
  transition: background 0.18s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #232946;
  color: #fffbe7;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
}
.cookie-modal__category label {
  font-weight: 600;
  font-family: 'Open Sans';
  flex: 1 1 auto;
}
.cookie-modal__category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  accent-color: #eebbc3;
}
.cookie-modal__essential {
  color: #b98089;
}

/* --- TEXT SECTIONS / GENERAL --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 6px;
  color: #232946;
  gap: 7px;
  display: flex;
  flex-direction: column;
}
.text-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* --- UTILITY: GAPS, FLEX, ETC. --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 860px) {
  .team-section {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .content-grid, .features-grid, .team-section, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .accent-bg {
    margin-top: 18px;
    margin-bottom: 36px;
    padding: 22px 10px;
  }
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
  }
  .feature {
    min-width: 0;
    width: 100%;
  }
  .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 520px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-nav {
    gap: 8px;
  }
  .accent-bg {
    border-radius: 14px;
  }
  .feature-card, .info-box, .review-preview, .testimonial-card { padding: 14px 10px; }
  .team-member { padding: 11px 7px; }
}

/* --- ANIMATIONS AND INTERACTIONS --- */
.cta, .cookie-banner__btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.card, .feature-card, .team-member, .testimonial-card, .info-box {
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover, .feature-card:hover, .team-member:hover, .testimonial-card:hover, .info-box:hover {
  box-shadow: 0 8px 22px rgba(232, 187, 195, 0.14);
  transform: translateY(-2px) scale(1.01);
}
.main-nav a:focus, .mobile-nav a:focus, .cta:focus, .cookie-banner__btn:focus {
  outline: 2px solid #eebbc3;
  outline-offset: 2px;
}

/* --- INPUT FIELDS STYLES (for future forms) --- */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  border: 1.5px solid #eebbc3;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: #232946;
  margin-bottom: 14px;
  width: 100%;
  transition: border-color 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #232946;
  outline: none;
}


/* --- DARK TEXT ON LIGHT BG FOR TESTIMONIALS --- */
.testimonial-card p,
.testimonial-card strong,
.testimonial-card span {
  color: #232946;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #fffbe7;
}
::-webkit-scrollbar-thumb {
  background: #eebbc3;
  border-radius: 6px;
}

/* --- Z-INDEX LAYERING --- */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 9000; }
.cookie-modal { z-index: 10000; }

/* End of style.css for Leselicht Oldenburg */
