/* ============================================================
   KOSMETIKSTUDIO – WEISS/GOLD DESIGN-CSS
   Alle Farben, Fonts & Abstände können über Variablen angepasst werden.
   ============================================================ */
   @font-face{
  font-family:"Raleway";
  src:url("fonts/raleway-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Raleway";
  src:url("fonts/raleway-500.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Montserrat";
  src:url("fonts/montserrat-500.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Montserrat";
  src:url("fonts/montserrat-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

  /* 1. Design-Variablen (fertig ausgefüllt mit Weiß/Gold-Design)
   ------------------------------------------------------------ */
:root {
  /* Farben */
  --primary-color: #D4AF37;          /* Gold */
  --primary-color-dark: #B8962F;     /* Dunkleres Gold (Hover) */
  --accent-color: #FFF3D6;           /* Sanftes Creme/Beige */

  --body-bg: #ffffff;                /* Weiß */
  --section-alt-bg: #F9F7F4;         /* Hellcreme für Sektionen */

  /* Typografie */
  --font-base: "Raleway";  /* Platzhalter – kann ersetzt werden */
  --font-heading: "Montserrat", ;/* Platzhalter für elegante Headlines */

  --fs-base: 1rem;
  --fs-small: 0.9rem;
  --fs-h1: 2.75rem;
  --fs-h2: 2rem;
  --fs-h3: 1.4rem;

  /* Grautöne */
  --gray-900: #1C1C1C;
  --gray-700: #6F6F6F;
  --gray-500: #A5A5A5;
  --gray-100: #EFEFEF;

  /* Abstände & Rundungen */
  --section-padding-y: 4.5rem;
  --border-radius-lg: 1.4rem;

  /* Schatten */
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);

  /* Animation */
  --transition-fast: 0.25s ease-out;
  --border-radius-xl: 2.4rem;
--shadow-medium: 0 18px 45px rgba(0,0,0,0.08);

}



/* ------------------------------------------------------------
   2. Global Styles
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}
/* ===========================================
   Neuer moderner Champagne-Gold Hintergrund
   Weicher Verlauf + Noise + Gloss-Lichtreflex
   =========================================== */

   body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--gray-900);

  /* Hintergrundbild */
  background-image: url("Bilder/watergold.png");

  /* Bild-Einstellungen */
  background-size:cover;            /* großflächig, nie verzerrt */
  background-repeat: no-repeat;
  background-attachment: fixed;      /* leicht parallax, sehr modern */
  background-position: center;
}
/* Helligkeit / Transparenz des Hintergrundbildes steuern */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  /* Helligkeit bestimmen */
  background: rgba(255, 255, 255, 0.65); 
  /* ↑ 0.10 = fast nichts, 0.30 = leicht, 0.50 = deutlich heller, 0.70 = sehr hell */

  backdrop-filter: blur(0.4px);  /* optional: Mini-Glow */
}


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-color-dark);
}

  
/* Inhalt sichtbar über dem Glas */
section > .container,
section > .content-wrapper {
  position: relative;
  z-index: 1;
}
/* ============================
   GLAS-SECTION (weiß, milchig)
   ============================ */
.section-glass {
  position: relative;
  padding: var(--section-padding-y) 0;
}

.section-glass::before {
  content: "";
  position: absolute;
  inset: 2rem 0;
  border-radius: var(--border-radius-xl, 32px);
  background: rgba(255, 255, 255, 0.45);   /* leicht transparentes Weiß */
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-medium);

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;

  z-index: -1; /* WICHTIG: Glas gehört unter den Inhalt */
}

/* aktiviert durch Scroll-Animation */
.section-glass.section-animate.in-view::before {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Scroll-Reveal für Sections (Slide-Up + Gold-Akzent)
   ------------------------------------------------------------ */
.section-animate {
  position: relative;
  z-index: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
/* sanfter Gold/Creme-Schimmer – aber NICHT bei Glas-Sections */
.section-animate:not(.section-glass)::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0 0 0; /* oben etwas Abstand, unten frei */
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.06),   /* Gold transparent */
    rgba(255, 243, 214, 0.00)   /* verlaufend zu transparent */
  );
  opacity: 0;
  transition: opacity 0.8s ease-out;
  z-index: -1;
}

/* wenn sichtbar im Viewport */
.section-animate.in-view:not(.section-glass)::before {
  opacity: 1;
}


/* wenn sichtbar im Viewport */
.section-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-animate.in-view::before {
  opacity: 1;
}
/* ------------------------------------------------------------
   Services – Slide-in Cards mit Stagger-Effekt
   ------------------------------------------------------------ */

/* Grundzustand: Karten noch „unten & unsichtbar“ */
#services .col-md-6 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Sobald der Services-Block im Viewport ist */
#services.section-animate.in-view .col-md-6 {
  opacity: 1;
  transform: translateY(0);
}

/* gestaffelte Verzögerung – wie Slides nacheinander */
#services.section-animate.in-view .col-md-6:nth-child(1) {
  transition-delay: 0.05s;
}
#services.section-animate.in-view .col-md-6:nth-child(2) {
  transition-delay: 0.18s;
}
#services.section-animate.in-view .col-md-6:nth-child(3) {
  transition-delay: 0.31s;
}
#services.section-animate.in-view .col-md-6:nth-child(4) {
  transition-delay: 0.44s;
}
/* Wenn du mehr Kategorien hast, einfach weiternummerieren */

/* ------------------------------------------------------------
   NAVBAR – White/Gold Design (kompakt)
   ------------------------------------------------------------ */

/* Grund-Navbar */
.main-navbar {
  background: #FFFBF4;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0.3rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition:
    padding 0.25s ease-out,
    box-shadow 0.25s ease-out,
    background-color 0.25s ease-out,
    transform 0.20s ease-out;   /* für Instagram-Slide */

  z-index: 1000;
}

/* Instagram-Style: Navbar ausblenden (Mobile/Tablet) */
.main-navbar.navbar-hidden{
  transform: translateY(-110%);
}

.navbar-brand {
  margin: 0;
  padding: 0;
  position: relative;   /* wichtig für z-index */
  z-index: 1200;        /* über den Links */
}

/* Logo / Badge – Grundwerte */
.navbar-logo-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 160px;
  height: 160px;
  border-radius: 50%;

  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);

  transition: transform 0.25s ease-out;
  z-index: 1200;
}

.navbar-logo {
  max-width: 180%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Links – Grundstil */
.navbar-nav .nav-link {
  font-size: 0.95rem;
  padding-inline: 0.9rem;
  color: var(--gray-900) !important;
  opacity: 0.9;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  opacity: 1;
  color: var(--primary-color) !important;
}

.main-navbar.navbar-shrink {
  /* gleiche Farbe wie im Grundzustand */
  background-color: #FFFBF4;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.main-navbar.navbar-shrink .navbar-logo-wrapper {
  transform: scale(0.75);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

/* ------------------------------------------------------------
   Desktop (>= 992px) – schmale Navbar + Logo schwebt
   ------------------------------------------------------------ */
@media (min-width: 1200px) {

  /* Navbar bewusst schmal halten */
  .main-navbar {
    position: relative;
    height: 60px;                 /* feste, schmale Höhe */
    padding: 0;
    display: flex;
    align-items: center;
  }

  /* Logo absolut positionieren → beeinflusst Höhe NICHT mehr */
  .navbar-brand {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-20%);  /* ein bisschen höher als Mitte */
  }

  .navbar-logo-wrapper {
    width: 150px;
    height: 150px;
  }

  /* Menü rechts, am unteren Rand der Navbar */
   .main-navbar .navbar-collapse {
    width: 100%;
    margin-top: 0.5rem;
    transition: none !important; /* kein Höhe-Fading von Bootstrap */
  }         
  .navbar-nav {
    margin-left:200px;
    
    
  }
   .navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.4rem 0;
    font-weight: 500;
    text-align: left !important;
  } 
  .main-navbar .navbar-collapse.show {
    background: #FFF9EF;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  }
  
}
 @media (max-width: 1399.98px) and (min-width: 1200px) {
 .navbar-logo-wrapper {
   width: 130px;
   height: 130px;
 }
}
/* ------------------------------------------------------------
   Goldenes Burger-Menü (Icon) – groß & sichtbar
   ------------------------------------------------------------ */
.custom-toggler {
  border-radius: 999px !important;
  padding: .35rem .7rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  z-index: 1100;
}

/* Fokus-Ring entfernen oder dezenter machen */
.custom-toggler:focus {
  box-shadow: none;
}

/*.custom-toggler:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}*/

/* Balken im Burger */
.custom-toggler .toggler-bar {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background-color: var(--primary-color);
  transition: transform 0.20s ease-out, opacity 0.20s ease-out;
}

/* Hover-Effekt */
/*.custom-toggler:hover .toggler-bar {
  box-shadow: 0 0 6px rgba(212,175,55,0.6);
}*/

/* zu X animieren */
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}


/* ------------------------------------------------------------
   Mobile Navbar – Burger-Dropdown
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Mobile & Tablet Navbar – linke Sidebar
   (gilt bis < 1200px Breite)
   ------------------------------------------------------------ */
/* ------------------------------------------------------------
   Mobile & Tablet Navbar – linke Glas-Sidebar + Page-Shift
   (gilt bis < 1200px Breite)
   ------------------------------------------------------------ */
@media (max-width: 1199.98px) {

  .main-navbar {
    padding: 0.3rem 0;
  }

  
  /* === Fix: Menü muss über dem Backdrop liegen (Bootstrap sticky-top erzeugt Stack Context) === */
  .main-navbar { z-index: 1400; }
  .main-navbar .navbar-collapse { z-index: 1450; }
  .nav-backdrop { z-index: 1390; }

  /* === Fix: Auf Mobile/Tablet Sections nicht unsichtbar lassen, falls Scroll-Reveal nicht triggert === */
  .section-animate{
    opacity: 1 !important;
    transform: none !important;
  }
/* ====================================
     Sidebar – Glas-Optik, links fixiert
     ==================================== */
  .main-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    max-width: 80%;
    margin: 0;

    /* Glas-Look wie deine anderen Glas-Elemente */
    background: rgba(255, 255, 255, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 18px 0 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);

    padding: 1.75rem 1.5rem 2rem;
    overflow-y: auto;
    z-index: 1200;

    /* für Slide-In Animation */
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.20s ease-out,
      opacity 0.25s ease-out,
      visibility 0.25s ease-out;
  }

  /* Bootstrap setzt display:none, wir überschreiben das für Animation */
  .main-navbar .navbar-collapse:not(.show) {
    display: block;
  }

  /* Wenn Sidebar offen ist (Bootstrap .show) → reinsliden */
  .main-navbar .navbar-collapse.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  /* Navigation innerhalb der Sidebar */
  .navbar-nav {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0;
    flex-direction: column;
  }

  .navbar-nav .nav-link {
    font-size: 1.05rem;
    padding: 0.55rem 0;
    font-weight: 500;
    text-align: left !important;
  }

  /* Logo im Header etwas kleiner, bleibt aber in der eigentlichen Navbar */
  .navbar-logo-wrapper {
    width: 140px;
    height: 140px;
    padding: 0.5rem;
  }

  /* ==========================
     Page-Shift beim Öffnen
     ========================== */

  /* wenn Body die Klasse .sidebar-open hat → Inhalt nach rechts schieben */
  body.sidebar-open {
    overflow-x: hidden;
  }

  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.18);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease-out;
    z-index: 1100;
  }
  .nav-backdrop.show{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Kleine Mobile-Geräte: Logo noch kleiner */
@media (max-width: 575.98px) {
  .navbar-logo-wrapper {
    width: 120px;
    height: 120px;
    padding: 0.45rem;
  }
}

/* Kleine Mobile-Geräte */
@media (max-width: 575.98px) {
  .navbar-logo-wrapper {
    width: 120px;
    height: 120px;
    padding: 0.45rem;
  }
}

/* Slide-down-Animation */
/*@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}*/
/* Tablet Landscape: Logo wie Mobile, Burger aktiv */


/* Desktop ≥1200px – großes schwebendes Logo + horizontale Links */
@media (min-width: 1200px) {

  .navbar-brand {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-20%);
  }

  .navbar-logo-wrapper {
    width: 150px;
    height: 150px;
  }

  /* Links wieder nach rechts schieben */
  .navbar-nav {
    margin-left: 200px;
  }
}
/* ============================================
   Tablet-Navbar: Burger links, Logo rechts
   (gilt ca. von 768px bis 1199px Breite)
   ============================================ */
@media (min-width: 768px) and (max-width: 1199.98px) {

  /* Container als Flex-Reihe */
  .main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Burger links */
  .main-navbar .navbar-toggler {
    order: 1;
    margin-right: 0;
  }

  /* Logo nach rechts schieben */
  .main-navbar .navbar-brand {
    order: 2;
    margin-left: auto;
    position: static;   /* überschreibt das absolute Positionieren vom Desktop */
    transform: none;
  }

  .main-navbar .navbar-logo-wrapper {
    width: 140px;
    height: 140px;
  }
}
/* Auf sehr kleinen Geräten: Sections immer sichtbar */
@media (max-width: 575.98px) {
  .section-animate {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ------------------------------------------------------------
   Global Buttons – White/Gold
   ------------------------------------------------------------ */

.btn {
  border-radius: 0.6rem;
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;

  background-color: #ffffff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);

  transition: all 0.25s ease;
}

/* Hover: Gold filled button */
.btn:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Optional: etwas intensiverer Effekt beim Fokussieren */
.btn:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

/* Spezialfall: Outline-Buttons (falls Bootstrap-Klassen benutzt werden) */
.btn-outline-dark,
.btn-outline-primary {
  background-color: #ffffff !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.btn-outline-dark:hover,
.btn-outline-primary:hover {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}

/* ------------------------------------------------------------
   3. Hero Section
   ------------------------------------------------------------ */
.hero-section {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;

  /* Hintergrundbild kommt per Inline-Style aus index.php */
background-size: contain;
background-color: #ffffff; /* oder deine Hintergrundfarbe */
background-repeat: no-repeat;
background-position: right;
  
  

  /* leichter Gold-Schimmer über dem Bild */
  background-color:rgba(255, 243, 214, 0.35);
  background-blend-mode: overlay;

  color: var(--gray-900);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.35) 22%,
    rgba(255, 255, 255, 0.1) 45%,
    rgba(255, 255, 255, 0.0) 75%
  );

  pointer-events: none;
}

/* ------------------------------------------------------------
   4. Über-uns Bild / Galerie
   ------------------------------------------------------------ */
   
.about-image-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  width: 100%;
  height: 100%; /* füllt die Spaltenhöhe */
}

/* Wichtig für Bootstrap .ratio */
.about-image-wrapper.ratio {
  width: 100%;
}

/* Bild NICHT verzerren → sauberer Crop */
.about-image-wrapper.ratio .about-image {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;     /* kein Verzerren → nur Zuschneiden */
  object-position: var(--about-object-position, center 20%);
}

/* Optional: Platzhalter-Styling */
.about-placeholder {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: var(--fs-small);
  text-align: center;
}
/* Über-uns: Bild soll sich an Texthöhe anpassen (Desktop) */
#about .about-image-col {
  display: flex;              /* macht die Spalte selbst zum Flex-Container */
}

#about .about-image-wrapper {
 max-height: 570px;
 
}
#about .about-image-wrapper .about-image {
  width: 100%;
  height: 100%;               /* füllt die Wrapper-Höhe = Texthöhe */
  object-fit: cover;          /* sauberer Zuschnitt */
 
 
}
/* Platzhalter auch schön strecken */
#about .about-image-wrapper .about-placeholder {
  width: 100%;
  height: 100%;
}


/* ------------------------------------------------------------
   Service-Details (aufklappbar)
   ------------------------------------------------------------ */
.service-toggle {
  background: #ffffff;
  border: none;
  text-align: left;
}

.service-toggle:focus {
  outline: none;
  box-shadow: none;
}

.service-toggle:hover {
  background-color: #FFF7E9;
}

.service-details {
  background-color: #FFFFFF;
}

.service-details p {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* Bilder-Galerie in den Behandlungsdetails */
.service-images {
  margin-top: 0.25rem;
}

.service-image-thumb-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.service-image-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ----------------------------------------------
   Service Detail Layout (Bild links, Text rechts)
   ---------------------------------------------- */
.service-detail {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;          /* beide Spalten gleich hoch */
  margin-top: 1rem;
}

/* eigene Spalte fürs Bild – feste Breite */
.service-detail-image {
  flex: 0 0 220px;               /* 220px Spalte, nicht mitwachsen */
}

/* Bild füllt die gesamte Spaltenhöhe */
.service-detail-image img {
  width: 100%;
  height: auto;              /* wichtig: nicht mit Text strecken */
  aspect-ratio: 4 / 5;       /* sorgt für saubere, gleichmäßige Bildfläche */
  border-radius: 12px;
  object-fit: cover;         /* Bild wird ggf. beschnitten, aber NIE verzerrt */
  box-shadow: var(--shadow-soft);
  display: block;
}


/* Text darf mitwachsen */
.service-detail-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  /*max-width: 520px;*/
}
/*@media (max-width: 992px) {
  .service-detail {
    gap: 1rem;
  }

  .service-detail-text {
    max-width: 100%;
  }
}*/

/* Mobile Ansicht */
@media (max-width: 992px) {
  .service-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-detail-image {
    flex: 0 0 auto;      /* feste Flex-Breite hier wieder aufheben */
    width: 100%;
  }

  .service-detail-image img {
    width: 100%;
    max-width: 300px;
    height: auto;        /* auf Mobil wieder natürlicher Bildhöhenfluss */
  }

  .service-detail-text {
    text-align: left;
    width: 100%;
  }
  #about .about-image-col {
    display: block;           /* Spalte verhält sich wieder normal */
  }

  #about .about-image-wrapper {
    height: auto;             /* keine erzwungene Höhe */
  }

  #about .about-image-wrapper .about-image {
    height: auto;             /* Bild skaliert proportional */
  }
}


/* ------------------------------------------------------------
   Lightbox für Behandlungen
   ------------------------------------------------------------ */
.lightbox-modal-content {
  background: rgba(0,0,0,0.75);
  border-radius: 1rem;
}

#imageLightbox .modal-body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem !important;
}

#imageLightbox img {
   max-height: 80vh;            /* maximal 80% der Bildschirmhöhe */
  width: auto;
  height: auto;
  object-fit: contain;         /* Bild wird NICHT beschnitten */
}
#imageLightbox .modal-dialog {
  max-width: 700px;            /* Lightbox insgesamt schmaler */
  margin: auto;
}
/* ==========================================
   Footer Links: Impressum + Datenschutz
   ========================================== */

footer a {
  color: #000 !important;       /* schwarz */
  opacity: 1 !important;        /* sicherstellen, dass nichts ausgegraut wird */
}

footer a:hover {
  color: #B8962F !important;       /* leicht dunkler beim Hover */
}
/* ===============================
   Service-Kategorien als Kacheln
   =============================== */

.service-categories {
  margin-top: 2rem;
}

.service-category-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.service-category-image-wrapper {
  height: 180px;
  overflow: hidden;
}

.service-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-category-content {
  padding: 1.5rem 1.5rem 1.25rem;
}

.service-category-title {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.service-category-meta {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

/* Liste in der Kachel etwas „luftiger“ machen */
.service-list .list-group-item {
  border: 0;
  background: transparent;
}
.service-category-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.service-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.booking-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.booking-card .form-control {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
}

.booking-card .form-control:focus {
  border-color: rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
/* Booking-Kachel */
.booking-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* Icon-Header oben */
.booking-header h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.booking-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.booking-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-icon span {
  font-size: 1.6rem;
}

/* Formular-Felder smoother */
/*.booking-card .form-control,
.booking-card .form-select {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px 14px;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}*/


/* Abstände im Formular */
.booking-form {
  margin-top: 0.5rem;
}

/* ---------- Booking: Icon-Header (haben wir schon, zur Sicherheit) ---------- */
.booking-header h2 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.booking-subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.booking-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-icon span {
  font-size: 1.6rem;
}

/* Grundstyle für alle Formfelder im Booking */
.booking-card .form-control,
.booking-card .form-select {
  border-radius: 999px; /* pill-förmig */
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

/* Speziell: Date & Time Inputs „cleanen“ */
.booking-card input[type="date"],
.booking-card input[type="time"] {
  font-variant-numeric: tabular-nums;   /* harmonische Ziffern */
  color: #222;
}

/* Browser-spezifische Feinheiten (Chrome, Edge, Safari) */

/* Date: Icon etwas dezenter */
.booking-card input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.7;
  cursor: pointer;
}

/* Time: Pfeile/Spinner ausblenden (Chrome/Edge) */
.booking-card input[type="time"]::-webkit-clear-button,
.booking-card input[type="time"]::-webkit-inner-spin-button {
  display: none;
}

/* Firefox: Time-Field angleichen */
.booking-card input[type="time"] {
  -moz-appearance: textfield;
}

/* Placeholder-Text (falls du welche nutzt) */
.booking-card .form-control::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
/* ---------- Flatpickr Kalender/Uhr im Glasdesign ---------- */

.flatpickr-calendar {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: inherit;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
}

.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 500;
}

/* Tage */
.flatpickr-day {
  border-radius: 999px;
}

.flatpickr-day:hover {
  background: rgba(230, 200, 150, 0.2);
}

.flatpickr-day.today {
  border-color: rgba(199, 155, 92, 0.9); /* goldener Rahmen */
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: rgba(199, 155, 92, 0.95); /* Gold */
  border-color: rgba(199, 155, 92, 0.95);
  color: #fff;
}

/* Zeit-Picker */
.flatpickr-time {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.flatpickr-time input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.flatpickr-time .flatpickr-time-separator {
  margin: 0 4px;
}

/* ------------------------------------------------------------
   WhatsApp Kontakt-Section (schmale Karte im White/Gold-Stil)
   ------------------------------------------------------------ */

.whatsapp-section {
  padding: 1.75rem 1rem;
  margin: 0 auto 2.5rem;
  max-width: 640px; /* schön schmal, wie gewünscht */
}

.whatsapp-inner {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.whatsapp-text {
  margin: 0;
  font-size: 1rem;
  color: var(--gray-900);
}

/* Button nutzt deine bestehende .btn-Optik,
   bekommt nur Icon-Abstand & leichtes „Chat“-Feeling */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

/* Icon übernimmt die Textfarbe des Buttons (Gold/Weiß) */
.whatsapp-icon {
  display: inline-flex;
}

/* Auf größeren Screens Text links, Button rechts nebeneinander */
@media (min-width: 768px) {
  .whatsapp-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .whatsapp-text {
    max-width: 70%;
  }
}










/* ============================================================
   FIX: Navigation – Menü muss über Backdrop klickbar sein
   ============================================================ */
@media (max-width: 1199.98px) {
  .main-navbar { position: sticky; top: 0; z-index: 1205; }
  .main-navbar .navbar-collapse { z-index: 1210; }
  #navBackdrop { z-index: 1200; }
}


/* ============================================================
   FIX: Mobile/Tablet – Glasfläche für "Behandlungen und Preise"
   (falls Scroll-Reveal auf manchen Geräten nicht triggert)
   ============================================================ */
@media (max-width: 1199.98px) {
  #services.section-glass::before {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ============================================================
   FIX (ohne Designänderung):
   1) Mobile/Tablet Sidebar: Links müssen klickbar sein
      -> Backdrop liegt UNTER dem Menü
   2) Smartphone: "Behandlungen & Preise" bleibt sichtbar + Glas
   ============================================================ */
@media (max-width: 1199.98px) {
  .main-navbar { z-index: 1400 !important; }
  .main-navbar .navbar-collapse { z-index: 1450 !important; }
  .nav-backdrop, #navBackdrop { z-index: 1390 !important; }

  /* sicherstellen, dass nichts die Klicks blockiert */
  .main-navbar .navbar-collapse,
  .main-navbar .navbar-collapse * {
    pointer-events: auto !important;
  }

  /* Services/Behandlungen: nie "unsichtbar hängen bleiben" */
  #services .col-md-6 {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Glasfläche in Services auf Mobile/Tablet sicher aktiv */
  #services.section-glass::before {
    opacity: 1 !important;
    transform: none !important;
  }
}
