/* RESET & BASELINE ---------------------- */
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.6;
  background: #F4F2F9;
  color: #4B2842;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}
a {
  color: #E07797;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5B3663;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
address {
  font-style: normal;
  margin-bottom: 16px;
  color: #633a6b;
  line-height: 1.7;
}

/* TYPOGRAPHY ------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #5B3663;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.5rem;
  margin: 32px 0 16px 0;
}
h3 {
  font-size: 1.125rem;
  margin: 28px 0 10px 0;
}
h4 {
  font-size: 1rem;
  margin: 18px 0 8px 0;
}
p, .text-section {
  font-size: 1rem;
  color: #4B2842;
  margin-bottom: 16px;
}
.text-section {
  margin: 0 0 28px 0;
}

/* BUTTONS -------------------------------- */
.cta-button, .cta-nav, button, .cookie-banner button, .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.8em 2.2em;
  background: #E07797;
  color: #fff;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(224,119,151,0.11);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.15s, color 0.2s;
  font-weight: 600;
  outline: none;
  margin: 8px 8px 8px 0;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-button:hover, .cta-nav:hover, button:hover, .cookie-banner button:hover, .cookie-modal-actions button:hover,
.cta-button:focus, .cta-nav:focus {
  background: #5B3663;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(91,54,99,0.13);
  text-decoration: none;
}
.cta-nav {
  background: #5B3663;
  color: #fff;
  padding: 0.65em 1.6em;
  border-radius: 20px;
  margin-left: 14px;
  box-shadow: 0 1px 6px 0 rgba(91,54,99,0.07);
}

/* LAYOUT: CONTAINER ---------------------- */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* LAYOUT: FLEX SECTIONS ------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 32px 0 rgba(224,119,151,0.04), 0 1.5px 8px 0 rgba(91,54,99,0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 15px 0 rgba(224,119,151,0.095);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 36px 0 rgba(224,119,151,0.12), 0 1.5px 16px 0 rgba(91,54,99,0.07);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(91,54,99,0.08);
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 18px 22px;
  box-shadow: 0 1.5px 8px 0 rgba(224,119,151,0.06);
}

/* HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  box-shadow: 0 4px 32px 0 rgba(91,54,99,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px 0;
}
.header-flex a img {
  height: 48px;
  width: auto;
  border-radius: 14px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #5B3663;
  padding: 6px 12px;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: #E07797;
  color: #fff;
}

/* HERO BANNER --------------------------- */
.hero, .about-hero, .services-hero, .preise-hero, .galerie-hero, .kontakt-hero, .thankyou {
  background: #F4F2F9;
  border-radius: 0 0 32px 32px;
  padding-top: 32px;
  padding-bottom: 38px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #5B3663;
  margin-bottom: 8px;
  letter-spacing: -0.6px;
}
.hero p {
  color: #5B3663;
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.hero .cta-button {
  margin-top: 14px;
  font-size: 1.18rem;
}

/* LISTS STYLES -------------------------- */
.features ul, .about-features ul, .services-list ul, .preise-table ul, .galerie-stil ul, .cookie-policy ul, .datenschutz ul, .gdpr ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding: 0 0 0 1.4em;
}
.features li, .about-features li, .services-list li, .preise-table li, .galerie-stil li, .cookie-policy li, .datenschutz li, .gdpr li {
  font-size: 1.08rem;
  color: #5B3663;
  border-left: 5px solid #E07797;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px 12px 22px;
  margin-bottom: 8px;
  box-shadow: 0 1px 5px 0 rgba(224,119,151,0.03);
  transition: background 0.22s;
}
.features li:hover, .about-features li:hover, .services-list li:hover, .preise-table li:hover, .galerie-stil li:hover {
  background: #FAE5EC;
}

/* TESTIMONIALS -------------------------- */
.testimonials {
  background: #FAE5EC;
  border-radius: 26px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 18px;
}
.testimonial-card p {
  color: #5B3663;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.testimonial-author {
  display: block;
  color: #E07797;
  font-weight: 600;
  margin-top: 4px;
  font-style: italic;
}

/* FOOTER -------------------------------- */
footer {
  background: #5B3663;
  color: #fff;
  padding: 40px 0 24px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo img {
  height: 38px;
  border-radius: 12px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
footer nav a,
footer .footer-contact a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline dotted;
  margin-right: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  transition: background 0.14s;
}
footer nav a:hover, footer .footer-contact a:hover {
  background: #E07797;
  color: #fff;
}
.footer-contact {
  font-size: 0.98rem;
  margin-top: 8px;
  color: #E07797;
  word-break: break-all;
}
footer .footer-contact a {
  color: #FFD6E2;
  text-decoration: underline;
}

/* SECTIONS ------------------------------ */
.section, .about-hero, .services-hero, .preise-hero, .galerie-hero, .kontakt-hero, .thankyou, .features, .about-features, .services-preview, .testimonials, .contact-short, .services-list, .services-cta, .preise-table, .preise-cta, .galerie-stil, .cookie-policy, .terms-of-service, .datenschutz, .gdpr, .kontakt-block, .kontakt-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 32px 0 rgba(224,119,151,0.04), 0 1.5px 8px 0 rgba(91,54,99,0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/***** RESPONSIVE DESIGN: MOBILE-FRIENDLY *****/
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .header-flex {
    flex-direction: row;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-grid,
  .testimonial-list,
  .card-container,
  .features ul,
  .about-features ul {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .section, .about-hero, .services-hero, .preise-hero, .galerie-hero, .kontakt-hero, .thankyou {
    padding: 28px 0 32px 0;
    border-radius: 14px;
  }
  .hero h1, .about-hero h1, .galerie-hero h1, .preise-hero h1, .services-hero h1, .kontakt-hero h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .footer-logo img {
    height: 30px;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .card {
    min-width: 80vw;
    padding: 16px;
  }
}

/***** MOBILE BURGER MENU ********************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #5B3663;
  font-size: 2rem;
  padding: 6px 10px;
  border-radius: 12px;
  cursor: pointer;
  z-index: 210;
}
@media (max-width: 1050px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none !important;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F4F2F9;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 32px 18px 24px 18px;
  gap: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 0 100vw rgba(91,54,99,0.12);
}
.mobile-menu-close {
  align-self: flex-end;
  color: #E07797;
  font-size: 2rem;
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe9f3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #5B3663;
  background: #fff;
  padding: 10px 16px;
  border-radius: 14px;
  margin-bottom: 3px;
  min-width: 140px;
  width: fit-content;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E07797;
  color: #fff;
}

/****** COOKIE BANNER ***********************/
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #5B3663;
  box-shadow: 0 4px 32px 0 rgba(224,119,151,0.13);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  z-index: 301;
  min-width: 290px;
  max-width: 95vw;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  background: #E07797;
  color: #fff;
  font-weight: 600;
  border-radius: 16px;
  border: none;
  padding: 8px 18px;
  margin-bottom: 0;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #E07797;
  border: 2px solid #E07797;
}
.cookie-banner button.cookie-settings:hover {
  background: #E07797;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 10px;
    font-size: 0.98rem;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
  }
}

/****** COOKIE MODAL POPUP *****************/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(91,54,99,0.22);
  z-index: 310;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #5B3663;
  border-radius: 18px;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 4px 28px 0 rgba(224,119,151,0.11);
  width: 95vw;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(.66,.01,.26,1.02);
}
@keyframes modalIn {
  from { transform: scale(0.93) translateY(48px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: #E07797;
  border-radius: 10px;
  cursor: pointer;
  padding: 3px 10px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FAE5EC;
}
.cookie-modal h2 {
  margin: 0 0 14px 0;
  font-size: 1.22rem;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}
.cookie-toggle-label {
  color: #5B3663;
  font-size: 1rem;
}
.cookie-toggle-switch {
  width: 38px;
  height: 22px;
  background: #FAE5EC;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  border: 1.5px solid #E07797;
  display: inline-block;
}
.cookie-toggle-switch[aria-checked="true"] {
  background: #E07797;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s cubic-bezier(.39,.47,.38,1.2);
  box-shadow: 0 1.5px 7px 0 rgba(91,54,99,0.05);
}
.cookie-toggle-switch[aria-checked="true"] .cookie-toggle-slider {
  transform: translateX(16px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}
.cookie-modal-actions button {
  background: #E07797;
  color: #fff;
  border-radius: 14px;
  padding: 7px 16px;
  font-weight: 600;
  border: none;
}
.cookie-modal-actions button.cookie-action-cancel {
  background: #fff;
  color: #E07797;
  border: 2px solid #E07797;
}
.cookie-modal-actions button.cookie-action-cancel:hover {
  background: #E07797;
  color: #fff;
}

/****** UTILS / SPACING / MICRO ---------------------------- */
.gap-20 { gap: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.rounded-16 { border-radius: 16px !important; }
.bg-accent { background: #F4F2F9 !important; }
.bg-primary { background: #5B3663 !important; color: #fff !important; }
.bg-secondary { background: #E07797 !important; color: #fff !important; }
.soft-shadow {
  box-shadow: 0 2px 8px 0 rgba(224,119,151,0.1), 0 1.5px 12px 0 rgba(91,54,99,0.06);
}

/****** FORMS ------------------------------ */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 16px;
  border: 1.3px solid #E07797;
  background: #fff;
  color: #5B3663;
  padding: 10px 14px;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border-color: #5B3663;
}

/****** ANIMATIONS ------------------------ */
.cta-button, .cta-nav, button, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform 0.18s;
}
.cta-button:active, .cta-nav:active, button:active {
  transform: scale(0.97);
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.17s, background 0.2s, transform 0.16s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.99);
}

/****** GENERAL ACCESSIBILITY / FOCUS ------ */
:focus {
  outline: 2.2px solid #E07797;
  outline-offset: 2px;
}

/****** CUSTOM SCROLLBAR (Modern Browsers) */
::-webkit-scrollbar {
  width: 10px;
  background: #F4F2F9;
}
::-webkit-scrollbar-thumb {
  background: #E07797;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #5B3663;
}

/****** PRINT SUPPORT --------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .content-wrapper, .container {
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}
