/* CSS RESET & NORMALIZE */
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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #EDF7EE;
  color: #235242;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #235242;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DEB887;
  outline-offset: 2px;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #235242;
}
h1 { font-size: 2.5rem; margin-bottom: 0.5em; letter-spacing: -0.05em; }
h2 { font-size: 2rem; margin-bottom: 0.5em; letter-spacing: -0.04em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 0.3em; }

/* CUSTOM PROPERTIES w/ FALLBACKS */
:root {
  --color-primary: #235242;
  --color-secondary: #DEB887;
  --color-accent: #EDF7EE;
  --color-pink: #F78FB3;
  --color-yellow: #FFE66D;
  --color-blue: #4FC3F7;
  --color-peach: #FFB285;
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(35,82,66,0.07);
  position: relative;
}

.card-container, .feature-grid, .service-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div,
.service-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(35,82,66,0.07);
  padding: 28px 24px 22px 24px;
  min-width: 230px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover, .service-grid > div:hover {
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(35,82,66,0.13);
}
.card {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(35,82,66,0.07);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
}
.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: flex-start;
  gap: 20px;
  padding: 20px 32px;
  background: #fffbe3;
  color: #211C08;
  border-left: 8px solid var(--color-primary);
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px 0 rgba(35,82,66,0.07);
  font-family: var(--font-display);
  font-size: 1.1rem;
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 220px;
  max-width: 540px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px 0 rgba(255,182,133,0.15);
  border-left-color: #F78FB3;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HERO SECTION */
.hero {
  padding: 0;
  min-height: 350px;
  background: linear-gradient(90deg, #F78FB3 0%, #DEB887 60%, #4FC3F7 100%);
  position: relative;
  border-radius: 0 0 60px 60px / 0 0 32px 32px;
  margin-bottom: 60px;
  animation: heroBgWave 5s infinite alternate ease-in-out;
  overflow: hidden;
}
@keyframes heroBgWave {
  0% { background-position: 0 0; }
  100% { background-position: 50% 20%; }
}
.hero h1 {
  color: var(--color-primary);
  text-shadow: 2px 2px 0 #FFE66D, 0 4px 16px #fffbe3;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.047em;
  animation: popIn 1.2s cubic-bezier(.65,-0.01,.43,1.25) both;
}
.hero p {
  font-family: var(--font-body);
  font-size: 1.34rem;
  color: #235242;
  margin-bottom: 16px;
  animation: popIn 1.6s cubic-bezier(.65,-0.01,.43,1.25) 0.09s both;
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(.85) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.content-wrapper {
  padding: 56px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
}
.cta {
  margin-bottom: 60px;
  background: #4FC3F7;
  border-radius: 24px;
  box-shadow: 0 5px 20px 0 rgba(247,143,179,.10);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 {
  color: #fff;
  text-shadow: 0 1px 8px #23524299;
  font-weight: 700;
}
.cta .cta-primary {
  margin-top: 16px;
}

/* BUTTONS */
.cta-primary, .footer-nav a.cta-primary {
  display: inline-block;
  background: linear-gradient(93deg, #F78FB3 0%, #4FC3F7 100%);
  color: #235242;
  font-size: 1.16rem;
  border: none;
  border-radius: 40px;
  padding: 14px 38px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2px 10px 0 rgba(35,82,66,0.04);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.21s, color .11s, box-shadow 0.22s, transform 0.13s;
  margin-top: 12px;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(93deg, #FFE66D 0%, #F78FB3 100%);
  color: #211C08;
  box-shadow: 0 4px 16px 0 rgba(247,143,179,0.17);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #DEB88733;
  box-shadow: 0 2px 14px 0 rgba(35,82,66,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  position: relative;
  justify-content: flex-start;
  font-family: var(--font-body);
}
.main-nav a {
  font-size: 1rem;
  color: #235242;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  margin: 2px 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
  position: relative;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: #F78FB3;
  color: #fff;
}
.main-nav .cta-primary {
  margin-left: auto;
}
.main-nav img {
  height: 36px;
  width: auto;
  margin-right: 8px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #235242;
  border: none;
  cursor: pointer;
  margin-right: 22px;
  z-index: 1102;
  transition: color 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F78FB3;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1101;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,-0.01,.43,1.25);
  box-shadow: 8px 0 40px 0 #EF5B8A22;
  overflow-y: auto;
  padding-top: 44px;
}
.mobile-menu.open {
  transform: translateX(0);
  animation: slidemenu 0.4s cubic-bezier(.79,.13,.33,.92) 0s 1 both;
}
@keyframes slidemenu {
  0% { transform: translateX(-100vw); }
  100% { transform: translateX(0); }
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  left: 20px;
  background: #F78FB3;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(35,82,66,0.08);
  z-index: 1102;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #4FC3F7; color: #235242; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding: 32px 32px 32px 28px;
}
.mobile-nav a {
  color: #235242;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 24px 13px 10px;
  transition: background 0.17s, color 0.18s, transform 0.13s;
  border-radius: 22px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #fff;
  background: #4FC3F7;
  transform: scale(1.08) translateX(6px);
}
.mobile-nav a.cta-primary {
  background: linear-gradient(93deg, #F78FB3 0%, #4FC3F7 100%);
  color: #235242;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
}

/* FOOTER */
footer {
  background: #235242;
  color: #fff;
  padding: 46px 0 30px 0;
  font-size: 1rem;
  border-radius: 32px 32px 0 0 / 24px 24px 0 0;
  margin-top: 33px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.94;
  font-family: var(--font-body);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #235242;
  background: #FFE66D;
}
.footer-nav a.cta-primary {
  padding: 10px 24px;
  font-size: 1.05rem;
  background: #F78FB3;
  color: #235242;
  margin-left: 16px;
  font-weight: bold;
}
.footer-contact {
  font-size: 0.98rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  opacity: 0.98;
}
.footer-contact img {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  margin-right: 3px;
}
footer img[alt="Blütengarten Krefeld"] {
  height: 50px;
  width: auto;
  margin-right: 16px;
}

/* CARD, BLOCKQUOTE, ADDRESS */
blockquote {
  padding: 12px 22px;
  background: #FFFBE3;
  border-left: 6px solid #FFE66D;
  font-style: italic;
  font-size: 1.1rem;
  color: #235242;
  border-radius: 16px;
  margin-bottom: 22px;
}
address {
  font-style: normal;
  background: #EDF7EE;
  padding: 14px 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #235242;
  font-size: 1rem;
}

/* GENERAL TABLES (if any are used in future) */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0 24px 0;
}
th, td {
  border: 1px solid #DEB887;
  padding: 10px;
  background: #fff;
}
th {
  background: #F78FB3;
  color: #235242;
}

/* FORMS (FOR FUTURE) */
input, textarea, select, button {
  border-radius: 6px;
  border: 1px solid #AFB4A2;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.19s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F78FB3;
  box-shadow: 0 1px 7px 0 #FFE66D55;
}
button {
  background: #F78FB3;
  color: #235242;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.04rem;
  transition: background 0.16s, color 0.13s;
}
button:hover, button:focus {
  background: #4FC3F7;
  color: #211C08;
}

/* LISTS */
ul, ol {
  margin-bottom: 18px;
}
li {
  margin-bottom: 8px;
  line-height: 1.8;
}
ol ul, ul ul, ul ol, ol ol {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
  color: #235242;
}
em {
  color: #F78FB3;
}

/* MICRO ANIMATIONS */
.feature-grid > div img, .service-grid > div img {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  animation: floatIcon 2.5s infinite alternate cubic-bezier(.8,.13,.86,.91);
}
@keyframes floatIcon {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px) rotate(-6deg); }
}

/* ANIMATED BUTTON WOBBLE */
.cta-primary {
  animation: btnBounce 2.9s infinite .7s cubic-bezier(.41,-0.04,.43,1.17);
}
@keyframes btnBounce {
  0% { transform: translateY(0); }
  3% { transform: translateY(-3px) scale(1.03); }
  8% { transform: translateY(2px) scale(.97); }
  15% { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 890px) {
  .feature-grid > div, .service-grid > div {
    flex: 0 1 260px;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 8px; }
  .hero { border-radius: 0 0 32px 32px / 0 0 14px 14px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; right: 7px; top: 13px; }
  .footer-nav { gap: 12px; }
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .section, .cta {
    padding: 24px 10px;
    margin-bottom: 30px;
  }
  .feature-grid, .service-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card { min-width: 0; max-width: 100%; }
  .content-wrapper, .text-section {
    padding: 0;
    align-items: flex-start;
    text-align: left;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 480px) {
  .header, .footer { border-radius: 0; }
  .container { padding: 0 2px; }
  .cta-primary { padding: 12px 15px; font-size: 1.05rem; }
  .main-nav img, footer img[alt="Blütengarten Krefeld"] { height: 36px; }
}

/* SPACING/ALIGNMENT UTILITIES (MANDATORY) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========== COOKIE BANNER AND MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #235242;
  padding: 22px 16px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -2px 16px #DEB88733;
  border-radius: 18px 18px 0 0;
  gap: 20px;
  animation: slideUpCookie 0.45s cubic-bezier(.6,.04,.37,1.04) both;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 200px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 10px 18px;
  border-radius: 30px;
  border: none;
  background: #F78FB3;
  color: #235242;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 4px #23524211;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFE66D;
  color: #211C08;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #23524299;
  z-index: 1300;
  animation: fadeInModal .34s cubic-bezier(.7,.11,.32,.94) both;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(0.99);
  background: #fff;
  color: #235242;
  z-index: 1310;
  width: 100%;
  max-width: 360px;
  padding: 38px 26px 28px 26px;
  border-radius: 20px;
  box-shadow: 0 8px 44px 0 #F78FB355, 0 1px 8px #DEB88733;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownCookieModal .42s cubic-bezier(.91,.12,.59,.99) both;
}
@keyframes slideDownCookieModal {
  0% { transform: translate(-50%, -82%) scale(0.92); opacity: .2; }
  94% { opacity: 1; }
  100% { transform: translate(-50%, -55%) scale(0.99); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  font-family: var(--font-display);
  color: #235242;
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 7px;
  padding: 8px 0 4px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #F78FB3;
  width: 22px; height: 22px; margin-right: 7px;
  cursor: pointer;
}
.cookie-modal-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #235242;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 14px; right: 18px;
  background: #4FC3F7;
  color: #235242;
  border-radius: 50%;
  border: none;
  width: 32px; height: 32px;
  font-size: 1.34rem;
  box-shadow: 0 2px 5px #4FC3F733;
  cursor: pointer;
}
.cookie-modal .close-modal-btn:hover {
  background: #F78FB3;
  color: #fff;
}

/* HIDE/SHOW cookie banner and modal logic - default hidden  */
.cookie-banner, .cookie-modal-backdrop, .cookie-modal {
  display: none;
}
.cookie-banner.active {
  display: flex;
}
.cookie-modal-backdrop.active,
.cookie-modal.active {
  display: block;
}

/* COLORS FOR HIGHLIGHTS & PLAYFUL ELEMENTS */
.text-section em, .feature-grid > div em { color: #F78FB3; font-style: normal; }
.text-section strong, .feature-grid > div strong { color: #235242; font-weight: bold; }
.text-section h2, .text-section h3, .feature-grid h3, .service-grid h3 { color: #F78FB3; font-family: var(--font-display); }

/* BADGES OR PRICE TAGS */
.price-tag {
  display: inline-block;
  background: #FFE66D;
  color: #235242;
  font-weight: 700;
  font-size: .99rem;
  border-radius: 16px;
  padding: 2px 11px;
  margin-left: 8px;
}

/* MISC */
::-webkit-input-placeholder { color: #B6B6B6; }
::-moz-placeholder { color: #B6B6B6; }
:-ms-input-placeholder { color: #B6B6B6; }
::placeholder { color: #B6B6B6; }

/* Hide scrollbar for mobile nav */
.mobile-menu::-webkit-scrollbar {
  display: none;
}

/* -------- END -------- */
