/* ============================================
   DWD MASSAGE & FUSSPFLEGE – MODERNES DESIGN
   (aufgeräumt / ohne Dopplungen / gleiche Funktion)
   ============================================ */

/* =========================
   Design Tokens
========================= */
:root{
  --accent: #d0c7e1;
  --accent-light: #eee8f5;

  --text-dark: #1c1c1c;
  --text-light: #666;

  --bg-light: #f8f7f5;

  /* Sticky-Header Offset (für #anker Sprünge) */
  --header-offset: 88px;
}

@media (max-width: 768px){
  :root{ --header-offset: 78px; }
}

html{
  scroll-padding-top: var(--header-offset);
}

/* =========================
   Reset / Base
========================= */
*,
*::before,
*::after{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: "Poppins","Segoe UI",sans-serif;
  color: #222;
  background-color: #fff;
  line-height: 1.6;
}

img{
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a{
  text-decoration: none;
  color: inherit;
}

.container{
  width: min(1100px, 90%);
  margin-inline: auto;
}

/* =========================
   Header / Navigation
========================= */
.main-header{
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo{
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.logo img{
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px){
  .logo img{ height: 45px; }
}

.main-nav{ position: relative; }

.nav-links{
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a{
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
}

.nav-links a.active,
.nav-links a:hover{
  color: var(--accent);
}

.nav-links a.active::after,
.nav-links a:hover::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Mobile Navigation */
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span{
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 3px;
}

@media (max-width: 768px){
  .nav-links{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    flex-direction: column;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .main-nav.open .nav-links{ display: flex; }
  .nav-toggle{ display: flex; }
}

/* =========================
   Sections (global)
========================= */
.section{ padding: 4rem 0; }

.section h2{
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.section-eyebrow{
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* =========================
   Hero (Startseite)
   (finales Layout / Box-Style)
========================= */
.hero{
  background-color: #f7f3fb;
  border-radius: 20px;
  padding: 3.5rem 3rem;
  width: min(1150px, 94%);
  margin: 2.5rem auto 3.5rem auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;

  box-shadow: 0 14px 45px rgba(0,0,0,0.06);
}

.hero-content{
  flex: 1 1 420px;
  max-width: 520px;
  text-align: left;
}

.hero-content .eyebrow,
.hero .eyebrow{
  color: #8f7faf;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.hero-content h1,
.hero h1{
  font-size: clamp(2rem, 2.2vw + 1rem, 3rem);
  line-height: 1.25;
  color: #1b1b1b;
  margin-bottom: 1.2rem;
}

.hero-content .btn.primary-btn{ margin-top: 1.5rem; }

.hero-image{
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.hero-image img{
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  object-fit: cover;
}

@media (max-width: 900px){
  .hero{
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.8rem;
    gap: 2rem;
  }
  .hero-content{ text-align: center; }
  .hero-image img{ max-width: 100%; }
}

/* =========================
   Buttons
========================= */
.btn{
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.primary-btn{
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.primary-btn:hover{
  background: transparent;
  color: var(--accent);
}

.secondary-btn{
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.secondary-btn:hover{
  background: var(--accent);
  color: #fff;
}

/* =========================
   Intro (Startseite)
========================= */
.intro-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.intro-text p{ color: var(--text-light); }
.intro-text h2{ margin-top: 0; }
.intro-text a.btn{ margin-top: 1rem; }

/* =========================
   Services Grid (Startseite)
========================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover img{ transform: scale(1.05); }

.service-info{
  position: absolute;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  padding: 1rem;
  width: 100%;
  backdrop-filter: blur(1);
}

.service-info h3{
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.service-info p{
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.service-info a{
  font-weight: 600;
  color: var(--accent);
}

/* =========================
   CTA (Startseite)
========================= */
.cta{
  background: var(--bg-light);
  text-align: center;
}
.cta-inner h2{
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-buttons{
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* =========================
   Preisliste (Startseite)
========================= */
.prices-overview .prices-hint{
  text-align: center;
  color: var(--text-light);
  margin: -1rem auto 2rem;
  max-width: 760px;
}

.price-sheet{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  padding: 1.6rem 1.5rem;
  width: min(950px, 100%);
  margin: 0 auto;
}

.price-group + .price-group{
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.price-group-title{
  margin: 0 0 0.7rem;
  font-size: 1.05rem;
  color: #2b2b2b;
  letter-spacing: 0.02em;
}

.price-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.price-row:last-child{ border-bottom: none; }

.price-name{
  font-weight: 600;
  color: #1f1f1f;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.18s ease, color 0.18s ease;
}
.price-name::after{
  content: "→";
  font-weight: 700;
  color: #8f7faf;
  opacity: 0.75;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.price-name:hover{
  color: var(--accent);
  transform: scale(1.03);
}
.price-name:hover::after{
  transform: translateX(2px);
  opacity: 1;
}

.price-value{
  font-weight: 700;
  color: #8f7faf;
  white-space: nowrap;
}

.price-sheet-footer{
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

@media (max-width: 520px){
  .price-sheet{ padding: 1.2rem 1rem; }
  .price-row{ gap: 0.75rem; }
  .price-name,
  .price-value{ font-size: 0.98rem; }
}

/* =========================
   Dienstleistungen (Seite)
   -> simpel: Name … Preis … Beschreibung (ohne Cards)
========================= */
.hero-small{ padding: 2.6rem 0 1.3rem; }

.hero-small h1{
  text-align: left;
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
}
.hero-small p{
  margin: 0;
  color: #555;
  max-width: 920px;
}

.service-section{ padding-top: 2.2rem; }

.service-block + .service-block{
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.service-block h2{
  text-align: left;
  margin: 0 0 0.35rem;
  color: #1c1e22;
}

.block-subtitle{
  margin: 0 0 1.2rem;
  color: #666;
}

/* Liste statt Karten */
.service-list.compact{
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Zeile */
.service-item{
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 1.05rem 0 !important;
  margin: 0 !important;
  transition: none !important;

  scroll-margin-top: calc(var(--header-offset) + 16px);
}

.service-item + .service-item{
  border-top: 1px solid rgba(0,0,0,0.08) !important;
}

.service-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.35rem;
}

.service-item h3{
  margin: 0;
  font-size: 1.06rem;
  color: #1f1f1f;
  font-weight: 700;
}

.service-item .price{
  margin: 0;
  font-weight: 700;
  color: #8f7faf;
  white-space: nowrap;
}

.service-item .desc{
  margin: 0.15rem 0 0;
  color: #555;
  line-height: 1.65;
}

.service-item .subprice{
  margin: 0.35rem 0 0;
  color: #666;
  font-weight: 500;
}

.service-item .note{
  margin: 0.65rem 0 0;
  color: #4b4b4b;
  background: #f3eef8;
  border-left: 4px solid #b8aad0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
}

/* Button etwas kleiner, damit Liste bleibt */
.service-item .btn.primary-btn{
  margin-top: 0.75rem;
  padding: 0.6rem 1.35rem;
  font-size: 0.95rem;
}

/* Anker-Highlight */
.service-item:target{
  background: rgba(197,164,109,0.10) !important;
  border-radius: 10px !important;
  padding: 1.05rem 0.9rem !important;
}

@media (max-width: 520px){
  .service-head{
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .service-item:target{ padding: 1.05rem 0.75rem !important; }
}

/* Optional Box (Abo o.ä.) */
.abo-box{
  margin-top: 0.9rem;
  background: #f5f1fa;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

/* =========================
   Formular (Kontakt + Modal)
========================= */
.contact-form{ margin-top: 1.5rem; }

.form-row{
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.two-cols{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.form-field label{
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #333;
}

.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background-color: #fff;
  color: #111;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: #8f7faf;
  box-shadow: 0 0 0 2px rgba(184,152,86,0.15);
}

.submit-row{
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-note{
  font-size: 0.85rem;
  color: #666;
}

.hidden{ display: none; }

/* Inputs Spezialfälle */
input[type="date"],
input[type="time"],
select{
  transition: border-color 0.2s ease;
}
input[type="date"]:focus,
input[type="time"]:focus,
select:focus{
  outline: none;
}

/* Erzwinge 24h Zeitfeld Darstellung */
input[type="time"]::-webkit-datetime-edit-ampm-field{ display: none; }
input[type="time"]::-webkit-clear-button,
input[type="time"]::-webkit-inner-spin-button{ display: none; }

/* Inline Notices */
.notice-inline{
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.6rem;
}

.notice-box{
  margin-top: 1rem;
  background: #f8f7f5;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.notice-box h4{
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #1c1c1c;
}
.notice-box p{
  margin: 0.25rem 0;
  color: #555;
  line-height: 1.6;
}
.notice-box strong{ color: #1c1c1c; }

/* Status Message unter Datum */
.date-status-message{
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.date-status-message.closed{ color: #b23a3a; }

/* Checkboxen: einheitlich (die “finale” Version) */
.form-check{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0.9rem;
  margin-bottom: 12px;
}

.form-check input[type="checkbox"]{
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #a897c5;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-top: 4px;
  background: #fff;
}

.form-check input[type="checkbox"]:checked{
  background-color: #a897c5;
  border-color: #a897c5;
}

.form-check input[type="checkbox"]:checked::after{
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 13px;
  color: #fff;
  font-weight: 700;
}

.form-check label{
  font-size: 15px;
  line-height: 1.5;
  cursor: pointer;
  color: #444;
}

/* =========================
   Modal (Termin anfragen)
========================= */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.open{
  display: flex;
  opacity: 1;
}

.modal{
  background: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: 0 22px 50px rgba(0,0,0,0.25);
  position: relative;
  animation: modalIn 0.25s ease forwards;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

@keyframes modalIn{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

.modal::-webkit-scrollbar{ width: 8px; }
.modal::-webkit-scrollbar-thumb{
  background: #c6c6c6;
  border-radius: 10px;
}

.modal-close{
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #777;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover{ color: #000; }

@media (max-width: 600px){
  .modal{ padding: 1.4rem 1.2rem 1.6rem; max-height: 88vh; }
}

/* Modal Infos */
.selected-service{
  font-weight: 600;
  color: #5a7d5b;
  background: #f2f8f3;
  border-left: 4px solid #7aa87b;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.form-disclaimer{
  font-size: 0.9rem;
  color: #555;
  background: #f4eff9;
  border-left: 4px solid #e0a500;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1.4rem;
  line-height: 1.5;
}

/* =========================
   Über mich + Galerie
========================= */
.about-layout{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-text-content p{
  color: #444;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-image img{
  width: 65%;
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.1);
  object-fit: cover;
}
@media (max-width: 900px){
  .about-layout{ grid-template-columns: 1fr; }
}

/* Galerie */
.gallery{ text-align: center; }
.gallery p{
  max-width: 640px;
  margin: 0.5rem auto 2rem;
  color: #555;
}
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.gallery-grid img{
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.gallery-grid img:hover{
  transform: scale(1.03);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* =========================
   Kontakt + Maps
========================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}
.contact-info{
  background: #f7f9f6;
  border-radius: 14px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
  border: 1px solid rgba(200,210,200,0.6);
}
.contact-info a{
  color: #2c6e49;
  text-decoration: underline;
}
.contact-form-wrapper h2{ margin-bottom: 0.3rem; }
.contact-form-wrapper p{
  color: #555;
  margin-bottom: 1.4rem;
}
.map-section{
  margin-top: 3rem;
  position: relative;
}
.map-container{
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.map-container iframe{
  border: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(20%) saturate(120%) contrast(95%);
  transition: filter 0.3s ease;
}
.map-container iframe:hover{
  filter: grayscale(0%) saturate(130%);
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* =========================
   Rechtliche Seiten
========================= */
.legal-page{
  background: #fcfbfe;
  color: #1c1c1c;
  padding: 3rem 2rem 3.5rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.75;
  font-size: 1rem;
}

.legal-page h1{
  margin-top: 0;
  font-size: clamp(2rem, 2.5vw + 1rem, 2.6rem);
  margin-bottom: 1.4rem;
  color: #222;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.01em;
}

.legal-page h2{
  margin-top: 2.3rem;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  color: #3b3b3b;
  font-weight: 600;
  border-left: 3px solid #b8aad0;
  padding-left: 0.7rem;
  line-height: 1.3;
}

.legal-page h2::before{
  content: "";
  display: block;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 1.2rem;
}

.legal-page p{
  margin-bottom: 1.1rem;
  color: #2e2e2e;
}

.legal-page ul{
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}
.legal-page li{ margin-bottom: 0.45rem; }

.legal-page a{
  color: #8f7faf;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.legal-page a:hover{ color: #8f7faf; }

.legal-page em{ color: #666; font-style: italic; }
.legal-page strong{ color: #000; font-weight: 600; }

.legal-page p + h2{ margin-top: 2.8rem; }

@media (max-width: 768px){
  .legal-page{
    padding: 2rem 1.4rem 2.5rem;
    font-size: 0.96rem;
  }
  .legal-page h1{ font-size: 1.8rem; }
  .legal-page h2{
    font-size: 1.15rem;
    border-left-width: 2px;
  }
}

/* =========================
   Danke-Seite
========================= */
.thankyou-page{
  background: #f8f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "Poppins", system-ui, sans-serif;
  color: #2f2f2f;
}

.thankyou-wrapper{
  text-align: center;
  max-width: 480px;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: fadeIn 0.6s ease-out;
}

.heart-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.heart-svg{
  width: 60px;
  height: 60px;
  stroke: #a897c5;
  animation: pulseHeart 1.5s infinite ease-in-out;
}

@keyframes pulseHeart{
  0%,100%{ transform: scale(1); opacity: 0.9; }
  50%{ transform: scale(1.15); opacity: 1; }
}

.thankyou-wrapper h1{
  font-size: 1.9rem;
  margin-top: 0.5rem;
  color: #2b2b2b;
}

.thankyou-wrapper .subtext{
  color: #777;
  margin-bottom: 1.8rem;
}

.progress-bar{
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #eee;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.progress-bar div{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #b8aad0, #a897c5);
  animation: loadBar 3s ease-in-out forwards;
}
@keyframes loadBar{ to{ width: 100%; } }

.thankyou-message{
  opacity: 0;
  transform: translateY(12px);
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 3s;
}
.thankyou-message p{
  color: #555;
  margin-bottom: 1.5rem;
}
.thankyou-message .btn{
  background-color: #a897c5;
  border: none;
  color: #fff;
  transition: background 0.3s ease;
}
.thankyou-message .btn:hover{ background-color: #8f7faf; }

@keyframes fadeIn{
  to{ opacity: 1; transform: translateY(0); }
}

/* =========================
   Footer
========================= */
.main-footer{
  background: #222;
  color: #ddd;
  padding-top: 3rem;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-grid h3{
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-grid a{ color: #ddd; }

/* Öffnungszeiten im Footer */
.footer-hours{
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
  max-width: 360px;
}
.footer-hours .row{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  align-items: baseline;
}
.footer-hours .day{
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.footer-hours .time{
  color: rgba(255,255,255,0.82);
}

.footer-note{
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.footer-note strong{ color: #fff; }

.footer-bottom{
  border-top: 1px solid #444;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #aaa;
}





/* =========================
   Studio Karussell
========================= */
.studio-carousel{
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  background: #f8f7f5;
}

.carousel-track{
  position: relative;
  width: 100%;
  min-height: 520px;
}

.carousel-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.carousel-slide.active{
  opacity: 1;
  visibility: visible;
  position: relative;
}

.carousel-slide img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* Pfeile */
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: #333;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  z-index: 3;
}

.carousel-btn:hover{
  background: #fff;
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev{ left: 18px; }
.carousel-btn.next{ right: 18px; }

/* Punkte */
.carousel-dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-dots .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.carousel-dots .dot.active{
  background: var(--accent);
  transform: scale(1.15);
}

.carousel-dots .dot:hover{
  background: #fff;
}

/* Mobile */
@media (max-width: 768px){
  .carousel-track{
    min-height: 340px;
  }

  .carousel-slide img{
    height: 340px;
    border-radius: 14px;
  }

  .studio-carousel{
    border-radius: 14px;
  }

  .carousel-btn{
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .carousel-btn.prev{ left: 10px; }
  .carousel-btn.next{ right: 10px; }

  .carousel-dots{
    bottom: 12px;
    gap: 8px;
  }

  .carousel-dots .dot{
    width: 10px;
    height: 10px;
  }
}

/* =========================
   Dienstleistungs-Bilderkarussell
========================= */
.service-gallery{
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 1.25rem 0 1.8rem;
  border-radius: 18px;
  overflow: hidden;
  background: #f8f7f5;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.service-gallery-track{
  position: relative;
  width: 100%;
  min-height: 520px;
  background: #f8f7f5;
}

.service-gallery-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.service-gallery-slide.active{
  position: relative;
  opacity: 1;
  visibility: visible;
}

.service-gallery-slide img{
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 18px;
}

/* Pfeile */
.service-gallery-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #222;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
  z-index: 3;
}

.service-gallery-btn:hover{
  background: #fff;
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.service-gallery-btn.prev{
  left: 14px;
}

.service-gallery-btn.next{
  right: 14px;
}

.service-gallery-dots{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.service-gallery-dots button{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.service-gallery-dots button.active{
  background: var(--accent);
  transform: scale(1.15);
}

.service-gallery-dots button:hover{
  background: #fff;
}

@media (max-width: 768px){
  .service-gallery{
    border-radius: 14px;
    margin: 1rem 0 1.4rem;
  }

  .service-gallery-track{
    min-height: 340px;
  }

  .service-gallery-slide{
    padding: 0.75rem;
  }

  .service-gallery-slide img{
    max-width: 100%;
    max-height: 340px;
    border-radius: 14px;
  }

  .service-gallery-btn{
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .service-gallery-btn.prev{
    left: 10px;
  }

  .service-gallery-btn.next{
    right: 10px;
  }

  .service-gallery-dots{
    bottom: 10px;
    gap: 7px;
  }

  .service-gallery-dots button{
    width: 9px;
    height: 9px;
  }
}




/* =========================
   Über mich – eleganter Abschnitt
========================= */
.about-section-elegant{
  padding-top: 2.5rem;
}

.about-elegant-card{
  background: linear-gradient(180deg, #fbf9fd 0%, #f4f0f8 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  padding: 3.25rem 3rem;
}

.about-layout-elegant{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 3.5rem;
  align-items: center;
}

.about-kicker{
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-layout-elegant .about-text-content h2{
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 1.15;
  color: #1c1c1c;
  text-align: left;
}

.about-layout-elegant .about-text-content p{
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #444;
  max-width: 760px;
}

.about-layout-elegant .about-text-content p:last-child{
  margin-bottom: 0;
}

.about-image-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-elegant{
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
}

.about-image-elegant img{
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  display: block;
}

/* Tablet */
@media (max-width: 1100px){
  .about-elegant-card{
    padding: 2.4rem 2rem;
  }

  .about-layout-elegant{
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.2rem;
  }

  .about-layout-elegant .about-text-content p{
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 768px){
  .about-section-elegant{
    padding-top: 1.25rem;
  }

  .about-elegant-card{
    padding: 1.25rem 1rem 1.4rem;
    border-radius: 20px;
  }

  .about-layout-elegant{
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: start;
  }

  .about-image-wrap{
    order: -1;
    justify-content: center;
  }

  .about-image-elegant{
    width: 100%;
    max-width: 220px;
    padding: 7px;
    border-radius: 18px;
  }

  .about-image-elegant img{
    width: 100%;
    aspect-ratio: 3 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
  }

  .about-kicker{
    font-size: 0.72rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }

  .about-layout-elegant .about-text-content{
    text-align: left;
  }

  .about-layout-elegant .about-text-content h2{
    font-size: 1.9rem;
    line-height: 1.15;
    margin: 0 0 0.9rem;
  }

  .about-layout-elegant .about-text-content p{
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px){
  .about-elegant-card{
    padding: 1rem 0.9rem 1.2rem;
    border-radius: 18px;
  }

  .about-image-elegant{
    max-width: 190px;
    padding: 6px;
  }

  .about-layout-elegant .about-text-content h2{
    font-size: 1.65rem;
  }

  .about-layout-elegant .about-text-content p{
    font-size: 0.96rem;
    line-height: 1.7;
  }
}