/* =====================
   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,
main, 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;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #023047;
  background: #fff;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: #A7445C;
  transition: color 0.2s linear;
}
a:hover, a:focus {
  color: #F6E7CA;
  background: #A7445C;
  border-radius: 4px;
  outline: none;
  transition: color 0.2s linear, background 0.2s linear;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 8px;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

/* ===============
     TYPOGRAPHY
   ================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #A7445C;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
p {
  color: #023047;
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
strong {
  color: #A7445C;
}
em {
  color: #023047;
  font-style: italic;
}

/* ===============
    CONTAINER & LAYOUT
   ================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(167, 68, 92, 0.09);
  transition: box-shadow 0.25s cubic-bezier(.5,1.7,.6,.2);
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(167, 68, 92, 0.20);
  z-index: 2;
  transform: translateY(-4px) scale(1.02);
}
.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: 20px 28px;
  background: #F6E7CA;
  color: #023047;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(2,48,71,0.06);
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 480px;
  transition: box-shadow 0.22s, transform 0.19s;
  border: 2px solid #A7445C11;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(2,48,71,0.16);
  transform: scale(1.025) rotate(-1deg);
}
.testimonial-card p {
  color: #023047;
  font-size: 1.12rem;
  line-height: 1.6;
  font-style: italic;
  text-align: center;
}
.testimonial-meta {
  color: #A7445C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(167,68,92,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 210px;
  max-width: 320px;
  padding: 30px 22px 22px 22px;
  gap: 10px;
  margin-bottom: 20px;
  border: 2px solid #F6E7CA;
  transition: border-color 0.15s, box-shadow 0.19s;
}
.feature:hover {
  border-color: #A7445C;
  box-shadow: 0 8px 24px 0 rgba(167,68,92,0.13);
  transform: scale(1.018) rotate(-0.7deg);
}
.feature img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  background: #F6E7CA;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 1px 6px 0 rgba(2,48,71,0.06);
}
.feature h3 {
  color: #023047;
  font-size: 1.16rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.feature p {
  color: #023047;
  font-size: 0.98rem;
  margin-bottom: 0;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
.features-icons img {
  width: 60px;
  height: 60px;
  background: #fff8e9;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(167,68,92,0.10);
  padding: 10px;
}
/* ===============
     HEADER & NAV
   ================ */
header {
  width: 100%;
  background: #F6E7CA;
  box-shadow: 0 4px 12px 0 rgba(167,68,92,0.05);
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.logo img {
  width: 130px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 20px;
}
.main-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #023047;
  font-weight: 600;
  transition: color 0.18s;
  padding: 5px 14px;
  border-radius: 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #A7445C;
}
.button.primary {
  background: #A7445C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 28px;
  box-shadow: 0 2px 8px 0 #A7445C22;
  letter-spacing: 0.4px;
  transition: background 0.18s, box-shadow 0.20s, transform 0.15s;
  margin-left: 20px;
  margin-right: 0;
  display: inline-block;
  border: 2px solid transparent;
}
.button.primary:hover,
.button.primary:focus {
  background: #023047;
  color: #F6E7CA;
  box-shadow: 0 5px 15px 0 #02304722;
  transform: translateY(-2px) scale(1.05);
  border: 2px solid #F6E7CA;
}
.button.secondary {
  background: #F6E7CA;
  color: #A7445C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 16px;
  padding: 8px 22px;
  box-shadow: 0 2px 6px 0 #F6E7CA55;
  margin-left: 10px;
  transition: background 0.19s, box-shadow 0.13s, color 0.14s, transform 0.12s;
  border: 2px solid #A7445C33;
}
.button.secondary:hover,
.button.secondary:focus {
  background: #A7445C;
  color: #fff;
  box-shadow: 0 6px 15px 0 #A7445C18;
  transform: rotate(-1deg) scale(1.05);
  border: 2px solid #F6E7CA;
}
.mobile-menu-toggle {
  font-size: 2rem;
  color: #A7445C;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 104;
  margin-left: 18px;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #A7445C22;
}
/* Hide on desktop */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.77,.33,.61,1.2), opacity 0.22s;
  box-shadow: -4px 0 18px 0 #A7445C19;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #A7445C;
  margin: 28px 32px 0 0;
  background: none;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6E7CA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  margin-top: 48px;
  margin-right: 38px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #023047;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9px;
  margin-left: 12px;
  margin-bottom: 0;
  background: none;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A7445C;
  color: #fff;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .button.primary {
    display: none;
  }
}
/* ===============
     HERO BANNER
   ================ */
.hero {
  background: linear-gradient(120deg,#F6E7CA 65%, #A7445C11 100%);
  padding: 68px 0 56px 0;
  width: 100%;
  margin-bottom: 48px;
}
.hero .container {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  color: #A7445C;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.23rem;
  color: #023047;
}
.hero .button.primary {
  margin-top: 18px;
}

/* ===============
    FOOTER
  ================ */
footer {
  background: #F6E7CA;
  padding: 34px 0 0 0;
  margin-top: 36px;
  box-shadow: 0 -2px 12px 0 #A7445C13;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.footer-menu {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-menu a {
  color: #A7445C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.12s, color 0.11s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #A7445C;
  color: #fff;
}
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.social-links img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: box-shadow 0.14s, transform 0.11s;
  box-shadow: 0 2px 5px 0 #A7445C18;
}
.social-links a:hover img {
  box-shadow: 0 4px 16px #A7445C26;
  transform: scale(1.12) rotate(-7deg);
}
.legal-info {
  text-align: center;
  color: #023047;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
/* ===========
  SECTIONS
=========== */
.about, .services, .contact, .contact-details, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Map image in Kontakt */
.map img {
  width: 290px;
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #A7445C18;
}

/* ===============
   COOKIE CONSENT
   =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #A7445C;
  color: #fff;
  box-shadow: 0 -5px 26px 0 #A7445C55;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10020;
  padding: 24px 32px 26px 32px;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  animation: cookieBannerSlideIn 0.6s cubic-bezier(.77,.33,.51,1.21);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner .button,
.cookie-banner button {
  border-radius: 8px;
  border: none;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 0;
}
.cookie-banner .accept {
  background: #fff;
  color: #A7445C;
  border: 2px solid #F6E7CA;
  transition: background 0.16s, color 0.14s, box-shadow 0.14s;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #F6E7CA;
  color: #A7445C;
  box-shadow: 0 2px 6px 0 #F6E7CA55;
}
.cookie-banner .reject {
  background: #F6E7CA;
  color: #A7445C;
  border: 2px solid #fff;
  transition: background 0.15s, color 0.13s, box-shadow 0.10s;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #A7445C;
  color: #fff;
  border: 2px solid #F6E7CA;
}
.cookie-banner .settings {
  background: #023047;
  color: #fff;
  border: 2px solid #F6E7CA;
  transition: background 0.17s, color 0.13s, box-shadow 0.10s;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F6E7CA;
  color: #A7445C;
}

/* --------- COOKIE MODAL --------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #A7445C99;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal 0.28s cubic-bezier(.77,.33,.61,1.14);
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #023047;
  border-radius: 22px;
  box-shadow: 0 6px 40px 0 #A7445C44;
  padding: 40px 28px 34px 28px;
  max-width: 385px;
  min-width: 260px;
}
.cookie-modal h2 {
  color: #A7445C;
  margin-bottom: 20px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: #023047;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  accent-color: #A7445C;
  width: 1.1em;
  height: 1.1em;
}
.cookie-category.essential label {
  color: #A7445C; font-weight: 800; cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #A7445C55;
}

.cookie-modal .accept {
  background: #A7445C;
  color: #fff;
  border: none;
}
.cookie-modal .accept:hover { background: #023047; }
.cookie-modal .save {
  background: #F6E7CA;
  color: #A7445C;
}
.cookie-modal .save:hover {
  background: #A7445C;
  color: #FFF;
}
.cookie-modal .cancel {
  background: none;
  color: #A7445C;
  border: none;
}
.cookie-modal .cancel:hover {
  text-decoration: underline;
}
/* ===============
     ANIMATIONS
  ================ */
.fadein {
  animation: fadeInAnim 0.77s cubic-bezier(.56,.12,.46,1.23);
}
@keyframes fadeInAnim {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Micro-interactions for playful, dynamic style */
.card, .feature, .testimonial-card, .button, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.21s, background 0.18s, color 0.15s, transform 0.16s, border-color 0.14s;
}
.card:hover, .feature:hover, .button:hover, .main-nav a:hover, .mobile-nav a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 21px 0 #A7445C19;
}

/* =========
   SPACING
========== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature {
  margin-bottom: 20px;
}
.content-grid, .card-container, .feature-grid, .features-icons, .testimonial-list {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card, .feature-item {
  gap: 15px;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 16px;
  }
  .section, section { padding: 28px 6px; }
}
@media (max-width: 768px) {
  .section, section { padding: 18px 2vw; }
  .about, .services, .contact, .contact-details, .legal { padding: 18px 2vw; }
  .container { padding-left: 4px; padding-right: 4px; }
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .feature {
    min-width: 170px;
    max-width: 98vw;
    padding: 18px 12px 14px 12px;
    font-size: 97%;
  }
  .testimonial-card {
    min-width: 95vw;
    max-width: 99vw;
    padding: 16px 8px;
    font-size: 95%;
  }
  .main-nav { display: none !important; }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 8px 6px;
  }
  .logo img { width: 94px; }
  .footer-menu {
    gap: 8px;
    font-size: 15px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .social-links {
    gap: 10px;
    margin-bottom: 10px;
  }
  .legal-info {
    font-size: 0.89rem;
  }
  .map img {
    width: 96vw;
    height: auto;
    max-width: 385px;
    min-width: 160px;
  }
  .content-grid, .card-container { gap: 12px; }
  .features-icons img { width: 44px; height: 44px; }
  .hero {
    padding: 36px 0 20px 0;
    margin-bottom: 28px;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 1.03rem;
  }
  .feature h3 { font-size: 1.04rem; }
}
/* Text-image-section: flex column on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
/* ============
   UTILITY
========== */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

/* ==============
  PRINT SUPPORT
=============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  .section, section {
    margin-bottom: 20px !important;
    page-break-after: always;
  }
}

/* ===========
   FUN FONTS
 =========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary: #A7445C;
  --secondary: #023047;
  --accent: #F6E7CA;
  --radius: 18px;
}

/* =============
   PLAYFUL DECOR
 ============= */
.hero,
.feature,
.button.primary, .button.secondary,
.testimonial-card {
  /* Subtle wobbly animation for extra fun */
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  left: -60px; top: -40px;
  width: 100px; height: 100px;
  background: #F6E7CA;
  border-radius: 50%;
  opacity: 0.26;
  z-index: 0;
  pointer-events: none;
  animation: floatBlob 7.2s linear infinite alternate;
}
@keyframes floatBlob {
  0% { transform: translateX(0) scale(1) rotate(5deg); }
  100% { transform: translateY(28px) scale(1.09) rotate(-6deg); }
}
.button.primary, .button.secondary {
  animation: buttonPop 2.5s cubic-bezier(.93,.2,.34,.99) infinite alternate-reverse;
  animation-delay: 1.2s;
}
@keyframes buttonPop {
  0% { transform: scale(1) rotate(0deg); }
  55% { transform: scale(1.04) rotate(-2deg); }
  100% { transform: scale(0.98) rotate(2.7deg); }
}
.feature img {
  animation: bounceIcon 6.6s infinite cubic-bezier(.5,1.78,.6,.16);
}
@keyframes bounceIcon {
  10% { transform: translateY(0); }
  18% { transform: translateY(-6px) rotate(-8deg); }
  24% { transform: translateY(0); }
  44% { transform: translateY(0) rotate(7deg); }
  52% { transform: translateY(-4px) rotate(0deg); }
  64% { transform: translateY(0); }
}

/* ==============
   END OF FILE
 ============= */
