/* 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 {
  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;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253239;
  background: #FBF9F6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}

/* Brand Colors (with fallback vars for easy overrides) */
:root {
  --primary: #22577A;
  --secondary: #F6DFB6;
  --accent: #C7F9CC;
  --text: #253239;
  --background: #FBF9F6;
  --muted: #E9E7DF;
  --border: #E4E4E2;
  --white: #fff;
  --shadow: 0 2px 16px rgba(34, 87, 122, 0.07), 0 1px 2px rgba(34, 87, 122, 0.03);
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--background);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 600; color: var(--primary); }
.subheadline {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
  font-weight: 500;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
strong { font-weight: 700; color: var(--primary); }

/* Container & General Spacing */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* Header ============================ */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(34,87,122,0.05);
  padding-top: 0;
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
  gap: 20px;
}
header img[alt="Leipziger Hautgeflüster"] {
  height: 48px;
  width: auto;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color 0.12s;
}
.main-nav a:hover,
.footer-nav a:hover {
  color: var(--accent);
}

.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 11px 32px;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 3px 12px rgba(34,87,122,0.08);
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(199,249,204,0.10);
}

/* Mobile Menu ======================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  margin-left: 14px;
  color: var(--primary);
  cursor: pointer;
  z-index: 100;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(34,87,122,0.84);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.62,0,0.29,1.05);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 1210;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin-top: 90px;
  margin-left: 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  border-radius: 18px;
  padding: 10px 22px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header img[alt="Leipziger Hautgeflüster"] {
    height: 40px;
  }
}

/* Hero Section ====================== */
.hero {
  display: flex;
  align-items: center;
  background: var(--secondary);
  min-height: 320px;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 32px rgba(225,205,140,0.11);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 60px 0;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: var(--text);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero .container { padding: 34px 0; }
  .hero { border-radius: 0 0 16px 16px; }
  h1 { font-size: 2rem; }
}

/* Section and Content Layouts ======= */
.features, .services, .about-intro, .about-team, .about-mission, .about-history, .workshop-details, .benefits, .content-grid, .content-list, .content-overview, .examples, .contact-form, .cta, .advice, .testimonials, .contact-small, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-grid, .content-list, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .content-list {
    flex-direction: column;
    gap: 22px;
  }
}

/* Card & List Patterns ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 18px rgba(34,87,122,0.12);
  transform: translateY(-3px) scale(1.02);
}

ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.content-wrapper ul li,
.features ul li,
.services ul li, .about-team ul li,
.about-mission ul li,
.about-history ul li, .workshop-details ul li, .benefits ul li, .content-grid ul li, .content-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
  padding: 0 0 0 4px;
}
.features ul li span,
.services ul li span,
.feature-item span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  justify-content: center;
  margin-right: 8px;
}
.features ul img, .features ul svg, .services ul img {
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}

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

/* Testimonial Cards ================== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px 32px 20px 24px;
  max-width: 450px;
  min-width: 260px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: box-shadow 0.16s, border 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(34,87,122,0.12);
  border-color: var(--accent);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--text);
}
.author {
  font-size: 0.96rem;
  font-style: italic;
  color: var(--primary);
}
.stars {
  font-size: 1.3rem;
  color: #F6C900;
  letter-spacing: 1.5px;
  margin-left: -2px;
}

.trust-signals {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  background: var(--accent);
  color: var(--primary);
  border-radius: 18px;
  padding: 4px 18px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 1px 5px rgba(34,87,122,0.03);
}

/* Call to action + Contact small ==== */
.contact-small .content-wrapper, .cta .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Legal pages / simple content blocks */
.legal .content-wrapper {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px;
  gap: 16px;
  margin-top: 24px;
}

/* Address & Social Icons ============ */
.address {
  color: var(--primary);
  font-size: .93rem;
  margin: 14px 0 10px 0;
  letter-spacing: .01em;
}
.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.social-icons img {
  width: 32px;
  height: 32px;
  display: inline-block;
  filter: grayscale(0.15);
  opacity: 0.9;
  transition: transform 0.14s, opacity 0.19s;
}
.social-icons img:hover, .social-icons img:focus {
  transform: scale(1.10);
  opacity: 1;
}


/* Footer ============================ */
footer {
  background: var(--muted);
  padding: 38px 0 18px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 7px 0;
  border-radius: 12px;
  transition: background 0.11s, color 0.14s;
}
.footer-nav a:hover {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 850px) {
  footer .footer-nav {
    gap: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container {
    align-items: flex-start;
    padding-left: 12px;
  }
}

/* Cookie Consent Banner ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--secondary);
  color: var(--primary);
  z-index: 3000;
  box-shadow: 0 -6px 36px rgba(34,87,122,0.14);
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 24px 28px 24px;
  font-size: 1rem;
  animation: cookie-slide-in .8s cubic-bezier(.7,0,.18,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 280px;
  max-width: 700px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 18px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 7px 0 0;
  transition: background 0.18s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 8px rgba(34,87,122,.05);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn.accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.08);
  box-shadow: 0 4px 18px rgba(225,205,140,0.10);
}

/* Cookie Modal Overlay ============== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,87,122,.42);
  z-index: 3300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(34,87,122,0.17);
  max-width: 95vw;
  width: 420px;
  padding: 34px 32px 28px 32px;
  position: relative;
  animation: cookie-modal-in .5s cubic-bezier(.7,0,.18,1);
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translateY(50px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--muted);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}
.cookie-category .toggle {
  position: relative;
  width: 40px;
  height: 24px;
  display: inline-block;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: var(--muted);
  border-radius: 22px;
  transition: background 0.13s;
}
.cookie-category .toggle input:checked + .slider {
  background: var(--accent);
}
.cookie-category .slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-category .toggle input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-category .slider {
  box-shadow: 0 1px 6px rgba(34,87,122,0.12);
}
.cookie-category.essential .slider {
  background: var(--accent);
}
.cookie-category.essential .slider:before {
  background: var(--primary);
}
.cookie-category .category-desc {
  font-size: .92rem;
  color: #466;
  flex: 1 1 0;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .cookie-modal {
    width: 98vw;
    min-width: unset;
    padding: 18px 10px 14px 12px;
  }
}

/* Responsive ======================== */
@media (max-width: 600px) {
  .container,
  .content-wrapper,
  .testimonial-card,
  .card,
  .section,
  .hero .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .testimonial-card { padding: 16px 14px; }
  .section, .features, .services, .content-overview, .contact-small, .about-intro, .about-history, .content-grid, .workshop-details, .legal, .benefits, .examples {
    padding: 21px 3px;
    border-radius: 10px;
  }
  .card { padding: 13px 8px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  .hero { min-height: 185px; }
}

/* Animations & Micro-interactions ==== */
a, .cta-btn, .cookie-btn, .card, .footer-nav a, .testimonial-card {
  transition: all .14s cubic-bezier(.7,0,.18,1);
}
ul li, .feature-item {
  transition: background 0.13s;
}
ul li:hover, .feature-item:hover {
  background: var(--accent);
  border-radius: 12px;
}

/* Accessibility ===================== */
:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
}

/* Utilities & Misc ================== */
.hide {
  display: none !important;
}

/* Custom Scrollbar ================== */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/******************************/
/* End of Scandinavian_Clean */
/******************************/
