/* RESET & 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,
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: inherit;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FAFBFD;
  font-family: 'Roboto', Arial, sans-serif;
  color: #373742;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #FAFBFD;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #201A34;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #4BB749;
  outline: none;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}
button, .button {
  cursor: pointer;
}
:focus {
  outline: 2px solid #BEE4F7;
  outline-offset: 2px;
}

/* BRAND/PASTEL COLOR PALETTE ---------------------------------------------------*/
:root {
  --primary-color: #201A34;
  --secondary-color: #4BB749;
  --accent-color: #F5F7FA;
  --pastel-blue: #BEE4F7;
  --pastel-green: #D5F7E3;
  --pastel-lilac: #E4E3F9;
  --pastel-pink: #FFD7E0;
  --pastel-yellow: #FFF5DB;
  --gray-100: #FAFBFD;
  --gray-200: #F1F3F7;
  --gray-400: #C8CBD3;
  --shadow: 0 4px 24px rgba(60, 65, 111, 0.08);
  --radius: 20px;
  --transition: .3s cubic-bezier(0.4, 0.4, 0.2, 1);
}

/* TYPOGRAPHY -------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .5px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary-color);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}
h4, h5, h6 {
  color: var(--primary-color);
}
strong, b {
  font-weight: 700;
}
p, li {
  font-size: 1rem;
  color: #373742;
  margin-bottom: 0.75em;
}

/* LAYOUT & CONTAINERS ------------------------------------------------------------*/
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* CARDS & GRIDS (with FLEXBOX) -----------------------------------------------*/
.card-container,
.feature-grid,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 24px;
}

.feature-grid > div,
.card,
.card-content {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  padding: 28px 22px 24px 22px;
  box-shadow: 0 2px 12px rgba(100, 150, 220, 0.08);
  margin-bottom: 20px;
  flex: 1 1 235px;
  min-width: 235px;
  position: relative;
  transition: box-shadow var(--transition), transform .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0 6px 30px rgba(100, 150, 220, 0.14);
  transform: translateY(-4px) scale(1.025);
}

.card-content { justify-content: center; }


@media (max-width: 768px) {
  .feature-grid,
  .card-container,
  .card-grid,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div,
  .card {
    min-width: unset;
    width: 100%;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--pastel-yellow);
  border-radius: 18px;
  padding: 20px 32px 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(242, 203, 153, 0.16);
  border: 1px solid #F7ECD7;
  color: #251D3A;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px rgba(242, 203, 153, 0.23);
  transform: translateY(-2px) scale(1.018);
}
.testimonial-card strong {
  font-weight: 700;
  color: #201A34;
}

@media (max-width: 700px) {
  .testimonial-card {
    padding: 18px 12px;
    font-size: 15px;
    gap: 12px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO / HEADER --------------------------------------------------------------*/
header {
  background: linear-gradient(95deg, var(--pastel-blue) 70%, var(--pastel-pink) 100%);
  box-shadow: 0 1px 20px rgba(70, 100, 200, .07);
  padding: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  height: 46px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2C2140;
  padding: 6px 16px;
  border-radius: 12px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-green);
  color: var(--primary-color);
}

.button.primary {
  background: var(--secondary-color);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.16rem;
  box-shadow: 0 2px 16px rgba(75,183,73,0.08);
  letter-spacing: 0.02em;
  transition: background var(--transition), box-shadow var(--transition), transform .18s;
  border: 0;
  margin-left: 16px;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #41a640;
  box-shadow: 0 6px 22px rgba(75,183,73,0.21);
  transform: translateY(-2px) scale(1.03);
}

.button {
  background: var(--pastel-blue);
  color: var(--primary-color);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border-radius: 22px;
  font-size: 1rem;
  padding: 10px 26px;
  box-shadow: 0 1px 8px rgba(190, 228, 247, 0.11);
  border: none;
  margin-right: 10px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.button:hover, .button:focus {
  background: var(--pastel-green);
  color: var(--primary-color);
}

.button:active {
  transform: scale(0.97);
}

@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
  }
  .button.primary {
    margin-left: 8px;
    padding: 10px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav,
  .button.primary {
    display: none !important;
  }
}

/* HERO SECTION ---------------------------------------------------------------*/
.hero {
  background: linear-gradient(100deg, var(--pastel-blue) 70%, var(--pastel-pink) 100%);
  padding: 64px 0 42px 0;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  margin-bottom: 38px;
}
.hero .content-wrapper {
  box-shadow: none;
  background: none;
  align-items: flex-start;
  padding: 0 0 0 0;
  margin-bottom: 0;
  gap: 20px;
}
.hero h1 {
  font-size: 2.9rem;
  color: var(--primary-color);
  text-shadow: 0 1px 0 var(--pastel-yellow);
}
.hero p {
  font-size: 1.25rem;
}
.hero .button.primary {
  margin-top: 16px;
}
@media (max-width: 700px) {
  .hero {
    padding: 36px 0 24px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* CTA SECTION -------------------------------------------------------------*/
.cta .content-wrapper {
  background: linear-gradient(90deg, var(--pastel-pink) 65%, var(--pastel-lilac) 100%);
  box-shadow: 0 2px 18px rgba(241,140,167,0.10);
  border: 0;
  align-items: flex-start;
  text-align: left;
}
.cta h2 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 2.1rem;
}
.cta p {
  font-size: 1.12rem;
}
.cta .button.primary {
  margin-top: 10px;
}

/* FOOTER --------------------------------------------------------------*/
footer {
  background: linear-gradient(95deg, var(--pastel-blue) 75%, var(--pastel-green) 100%);
  padding-top: 36px;
  padding-bottom: 36px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  margin-top: 60px;
  box-shadow: 0 1px 24px rgba(65,183,73,0.03);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--primary-color);
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  transition: color .15s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--secondary-color);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  text-align: right;
  font-size: .96rem;
  color: var(--primary-color);
}
.footer-contact img {
  height: 40px;
  margin-bottom: 4px;
}
.footer-contact p, .footer-contact a {
  color: #221B37;
  margin-bottom: 1px;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}

/* MOBILE MENU (OVERLAY & BURGER BUTTON) ----------------------------------------*/
.mobile-menu-toggle {
  background: var(--pastel-blue);
  border: none;
  padding: 10px 15px 12px 15px;
  font-size: 2rem;
  border-radius: 12px;
  margin-left: auto;
  color: var(--primary-color);
  transition: background .2s, color .2s, transform .2s;
  z-index: 1031;
  display: none;
}
.mobile-menu-toggle:focus {
  background: var(--secondary-color);
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,247,250,0.98);
  backdrop-filter: blur(4px);
  z-index: 1040;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.7,.1,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--pastel-blue);
  color: var(--primary-color);
  font-size: 1.7rem;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  padding: 10px 15px 10px 15px;
  margin-top: 24px;
  margin-right: 22px;
  transition: background .22s, color .22s;
  z-index: 1045;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary-color);
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  padding-left: 34px;
  padding-right: 22px;
}
.mobile-nav a {
  color: var(--primary-color);
  font-size: 1.33em;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  padding: 14px 0;
  min-width: 180px;
  border-radius: 12px;
  transition: color .2s, background .2s;
  display: block;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-green);
  color: var(--secondary-color);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* TEXT SECTIONS ----------------------------------------------------------*/
.text-section {
  padding: 0 0 18px 0;
}
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

ul li {
  margin-bottom: 8px;
}
ul li:last-child {
  margin-bottom: 0;
}

/* FORMS ---------------------------------------------------*/
input, textarea, select {
  border: 1px solid var(--gray-400);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 16px;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 2px 12px rgba(190, 228, 247, .12);
  outline: none;
}

/* ANIMATIONS -------------------------------------------------------------*/
.button, .button.primary,
.feature-grid > div, .card, .testimonial-card, .cta .content-wrapper {
  transition: box-shadow var(--transition), background var(--transition), color var(--transition), transform .18s;
}

/* MICRO-INTERACTIONS: e.g. icon hover ------------------------------------*/
.feature-grid img, .footer-contact img, .testimonial-card img {
  filter: drop-shadow(0 1px 3px rgba(32,32,60,0.07));
  transition: transform .2s;
}
.feature-grid img:hover, .footer-contact img:hover, .testimonial-card img:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* COOKIE CONSENT BANNER -------------------------------------------------*/
.cookie-banner {
  position: fixed;
  z-index: 9998;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(to right, var(--pastel-lilac), var(--pastel-pink));
  box-shadow: 0 -2px 18px rgba(160,80,160,0.09);
  padding: 24px 18px 22px 18px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  opacity: 1;
  transform: translateY(0);
  animation: cookieIn .7s .2s cubic-bezier(.5,1.2,.72,.89) backwards;
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(60px); }
}
.cookie-banner p {
  margin: 0;
  color: #281B39;
  font-size: 1rem;
}
.cookie-banner .cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 20px;
  border: 0;
  padding: 11px 22px;
  margin-right: 10px;
  font-size: 1rem;
  transition: background .2s, color .2s, transform .13s;
  box-shadow: 0 1px 8px rgba(75,183,73,0.10);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #41a640;
}
.cookie-banner .cookie-secondary {
  background: var(--pastel-blue);
  color: var(--primary-color);
  border: 1px solid #BEE4F7;
  margin-right: 0;
}
.cookie-banner .cookie-secondary:hover, .cookie-banner .cookie-secondary:focus {
  background: var(--pastel-green);
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 6px;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* COOKIE MODAL ---------------------------------------------*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20, 14, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeIn .25s linear;
}
@keyframes fadeIn {
  from { opacity: 0; }
}
.cookie-modal {
  background: linear-gradient(92deg, var(--pastel-lilac) 75%, var(--pastel-pink) 100%);
  box-shadow: 0 4px 52px rgba(160,80,160,0.23);
  border-radius: 24px;
  max-width: 480px;
  width: 95vw;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalIn .3s cubic-bezier(.5,1.2,.72,.89);
}
@keyframes modalIn {
  from { transform: translateY(60px) scale(1.1); opacity: 0; }
}
.cookie-modal h3 {
  font-size: 1.33rem;
  margin-bottom: 13px;
  color: var(--primary-color);
}
.cookie-modal .category {
  background: var(--pastel-green);
  padding: 14px 12px;
  border-radius: 14px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category.essential {
  opacity: .81;
}
.cookie-modal label {
  font-size: 1rem;
  margin-right: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary-color);
  width: 18px; height: 18px;
}
.cookie-modal .cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 16px;
  border: 0;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 10px;
  margin-right: 8px;
}
.cookie-modal .cookie-secondary {
  background: var(--pastel-blue);
  color: var(--primary-color);
  border: 1px solid #BEE4F7;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 16px;
  background: var(--pastel-blue);
  color: var(--primary-color);
  border-radius: 8px;
  font-size: 1.2rem;
  border: none;
  padding: 7px 15px;
  transition: background .18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--secondary-color);
  color: #fff;
}

/* TABLES (if used at all) ----------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 1rem;
}
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--gray-400);
  text-align: left;
}
th {
  background: var(--pastel-lilac);
  color: var(--primary-color);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}


/* MEDIA QUERIES AND RESPONSIVE BREAKPOINTS ------------------------------------*/
@media (max-width: 750px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.08rem; }
}

@media (max-width: 500px) {
  .content-wrapper, .section {
    padding: 14px 2px;
    margin-bottom: 26px;
  }
  .hero {
    padding: 12px 0 10px 0;
  }
  .cta .content-wrapper {
    padding: 10px 2px;
  }
  footer {
    padding: 20px 2px;
    font-size: .93rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
}

/* UTILITIES / HELPERS ---------------------------------------------------------*/
.d-none, [hidden] { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.mt-20 { margin-top: 20px; }

/* OVERRIDE FORM CONTROLS (for accessibility)-----------------------------------*/
input[type=checkbox] {
  accent-color: var(--secondary-color);
  width: 18px; height: 18px;
  margin: 0 6px 0 0;
}

/* SPECIAL ICON STYLING ---------------------------------------------------------*/
img[alt^="Telefon"] {
  height: 20px !important;
  display: inline-block;
  width: auto;
  margin-right: 4px;
  vertical-align: middle;
  filter: grayscale(1) brightness(.9);
}
img[alt^="E-Mail"] {
  height: 20px !important;
  width: auto;
  margin-right: 4px;
  vertical-align: middle;
  filter: grayscale(1) brightness(.9);
}
img[alt^="Bewertung"] {
  height: 18px;
  width: 18px;
  margin-right: 2px;
  display: inline-block;
  vertical-align: middle;
}
img[alt^="Öffnungszeiten"] {
  height: 18px;
  width: auto;
  margin-right: 3px;
  vertical-align: middle;
}

/* MISC ------------------------------------------------------------------------*/
.email { word-break: break-all; color: var(--secondary-color); font-weight: bold; }

/* Selection color */
::selection {
  background: var(--pastel-lilac);
  color: var(--primary-color);
}

/* Remove grid/columns fallback ------------------------------------------------*/
/* No display: grid, no column-count, no column-gap, etc. – guaranteed by author. */
