/* ============================== */
/* FellFreunde Systeme Style Reset */
/* ============================== */
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF7F2;
  color: #243C2B;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-left: 1.3em;
  padding-left: 1em;
}

li {
  margin-bottom: 10px;
}

a {
  color: #528B7E;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #B79AE3;
  outline: none;
}

strong {
  font-weight: bold;
  color: #243C2B;
}

hr {
  border: none;
  border-top: 1px solid #e7e7ea;
  margin: 40px 0;
}

/* =================================== */
/* CSS Variables for Soft Pastel Theme */
/* =================================== */
:root {
  --primary: #243C2B;
  --secondary: #E3C59A;
  --accent: #ffffff;
  --pastel-blue: #CAF0F8;
  --pastel-pink: #F6D4E6;
  --pastel-green: #E3F6E8;
  --pastel-purple: #E6E6FA;
  --pastel-lilac: #EDE6F6;
  --pastel-yellow: #FDF6E3;
  --button-green: #80C7B6;
  --button-hover: #65B5AB;
  --neutral-dark: #243C2B;
  --neutral-mid: #B9B7BD;
  --shadow: 0 3px 16px 0 rgba(36,60,43,0.08);
  --radius: 22px;
}

/* ======================= */
/* Font Face (Google Fonts) */
/* ======================= */
@import url('https://fonts.googleapis.com/css?family=Lato:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem;  margin-bottom: 18px;}
h3 { font-size: 1.3rem;  font-weight: 700; margin-bottom: 12px;}
h4, h5, h6 { font-size: 1.1rem; }

.hero-tagline {
  font-size: 1.15rem;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
  color: #528B7E;
}
.subheadline {
  font-size: 1.02rem;
  color: #6c7c73;
  margin-bottom: 20px;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
}

/**************************************
  Layout Containers and Spacing Patterns
***************************************/
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 32px 4px rgba(36,60,43,0.14);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}

/****************************
*  Feature Grid and Items   *
****************************/
.features-grid, .team-grid, .author-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 min(230px,100%);
  min-width: 220px;
  background: #F6F8FC;
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.16s;
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.feature:hover {
  box-shadow: 0 8px 28px 0 rgba(36,60,43,0.14);
  background: #F0F8F3;
  transform: translateY(-4px) scale(1.025);
}
.feature strong {
  font-size: 1rem;
  color: #7D6DA8;
  font-family: 'Lato',sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
}

/****************************
*       Testimonials        *
****************************/
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 18px 26px;
  background: #FFFDF7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 280px;
  max-width: 400px;
  margin-bottom: 20px;
  color: #243C2B;
  font-size: 1.08rem;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card p {
  color: #312E23;
  font-family: 'Lato',sans-serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-family: 'Roboto',sans-serif;
  font-size: .98rem;
  color: #7D6DA8;
}
.testimonial-card:hover {
  box-shadow: 0 5px 24px 0 rgba(198,189,226,.18);
  transform: scale(1.02);
  background: #F8F2FF;
}

/****************************
*         Category Tags     *
****************************/
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 24px 0 10px 0;
}
.category-tags span {
  background: #e6e6fa;
  color: #8566cc;
  border-radius: 20px;
  padding: 5px 17px;
  font-size: 0.94rem;
  font-family: 'Roboto',sans-serif;
  letter-spacing: .01em;
}

/****************************
*      Footer Styles        *
****************************/
footer {
  background: #EDE6F6;
  padding: 48px 0 24px 0;
  color: var(--primary);
  font-size: 1rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
footer img {
  height: 44px;
  width: auto;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
footer nav a {
  color: #243C2B;
  font-family: 'Roboto',sans-serif;
  font-size: 1rem;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background .14s, color .14s;
}
footer nav a:hover, footer nav a:focus {
  background: #e3c59a21;
  color: #876d36;
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-copy {
  font-size: .97rem;
  color: #576C5C;
  margin-top: 14px;
  text-align: center;
}

/****************************
*     Buttons & CTAs        *
****************************/
.primary-cta {
  display: inline-block;
  background: var(--button-green);
  color: #243C2B;
  font-family: 'Lato',sans-serif;
  font-weight: bold;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 1.12rem;
  box-shadow: 0 3px 16px 0 rgba(55,110,85,0.09);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-top: 10px;
  transition: background 0.16s, box-shadow 0.14s, color 0.17s;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--button-hover);
  color: #1d3122;
  box-shadow: 0 8px 22px -1px rgba(120,193,171,.12);
}

button, .button {
  font-family: 'Lato',sans-serif;
  background: var(--secondary);
  border-radius: 25px;
  border: none;
  color: var(--primary);
  font-size: 1.02rem;
  padding: 10px 24px;
  box-shadow: 0 3px 10px 0 rgba(40,40,99,0.04);
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: background .13s, color .11s, box-shadow .13s;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #fbeec7;
  color: #67501a;
  outline: none;
}

/* ============================== */
/* Navigation Bar & Burger Styles  */
/* ============================== */
header {
  background: #F9F6FA;
  box-shadow: 0 2px 14px .5px #EDE6F6;
  padding: 0 0 0 0;
  position: relative;
  z-index: 10;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 10px 0;
}
header nav a {
  padding: 8px 18px;
  font-family: 'Lato',sans-serif;
  font-size: 1.02rem;
  color: #243C2B;
  border-radius: 19px;
  background: transparent;
  transition: background 0.1s, color 0.15s, box-shadow .13s;
}
header nav a.primary-cta {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 28px;
  padding: 11px 31px;
  margin-left: 10px;
  box-shadow: 0 2px 10px 0 rgba(227,197,154,.13);
}
header nav a.primary-cta:hover, header nav a.primary-cta:focus {
  background: #f8dfa5;
  box-shadow: 0 5px 20px 2px rgba(227,197,154,.18);
  color: #50421f;
  outline: none;
}
header nav a:hover, header nav a:focus {
  background: #e3c59a35;
  color: #67501a;
  outline: none;
}
header img {
  height: 42px;
  margin-right: 8px;
}

/* Hide burger menu on desktop */
.mobile-menu-toggle {
  display: none;
}

/****************************************
*     Mobile Burger Menu/Navigation     *
*****************************************/
@media (max-width: 980px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 25px;
    z-index: 1002;
    width: 46px;
    height: 46px;
    background: #E6E6FA;
    border-radius: 50%;
    border: none;
    color: var(--primary);
    font-size: 1.9rem;
    box-shadow: 0 2px 10px 0 rgba(137,122,194,0.06);
    cursor: pointer;
    transition: background .14s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #f1ebe8;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FFF7F2;
    box-shadow: 0 0 50px 0 rgba(67,46,104,0.08);
    z-index: 1003;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.7,.1,.67,1);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu-close {
    border: none;
    background: none;
    color: #7D6DA8;
    font-size: 2rem;
    align-self: flex-end;
    margin: 22px 30px 30px 0;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 1004;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    color: #b39ddb;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-left: 36px;
    margin-top: 0;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    color: #243C2B;
    font-family: 'Lato',sans-serif;
    padding: 14px 30px 14px 6px;
    border-radius: 20px;
    transition: background 0.14s, color .16s;
    width: 100%;
    display: block;
    margin-bottom: 4px;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: var(--secondary);
    color: #77591b;
  }
}

/****************************************
*       Cookie Consent Banner           *
*****************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3e7f8;
  box-shadow: 0 -2px 14px 0 rgba(198,189,226,0.23);
  padding: 22px 12px 21px 12px;
  width: 100vw;
  min-height: 66px;
  font-size: 1.04rem;
  font-family: 'Roboto',sans-serif;
  color: #43366b;
  animation: fadeUp .5s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-left: 24px;
}
.cookie-banner .cookie-btn {
  background: var(--button-green);
  color: #243C2B;
  border-radius: 25px;
  border: none;
  padding: 11px 20px;
  font-size: 1rem;
  margin: 0 5px;
  cursor: pointer;
  font-family: 'Lato',sans-serif;
  transition: background .14s, color .14s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--button-hover);
  color: #312E23;
}
.cookie-banner .cookie-btn.settings {
  background: var(--secondary);
  color: #43366b;
  border: 1px solid #DFD7ED;
}
.cookie-banner .cookie-btn.settings:hover,
.cookie-banner .cookie-btn.settings:focus {
  background: #f5e8d1;
  color: #8566cc;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/****************************************
*        Cookie Modal Overlay           *
*****************************************/
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: rgba(68,65,86,0.23);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #FFFBFA;
  border-radius: 22px;
  box-shadow: 0 12px 80px 9px rgba(172,136,230,0.10);
  max-width: 410px;
  width: 96vw;
  padding: 32px 34px 26px 34px;
  color: #2a1c34;
  font-family: 'Roboto',sans-serif;
  animation: fadeIn .32s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.915);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.cookie-modal-content h3 {
  font-size: 1.31rem;
  margin-bottom: 18px;
  color: #53398e;
  font-family: 'Lato',sans-serif;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 1.12rem;
  color: #434462;
  cursor: pointer;
  font-family: 'Roboto',sans-serif;
}
.cookie-modal-content input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #8566cc;
}
.cookie-modal-content .modal-btns {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-content .modal-btns button {
  min-width: 120px;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 18px;
  right: 32px;
  background: none;
  border: none;
  color: #8566cc;
  font-size: 1.48rem;
  cursor: pointer;
}
.cookie-modal-content .modal-close:hover,
.cookie-modal-content .modal-close:focus {
  color: #53398e;
}

/*****************************************
*        Miscellaneous Sections Styles   *
*****************************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 15px;
}
.author-profiles {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}

/*************************************
*   Section & Container Patterns     *
**************************************/
section {
  margin-bottom: 60px;
}
section > .container {
  padding-top: 0;
  padding-bottom: 0;
}

/*********************************
*   Responsive Styles (Mobile)    *
**********************************/
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 7px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  h3 { font-size: 1.12rem; }
  .features-grid, .testimonials, .card-container, .content-grid, .team-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-row {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 88vw;
    max-width: 97vw;
    padding: 18px 10px;
  }
  .mobile-nav {
    margin-left: 15px;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
  .feature {
    padding: 20px 10px;
    min-width: 96vw;
    max-width: 99vw;
  }
  .author-profiles {
    gap: 9px;
  }
}

/************************************/
/*   Utility Consistent Spacing      */
/************************************/
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

/*********************************
*  Micro-interactions & Effects  *
**********************************/
.primary-cta, .button, button {
  will-change: background, box-shadow, color, transform;
}

/************************************/
/*         Accessibility Hints       */
/************************************/
:focus {
  outline: 2px solid #B79AE3;
  outline-offset: 2px;
  transition: outline .12s;
}

/************************************/
/*     No unwanted scrollbars       */
/************************************/
body {
  overflow-x: hidden;
}

/************************************/
/*          No Grid Layouts         */
/************************************/
/* No grid/column layout used, only flexbox everywhere */
