/* =========================================================
   LOKALE SCHRIFTARTEN
   ========================================================= */
/* Raleway normal - variable Schrift von 100 bis 900 */
@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
/* Raleway kursiv - variable Schrift von 100 bis 900 */
@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/Raleway-Italic-VariableFont_wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}
/* Abril Fatface */
@font-face {
  font-family: "Abril Fatface";
  src: url("../assets/fonts/AbrilFatface-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* Handlee */
@font-face {
  font-family: "Handlee";
  src: url("../assets/fonts/Handlee-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
/* =========================================================
   SALON SCHNIPPSCHNAPP
   GRUNDLAYOUT
   ========================================================= */ :root {
  --violett: #671462;
  --violett-dunkel: #3B0B39;
  --creme: #FFF2BA;
  --weiss: #FFFFFF;
  --text: #292329;
  --text-hell: #6F696F;
  --linie: #E4DED7;
  --max-breite: 1200px;
}
/* =========================================================
   RESET
   ========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Raleway", Arial, sans-serif;
  background-color: #ffffff;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}
/* =========================================================
   ALLGEMEINE ELEMENTE
   ========================================================= */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3 {
  font-family: "Abril Fatface", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 {
  font-size: 2.6rem;
  color: var(--violett-dunkel);
  margin-bottom: 1.4rem;
}
h2 {
  font-size: 2rem;
  color: var(--violett);
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
}
/* =========================================================
   HERO / STARTBEREICH
   ========================================================= */
.hero {
  width: 100%;
  background-color: var(--creme);
}
/* ---------------------------------------------------------
   SALONFOTO
   --------------------------------------------------------- */
.hero-bild {
  width: 100%;
  height: 42vh;
  min-height: 300px;
  overflow: hidden;
}
.hero-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ---------------------------------------------------------
   RECHTE INFORMATIONSFLÄCHE
   --------------------------------------------------------- */
.hero-panel {
  background-color: var(--creme);
}
/* ---------------------------------------------------------
   LOGO UND EINSTIEG
   --------------------------------------------------------- */
.hero-inhalt {
  padding: 3rem 1.5rem 2.5rem;
}
.salon-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.8rem;
}
.hero-kicker, .section-kicker {
  font-family: "Handlee", cursive;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--violett);
  margin-bottom: 0.5rem;
}
.hero-text {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--text-hell);
  margin-bottom: 0;
}
.hero-claim {
  font-family: "Handlee", cursive;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--violett);
  margin-bottom: 1.2rem;
}
/* =========================================================
   HERO INFORMATIONEN
   ========================================================= */
.hero-info {
  display: grid;
  grid-template-columns: 1fr;
}
.hero-info-block {
  padding: 2.5rem 1.5rem;
}
/* ---------------------------------------------------------
   ÖFFNUNGSZEITEN
   --------------------------------------------------------- */
.hero-zeiten {
  background-color: var(--weiss);
}
.oeffnungszeiten-liste {
  margin-top: 1.5rem;
  border-top: 1px solid var(--linie);
}
.oeffnungszeit {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--linie);
  font-size: 0.92rem;
}
.oeffnungszeit span:first-child {
  font-weight: 600;
}
.oeffnungszeit span:last-child {
  text-align: right;
  color: var(--text-hell);
}
/* ---------------------------------------------------------
   STANDORT
   --------------------------------------------------------- */
.hero-standort {
  background-color: var(--violett-dunkel);
  color: var(--weiss);
}
.hero-standort .salon-einleitung {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.hero-standort h2 {
  color: var(--weiss);
}
.hero-standort .section-kicker {
  color: var(--creme);
}
.hero-standort address {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}
.hero-standort address strong {
  font-size: 1.15rem;
}
/* =========================================================
   BUTTONS
   ========================================================= */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 4px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s ease;
}
.button-primaer {
  background-color: var(--creme);
  color: var(--violett-dunkel);
}
.button-primaer:hover {
  background-color: var(--weiss);
}
.button-sekundaer {
  border: 2px solid var(--creme);
  color: var(--creme);
}
.button-sekundaer:hover {
  background-color: var(--creme);
  color: var(--violett-dunkel);
}
/* DESKTOP BUTTONS AUF MOBILE AUSBLENDEN */
.desktop-actions {
  display: none;
}
/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */
.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--violett-dunkel);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.15);
}
.mobile-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: var(--weiss);
  font-weight: 600;
  font-size: 0.95rem;
}
.mobile-actions a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
body {
  padding-bottom: 58px;
}
/* =========================================================
   HAUPTINHALT
   ========================================================= */
main {
  width: 100%;
}
section {
  width: 100%;
  max-width: var(--max-breite);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
/* =========================================================
   LEISTUNGEN
   ========================================================= */
.leistungen-bereich {
  max-width: none;
  background-color: var(--weiss);
  padding: 5rem 1.5rem;
}
.leistungen-bereich > * {
  max-width: var(--max-breite);
  margin-left: auto;
  margin-right: auto;
}
/* ---------------------------------------------------------
   ÜBERSCHRIFT
   --------------------------------------------------------- */
.leistungen-kopf {
  margin-bottom: 3rem;
}
.leistungen-kopf h2 {
  margin-bottom: 1.2rem;
}
.leistungen-einleitung {
  max-width: 720px;
  color: var(--text-hell);
  font-size: 1.05rem;
}
/* =========================================================
   LEISTUNGSKARTEN
   ========================================================= */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.leistung-karte {
  background-color: #fafafa;
  border: 1px solid var(--linie);
  padding: 2rem 1.5rem;
}
.leistung-karte h3 {
  color: var(--violett-dunkel);
  font-size: 1.45rem;
  margin-bottom: 1.3rem;
}
.leistung-karte ul {
  list-style: none;
}
.leistung-karte li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: var(--text-hell);
}
.leistung-karte li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--violett);
}
/* =========================================================
   HINWEISE
   ========================================================= */
.leistungen-hinweise {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.hinweis-box {
  padding: 2rem 1.5rem;
}
.hinweis-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
/* PREISE */
.preis-hinweis {
  background-color: #fafafa;
  border: 1px solid var(--linie);
}
.preis-hinweis p:not(.section-kicker) {
  color: var(--text-hell);
}
/* PRODUKTE */
.produkte-hinweis {
  background-color: var(--creme);
}
.produkte-hinweis h3 {
  color: var(--violett-dunkel);
}
.produkte-hinweis p {
  max-width: 600px;
}
.produkte-zusatz {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(59, 11, 57, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--violett-dunkel);
}
/* =========================================================
   UNSER SALON
   ========================================================= */
.salon-bereich {
  max-width: none;
  padding: 5rem 1.5rem;
  background-color: var(--creme);
}
.salon-grid {
  max-width: var(--max-breite);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */
.salon-text {
  max-width: 650px;
}
.salon-text h2 {
  margin-bottom: 1.5rem;
}
.salon-einleitung {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--violett-dunkel);
  margin-bottom: 1.5rem;
}
.salon-text p:not(.section-kicker):not(.salon-einleitung) {
  color: var(--text-hell);
}
/* ---------------------------------------------------------
   BILDER
   --------------------------------------------------------- */
.salon-bilder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.salon-bild {
  overflow: hidden;
  min-height: 180px;
}
.salon-bild-gross {
  grid-column: 1 / -1;
  min-height: 300px;
}
.salon-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.salon-bild:hover img {
  transform: scale(1.03);
}
/* =========================================================
   TERMINREGELUNG
   ========================================================= */
.termin-bereich {
  max-width: none;
  background-color: var(--weiss);
  padding: 5rem 1.5rem;
}
.termin-inhalt {
  max-width: 900px;
  margin: 0 auto;
}
.termin-kopf {
  margin-bottom: 2.5rem;
}
.termin-kopf h2 {
  margin-bottom: 1.3rem;
}
.termin-einleitung {
  max-width: 700px;
  font-family: "Handlee", cursive;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--violett-dunkel);
}
/* ---------------------------------------------------------
   TEXT
   --------------------------------------------------------- */
.termin-text {
  max-width: 760px;
  padding-left: 1.5rem;
  border-left: 3px solid var(--creme);
}
.termin-text p {
  color: var(--text-hell);
  margin-bottom: 1.3rem;
}
.termin-text strong {
  color: var(--violett-dunkel);
  font-weight: 700;
}
/* ---------------------------------------------------------
   DANKE
   --------------------------------------------------------- */
.termin-danke {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background-color: var(--creme);
}
.termin-danke p {
  margin: 0;
  color: var(--violett-dunkel);
  font-weight: 600;
}
/* =========================================================
   KONTAKT
   ========================================================= */
.kontakt-bereich {
  max-width: none;
  background-color: var(--violett-dunkel);
  color: var(--weiss);
  padding: 5rem 1.5rem;
}
.kontakt-inhalt {
  max-width: var(--max-breite);
  margin: 0 auto;
}
.kontakt-bereich .section-kicker {
  color: var(--creme);
}
.kontakt-bereich h2 {
  color: var(--weiss);
  margin-bottom: 1.5rem;
}
.kontakt-einleitung {
  max-width: 650px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 3rem;
}
.kontakt-social {
  max-width: 650px;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.72);
}
.kontakt-social a {
  color: var(--creme);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.kontakt-social a:hover {
  color: var(--weiss);
}
.kontakt-bereich .section-kicker {
  color: var(--creme);
}
.kontakt-bereich h2 {
  color: var(--weiss);
}
.kontakt-einleitung {
  color: rgba(255, 255, 255, 0.85);
}
.kontakt-social {
  color: rgba(255, 255, 255, 0.75);
}
.kontakt-social a {
  color: var(--creme);
}
.kontakt-label {
  color: var(--creme);
}
.kontakt-link {
  color: var(--weiss);
}
.kontakt-block address {
  color: var(--weiss);
}
/* =========================================================
   KONTAKTDATEN
   ========================================================= */
.kontakt-daten {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.kontakt-block {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}
.kontakt-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--creme);
}
.kontakt-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--weiss);
}
.kontakt-link:hover {
  color: var(--creme);
}
.kontakt-block address {
  font-family: "Raleway", Arial, sans-serif;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--weiss);
}
/* =========================================================
   KONTAKT BUTTONS
   ========================================================= */
.kontakt-aktionen {
  display: none;
}
.kontakt-button {
  background-color: var(--creme);
  color: var(--violett-dunkel);
}
.kontakt-button:hover {
  background-color: var(--weiss);
}
.kontakt-button-outline {
  border: 2px solid var(--creme);
  color: var(--creme);
}
.kontakt-button-outline:hover {
  background-color: var(--creme);
  color: var(--violett-dunkel);
}
/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: #250724;
  color: var(--weiss);
  padding: 3rem 1.5rem 2rem;
}
.footer-inhalt {
  max-width: var(--max-breite);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer-logo {
  width: 85px;
  margin-bottom: 1rem;
}
.footer-marke p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-recht {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}
.footer-recht a {
  color: var(--weiss);
  font-size: 0.9rem;
}
.footer-recht a:hover {
  color: var(--creme);
}
.footer-unten {
  max-width: var(--max-breite);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-unten p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
/* =========================================================
   RECHTLICHE SEITEN
   IMPRESSUM / DATENSCHUTZ
   ========================================================= */
.recht-seite {
  background-color: var(--weiss);
}
/* ---------------------------------------------------------
   KOPFBEREICH
   --------------------------------------------------------- */
.recht-header {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem;
  background-color: var(--creme);
  border-bottom: 1px solid var(--linie);
}
.recht-logo-link {
  display: inline-block;
}
.recht-logo {
  width: 110px;
  height: auto;
}
/* ---------------------------------------------------------
   HAUPTBEREICH
   --------------------------------------------------------- */
.recht-main {
  width: 100%;
}
.recht-inhalt {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}
.recht-inhalt > h1 {
  margin-bottom: 3rem;
}
/* ---------------------------------------------------------
   EINZELNE ABSCHNITTE
   --------------------------------------------------------- */
.recht-abschnitt {
  max-width: none;
  margin: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--linie);
}
.recht-abschnitt h2 {
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--violett-dunkel);
  margin-bottom: 1.2rem;
}
.recht-abschnitt p {
  max-width: 720px;
  color: var(--text-hell);
}
.recht-abschnitt strong {
  color: var(--text);
}
.recht-abschnitt a {
  color: var(--violett);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* ---------------------------------------------------------
   LISTEN
   --------------------------------------------------------- */
.recht-liste {
  margin: 1.5rem 0 1.5rem 1.3rem;
  max-width: 720px;
  color: var(--text-hell);
}
.recht-liste li {
  padding: 0.3rem 0;
}
/* ---------------------------------------------------------
   ZURÜCK
   --------------------------------------------------------- */
.recht-zurueck {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--linie);
}
.recht-zurueck-link {
  font-weight: 600;
  color: var(--violett-dunkel);
}
/* =========================================================
   TABLET UND DESKTOP
   ========================================================= */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  /* HERO GESAMT */
  .hero {
    min-height: 760px;
    display: grid;
    grid-template-columns: 55% 45%;
  }
  /* FOTO LINKS */
  .hero-bild {
    height: 100%;
    min-height: 760px;
  }
  /* RECHTE SEITE */
  .hero-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .hero-inhalt {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem;
  }
  .hero-claim {
    font-size: 1.7rem;
  }
  .salon-logo {
    width: 125px;
  }
  .hero-kicker {
    font-size: 1.2rem;
  }
  .hero-text {
    font-size: 1.05rem;
  }
  /* ÖFFNUNGSZEITEN + STANDORT */
  .hero-info {
    grid-template-columns: 1fr 1fr;
  }
  .hero-info-block {
    padding: 2.2rem;
  }
  .oeffnungszeit {
    font-size: 0.82rem;
  }
  /* BUTTONS */
  .desktop-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 2rem;
  }
  .mobile-actions {
    display: none;
  }
  section {
    padding: 6rem 3rem;
  }
  .leistungen-bereich {
    padding: 6rem 3rem;
  }
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .leistungen-hinweise {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .leistung-karte {
    padding: 2.2rem;
  }
  .hinweis-box {
    padding: 2.5rem;
  }
  .salon-bereich {
    padding: 7rem 3rem;
  }
  .salon-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 4rem;
  }
  .salon-bilder {
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: 1fr 1fr;
    min-height: 560px;
    gap: 1rem;
  }
  .salon-bild-gross {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 560px;
  }
  .salon-bild:not(.salon-bild-gross) {
    min-height: 0;
  }
  .kontakt-bereich {
    padding: 7rem 3rem;
  }
  .kontakt-daten {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
  }
  .kontakt-aktionen {
    display: flex;
    gap: 1rem;
  }
  .site-footer {
    padding: 4rem 3rem 2rem;
  }
  .footer-inhalt {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .footer-recht {
    flex-direction: row;
    gap: 2rem;
  }
  .recht-header {
    padding: 2rem 3rem;
  }
  .recht-logo {
    width: 110px;
  }
  .recht-inhalt {
    padding: 6rem 3rem 8rem;
  }
  .termin-bereich {
    padding: 7rem 3rem;
  }
  .termin-text {
    padding-left: 2rem;
  }
  .termin-danke {
    padding: 1.8rem 2rem;
  }
}
/* =========================================================
   GROSSE MONITORE
   ========================================================= */
@media (min-width: 1200px) {
  h1 {
    font-size: 3.6rem;
  }
  .hero {
    grid-template-columns: 58% 42%;
    min-height: 800px;
  }
  .hero-bild {
    min-height: 800px;
  }
  .hero-inhalt {
    padding: 4.5rem;
  }
  .salon-logo {
    width: 300px;
  }
  .hero-info-block {
    padding: 2.5rem;
  }
  .oeffnungszeit {
    font-size: 0.9rem;
  }
  .desktop-actions {
    flex-direction: row;
  }
  .leistungen-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  /* Erste drei Karten */
  .leistung-karte:nth-child(1), .leistung-karte:nth-child(2), .leistung-karte:nth-child(3) {
    grid-column: span 2;
  }
  /* Karten 4 bis 7 */
  .leistung-karte:nth-child(4), .leistung-karte:nth-child(5), .leistung-karte:nth-child(6), .leistung-karte:nth-child(7) {
    grid-column: span 3;
  }
  @media (min-width: 1024px) {
    .recht-header {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
      padding-left: clamp(4rem, 6vw, 7rem);
      padding-right: 3rem;
    }
    .recht-logo {
      width: 340px;
      max-width: 100%;
      height: auto;
    }
  }
}