/*
Theme Name: Wels 2024
* Version: 1.0
* Theme URI: xxx.de
Text Domain: wels
Domain Path: /languages
Description: Theme fÃƒÂ¼r die Firma GlÃƒÂ¤ser Wels Kosmetik
Author: Tempus Webdesign
Author URI: https://tempus-webdesign.de
*/

/* Bindestrich-Fix: Nunito Light für Cormorant Garamond Hyphens */
@font-face {
  font-family: 'Garamond Hyphen Fix';
  src: url('assets/fonts/nunito-hyphen.woff2') format('woff2');
  font-weight: 300;
  unicode-range: U+002D, U+2010, U+2011, U+2012;
  font-display: swap;
}

/* =========================================
   Farb-Variablen
   ========================================= */
:root {
  /* Grundfarben / Text */
  --color-text: #3A362F;
  --color-text-muted: #6B665D;
  --color-heading: #3A362F;

  /* Markenfarben */
  --color-gold: #cab063;
  --color-gold-dark: #B69E59;

  --color-green: #879a30;
  --color-green-dark: #6e8673;

  /* Hintergründe / Flächen */
  --color-bg-page: #FAF7F2;      /* Cream */
  --color-bg-light: #EDE8DF;     /* Beige */
  --color-bg-grey: #9e9a93;
  --color-bg-dark: #373737;

  /* Linien / dezente Rahmen */
  --color-border-soft: #D5CEC3;

  /* Display-Schrift */
  --font-display: 'Garamond Hyphen Fix', 'Cormorant Garamond', Georgia, serif;
}

/* =========================================
   Basis-Typografie & Standard-Styles
   ========================================= */

body {
  color: var(--color-text);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  line-height: 1.75;
  background-color: var(--color-bg-page);
  -webkit-font-smoothing: antialiased;
}

p,
li {
  line-height: 1.8;
  color: var(--color-text-muted);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display) !important;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.title-h2 {
  padding: 0 0 0.5em;
}

.button {
  padding: 1em;
}

/* HintergrÃƒÂ¼nde */
.bg-grey {
  background: var(--color-bg-grey);
}
.bg-grey2 {
  background: var(--color-bg-light);
}
.bg-darkgrey {
  background: var(--color-bg-dark);
}
.bg-green {
  background: var(--color-green);
}
.bg-gold {
  background-color: var(--color-gold);
}

/* Texte */
.txt-green {
  color: var(--color-green);
}
.txt-bold {
  font-weight: bold;
}
.txt-white,
.font-white {
  color: #fff;
}
.txt-greren {
  color: #6e8673;
}

/* Weitere Backgrounds */
.bg-company {
  background-image: url(assets/img/bg-company.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-e-icon {
  background-image: url(assets/img/bg-e-icon.png);
  background-position: right bottom;
  background-repeat: no-repeat;
}

/* Links */
a:link,
a:visited {
  color: var(--color-text);
  text-decoration: none;
}
a:hover {
  color: var(--color-gold-dark);
  opacity: 1;
}

/* Sonstiges */
.link-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.container-xl {
  max-width: 1500px;
}
.container-top {
  padding-top: 5em;
  margin-top: -7em;
}
li {
  list-style: #fff; /* war schon so Ã¢â‚¬â€œ Browser ignorieren den Wert, daher bleibt Verhalten wie vorher */
}
.txt-call-to-aktion {
  font-size: 1.5em;
  font-weight: bold;
}

/* Headlines */
.headline {
  color: var(--color-heading);
  letter-spacing: 2px;
}
h3 {
  letter-spacing: 2px;
}

/* Unterstreichungen */
.underline {
  position: relative;
}
.underline:after {
  background: #d7b56d;
  content: "";
  height: 2px;
  width: 95px;
  bottom: 0;
  left: 0;
  position: absolute;
}
.underline-white:after {
  background: #fff;
}
.underline-green:after {
  background: var(--color-green);
}
.text-center.underline:after {
  margin: 0 auto;
  right: 0;
}
.underline-xl {
  width: 200px;
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  border-radius: 0;
}

/* Hilfs-Klassen aus altem Theme (kannst du weiter nutzen) */
.top-leistungen .btn {
  border-radius: 1em;
}
.button-card .btn {
  max-width: 250px;
}

/* Gutenberg Button Styles */
a.wp-block-button__link,
a.wp-block-button__link:link,
a.wp-block-button__link:visited {
  background: #99b629;
  padding: 0.5em 1em;
  color: #fff;
  border: 0;
  min-width: 200px;
  margin-bottom: 0.5em;
  border-radius: 0;
}
a.wp-block-button__link:hover {
  color: #454545;
  background: transparent;
  border: none;
}
.header-botton a.wp-block-button__link,
.header-botton a.wp-block-button__link:link,
.header-botton a.wp-block-button__link:visited {
  background: #fff;
  border-radius: 0;
  color: #000;
  padding: 1em;
  font-size: 1em;
}
a.wp-block-button__link.bg:hover {
  color: #695445;
  background: transparent;
  border: 2px solid #695445;
}
.wp-block-buttons a.bg-white.wp-block-button__link,
.wp-block-buttons a.bg-white.wp-block-button__link:link,
.wp-block-buttons a.bg-white.wp-block-button__link:visited {
  background: #fff;
  color: #000;
}
.wp-block-buttons a.bg-black.wp-block-button__link,
.wp-block-buttons a.bg-black.wp-block-button__link:link,
.wp-block-buttons a.bg-black.wp-block-button__link:visited {
  background: #000;
}
.wp-block-buttons a.bg-yellow.wp-block-button__link,
.wp-block-buttons a.bg-yellow.wp-block-button__link:link,
.wp-block-buttons a.bg-yellow.wp-block-button__link:visited {
  background: #e2b619;
}

/* Wiederverwendbarer Gold-Pill-Button (Hero, CTA, Cards) */
a.btn-pill-primary {
  background-color: var(--color-gold);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 2.5rem;
  border: none;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(232,184,75,0.25);
}

.btn-pill-primary:hover,
.btn-pill-primary:focus {
  background-color: var(--color-gold-dark);
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}

/* kleinere Variante fÃƒÂ¼r Buttons in Cards (Services, Blog etc.) */
.service-card-btn {
  padding: 0.55rem 1.9rem;
  font-size: 0.9rem;
}

/* =========================================
   Header / Navigation
   ========================================= */

.header-container {
  /* padding-top: 5em; */
}
.slider-container {
  overflow: hidden;
}
.slider-container img {
  width: 100%;
  float: left;
}
.slogan {
  position: absolute;
  bottom: 2em;
  right: 0;
  max-width: 500px;
}
.menu-shop-topbar {
  display: flex;
  justify-content: flex-end;
}
.topbar-nav a {
  padding: 1em 0.5em 0;
  color: #000000;
}
.logo {
  max-width: 280px;
  float: none;
}
.logo img {
  border: 9px solid #fff;
  float: left;
  border-radius: 10px;
}


.collapse a{ padding: 0 1em;}

/* Navigation: Hover + aktive Seite */
.main-nav .menu-item a {
  position: relative;
  transition: color 0.25s ease;
}

.main-nav .menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #CAB063;
  transition: width 0.3s ease, left 0.3s ease;
}

.main-nav .menu-item a:hover {
  color: #CAB063;
}

.main-nav .menu-item a:hover::after {
  width: 100%;
  left: 0;
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: #CAB063;
  font-weight: 700;
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  width: 100%;
  left: 0;
}

/*----------Main------------*/
.container-sm {
  max-width: 900px;
}
.logo-home {
  max-width: 250px;
}

/*----------Kontakt------------*/

/*------Footer----*/
.logo-footer {
  max-width: 300px;
}
.footer-light{
  background: #b9b3ac;
  font-size: 15px;
}
.footer-container a:link,
.footer-container a:visited {
  color: #7b7b7b;
}
#menu-impressum-menue {
  padding: 0;
}
.impress-nav ul,
.footer-nav ul {
  padding: 0;
}

/* =========================================
   Media Queries
   ========================================= */

@media only screen and (min-width: 600px) {
  .main-nav.cloned {
    background: #fff;
    z-index: 90;
    padding: 0.5em 0;
    color: #000;
  }
  .main-nav.cloned ul {
    padding: 0;
  }
  .main-nav.cloned ul li a {
    color: #000;
  }
}

@media only screen and (min-width: 800px) {
  .slider-content h2 {
    font-size: 3em;
    padding: 0;
    line-height: 0.9em;
    letter-spacing: 2px;
  }
  .slider-content p {
    letter-spacing: 2px;
    font-weight: 100;
  }

  #menu-topbar {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
  .menu-topbar-container {
    width: calc(100% - 450px);
    float: left;
  }
  .topbar-nav {
    padding: 0.25em;
    font-size: 0.8em;
  }
  .main-nav {
    /* padding: 2em 0; */
  }
  .menu-main-menu-container {
    display: flex;
  }
  .menu-main-menue-container {
    float: left;
    width: 100%;
  }
  .cloned .menu-main-menue-container {
    display: flex;
    justify-content: center;
  }

  .main-nav.original ul {
    display: flex;
    padding: 0;
  }
  .main-nav.original li {
    display: flex;
  }
  #menu-item-57 {
    margin-left: auto;
  }
  .main-nav ul li:not(:first-child):hover a:before {
    border-bottom: none;
    width: 100%;
    border-bottom: 4px solid #99b629;
    left: 0;
    right: 0;
    margin: auto;
  }
  .main-content.small {
    width: 35%;
    max-width: 280px;
  }
  .main-content.big {
    max-width: 880px;
  }
  .bg-conainer {
    background: url(assets/img/baueme-links.png) no-repeat -450px -150px,
      url(assets/img/baueme-rechts.png) no-repeat right bottom;
  }
  .topleistung-content > div {
    border-top-right-radius: 10em;
    border-top-left-radius: 10em;
  }
}

@media only screen and (min-width: 1200px) {
  .sitename {
    max-width: 290px;
    z-index: 5;
  }
  .header-text {
    padding-left: 350px;
  }

  .logo {
    max-width: 100px;
  }
  .icon-container {
    background: #eff0f0;
  }
  .icon-content {
    margin-top: -100px;
    position: relative;
    z-index: 999;
  }
  .icon-content {
    display: flex;
    justify-content: flex-end;
    gap: 2em;
  }
}

@media only screen and (min-width: 1400px) {
  .header-botton a.wp-block-button__link,
  .header-botton a.wp-block-button__link:link,
  .header-botton a.wp-block-button__link:visited {
  }
  .slider-content {
    text-align: left;
    color: #fff;
  }
  .slider-text {
    position: absolute;
    top: 0;
    height: 100%;
  }
}

@media only screen and (min-width: 1600px) {
}

/* =========================================
   Eigenes Startseiten-Design
   ========================================= */

/* --- Sektion: Bild + Text + Button (Hero) --- */

.section-media {
  background-color: var(--color-bg-page);
}

/* Globaler Seiteninhalt-Container */
.global-page-content {
  background: var(--color-bg-page);
  padding: 60px 0;
}

.global-page-content .container {
  max-width: 860px;
}

.global-page-content h2 {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 32px;
}
.global-page-content li,
.global-page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Globaler Section-Label */
.global-section-label {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 12px;
}

/* Globaler Divider */
.global-divider {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto 32px;
  border-radius: 1px;
}

/* Bild mit groÃƒÅ¸en Rundungen */
.media-image-rounded {
  border-radius: 2.5rem;
  overflow: hidden;
}
.media-image-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Headline Ã¢â‚¬Å¾JETZT GANZ NEU Ã¢â‚¬Â¦Ã¢â‚¬Å“ */
.section-heading {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.heading-highlight {
  /* wenn du einen farbigen Balken mÃƒÂ¶chtest, hier aktivieren:
     background: #3f5ed7;
     color: #ffffff;
     padding: 0.2em 0.6em;
  */
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: bold;
}

/* FlieÃƒÅ¸text im Abschnitt */
.section-lead {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 34rem;
}

@media (max-width: 991.98px) {
  .section-media {
    text-align: center;
  }
  .section-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .btn-pill-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .media-image-rounded {
    margin-bottom: 2rem;
  }
}

/* --- Services-Bereich (3 Kacheln) --- */

.section-services {
  /* .bg-grey kommt schon vom Container */
}

/* Wrapper fÃƒÂ¼r alle Karten */
.service-cards {
  margin-top: 1rem;
}

/* Einzelne Karte */
.service-card {
  background: #ffffff;
  border-radius: 2.5rem;
  padding: 3rem 2.5rem 2.3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon-Kreis oben */
.service-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #f5f0e8; /* weicher Beige-Kreis wie im Muster */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.service-card-icon img {
  /* max-width: 40px; */
  /* max-height: 40px; */
  object-fit: contain;
}

/* Titel */
.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Text */
.service-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 2rem;
}

/* Responsive: auf Mobile etwas mehr Abstand nach unten */
@media (max-width: 767.98px) {
  .service-card {
    margin-bottom: 0.5rem;
  }
}
/* =========================================
   Hero Jumbotron Praxis
   ========================================= */

.hero-praxis {
  position: relative;
  min-height: 380px;
  
  overflow: hidden;
}

/* Hintergrundbild als Cover */
.hero-praxis-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(0.65); /* Bild abdunkeln, damit Text besser lesbar ist */
}

/* Optionale zusÃƒÂ¤tzliche TÃƒÂ¶nung / Verlauf */
.hero-praxis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 40%,
    transparent 100%
  );
  z-index: 0;
}

/* Inhalt liegt ÃƒÂ¼ber dem Bild */
.hero-praxis .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Titel & Text im Hero */
.hero-praxis-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-praxis-text {
  font-size: 1rem;
  max-width: 28rem;
}


/* Responsive Anpassungen */
@media (min-width: 992px) {
  .hero-praxis {
    /* min-height: 460px; */
  }
  .hero-praxis-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 767.98px) {
  .hero-praxis {
    text-align: center;
  }
  .hero-praxis .row {
    justify-content: center;
  }
  .hero-praxis-text {
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================================
   Angebote / Leistungen (Bild + Titel + Text)
   ========================================= */

.section-offers {
  background-color: #ffffff; /* wie im Muster: weiÃƒÅ¸er Bereich */
}

.offer-card {
  max-width: 420px;
  margin: 0 auto;
}

/* Bild oben mit Rundungen */
.offer-card-image {
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Titel & Text */
.offer-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.offer-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
}

.offer-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.offer-card-link:hover .offer-card {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

.offer-card-link:hover .offer-card-image img {
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

/* =========================================
   Hero Header mit organischer Bubble
   ========================================= */
.hero-header {
  position: relative;
  min-height: 76vh;
  color: #ffffff;
  overflow: hidden;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* hero-header-bg kannst du komplett lÃƒÂ¶schen */


/* Linke Seite leicht getÃƒÂ¶nt / Verlauf */
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(167, 162, 159, 0.95) 0%,
    rgba(167, 162, 159, 0.8) 35%,
    rgba(167, 162, 159, 0.2) 70%,
    transparent 100%
  );
  z-index: 0;
}

/* Inhalt liegt ÃƒÂ¼ber Bild + Verlauf */
.hero-header .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Bubble-Form links */
.hero-header-bubble {
  background: rgba(234, 216, 190, 0.95);
  border-radius: 45% 55% 60% 40% / 60% 45% 55% 40%;
  padding: 8.5rem 3rem;
  max-width: 608px;
}

/* Titel "Slogan." */
.hero-header-title {
  margin: 0 0 0.5rem;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
}

.hero-header-title-main {
  display: inline-block;
}

.hero-header-title-dot {
  display: inline-block;
  color: var(--color-gold);
}

/* =========================================
   Hero "Behandlungen"
   ========================================= */
.hero-treatments {
  position: relative;
  min-height: 320px;
  color: #ffffff;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* hero-treatments-bg kannst du lÃƒÂ¶schen */

.hero-treatments::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    transparent 100%
  );
  z-index: 0;
}

.hero-treatments .container {
  position: relative;
  z-index: 1;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.hero-treatments-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-treatments-subtitle {
  font-size: 1.05rem;
  
}

@media (min-width: 992px) {
  .hero-treatments .row{
    min-height: 380px;
  }
  .hero-treatments-title {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-treatments {
    text-align: center;
  }
  .hero-treatments .row {
    justify-content: center;
  }
  .hero-treatments-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================
   Behandlungen Ã¢â‚¬â€œ Bilder / Intro
   ========================================= */

.section-treatments-top {
  background-color: #ffffff;
}

.section-treatments-top .section-lead {
  max-width: 50rem;
}

/* =========================================
   Behandlungen Ã¢â‚¬â€œ Liste "Meine Leistungen"
   ========================================= */

.treatment-list-section {
  /* background-color: var(--color-bg-grey); */
}

.treatment-list-container {
  max-width: 900px;
}

.treatment-list-heading {
  /* font-size: 1.2rem; */
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.treatment-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.treatment-box {
  background-color: #b9b3ac;
  border-radius: 0.75rem;
  padding: 0.9rem 1.3rem 1.1rem;
}

.treatment-box-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.treatment-box-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.treatment-list-footer {
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* =========================================
   Kosmetik-Seite – um-Design Erweiterungen
   ========================================= */

/* Bildergalerie */
.um-gallery-section {
  background: var(--um-cream, #FAF7F2);
  padding: 0 0 60px;
}

.um-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.um-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.um-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.um-gallery-item:hover img {
  transform: scale(1.04);
}

/* Intro: einspaltiger Variante */
.um-intro-columns--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* Partner-Logo in Feature-Row */
.um-partner-logo-wrap {
  background: var(--um-beige, #EDE8DF);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.um-partner-logo-wrap img {
  max-width: 280px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Behandlungskarten */
.um-treatments-section {
  background: var(--um-cream, #FAF7F2);
  padding: 60px 0 40px;
}

.um-treatments-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.um-treatment-card {
  background: var(--um-beige, #EDE8DF);
  border-radius: 16px;
  padding: 28px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.um-treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.um-treatment-title {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--um-text, #3A362F);
  margin: 0 0 10px;
}

.um-treatment-text {
  font-size: 1rem;
  color: var(--um-text-light, #6B665D);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .um-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .um-treatments-list {
    grid-template-columns: 1fr;
  }

  .um-treatment-card {
    padding: 22px 24px;
  }
}

/* =========================================
   Startseite – um-Design Erweiterungen
   ========================================= */

/* Feature-Row: erste Sektion ohne oberen Cream-Bereich */
.um-feature-section--first {
  padding-top: 70px;
}

/* Services-Sektion */
.um-services-section {
  background: var(--um-beige, #EDE8DF);
  padding: 70px 0 60px;
}

.um-service-cards {
  margin-top: 40px;
}

.um-service-card {
  background: var(--um-cream, #FAF7F2);
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.um-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.um-service-card-icon {
  margin-bottom: 20px;
}

.um-service-card-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.um-service-card-title {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--um-text, #3A362F);
  margin: 0 0 10px;
}

.um-service-card-text {
  font-size: 0.95rem;
  color: var(--um-text-light, #6B665D);
  line-height: 1.7;
  margin: 0;
}

.um-service-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Partner-Strip (Startseite) */
.um-partner-strip {
  background: var(--um-cream, #FAF7F2);
  padding: 70px 0 60px;
}

.um-partner-logos {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.um-partner-logo {
  background: var(--um-beige, #EDE8DF);
  border-radius: 12px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.um-partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.um-partner-logo img {
  max-width: 320px;
  max-height: 140px;
  object-fit: contain;
}

/* Offer-Cards (Startseite Behandlungen) */
.um-offers-section {
  background: var(--um-cream, #FAF7F2);
  padding: 70px 0 60px;
}

.um-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.um-offer-card {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  transition: transform 0.3s ease;
}

.um-offer-card:hover {
  transform: translateY(-4px);
  color: inherit;
}

.um-offer-card-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.um-offer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.um-offer-card:hover .um-offer-card-image img {
  transform: scale(1.04);
}

.um-offer-card-title {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--um-text, #3A362F);
  margin: 0 0 8px;
}

.um-offer-card-text {
  font-size: 0.95rem;
  color: var(--um-text-light, #6B665D);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .um-offers-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .um-service-buttons {
    flex-direction: column;
    align-items: center;
  }

  .um-partner-logo img {
    max-width: 120px;
    max-height: 50px;
  }
}

/* =========================================
   Kontakt-Seite – um-Design Erweiterungen
   ========================================= */

/* Kontakt-Grid: Karte + Info nebeneinander */
.um-contact-section {
  background: var(--um-cream, #FAF7F2);
  padding: 0 0 60px;
}

.um-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.um-contact-map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.um-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.um-contact-info {
  padding: 12px 0;
}

.um-contact-block {
  margin-bottom: 28px;
}

.um-contact-block .um-section-label {
  text-align: left;
  margin-bottom: 8px;
  font-size: 0.75rem;
}

.um-contact-block p {
  font-size: 1.05rem;
  color: var(--um-text, #3A362F);
  line-height: 1.85;
  margin: 0;
}

.um-contact-block a {
  color: var(--um-text, #3A362F);
  text-decoration: none;
  border-bottom: 1px solid var(--um-gold, #CAB063);
  transition: color 0.25s;
}

.um-contact-block a:hover {
  color: var(--um-gold, #CAB063);
}

/* Anfahrt-Karten */
.um-anfahrt-section {
  background: var(--um-cream, #FAF7F2);
  padding: 60px 0;
}

.um-anfahrt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.um-anfahrt-card {
  background: var(--um-beige, #EDE8DF);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.um-anfahrt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.um-anfahrt-icon {
  color: var(--um-gold, #CAB063);
  margin-bottom: 20px;
}

.um-anfahrt-card h3 {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--um-text, #3A362F);
  margin: 0 0 12px;
}

.um-anfahrt-card p {
  font-size: 1rem;
  color: var(--um-text-light, #6B665D);
  line-height: 1.75;
  margin: 0;
}

/* Kontaktformular-Sektion */
.um-form-section {
  background: var(--um-cream, #FAF7F2);
  padding: 60px 0;
}

.um-form-wrapper {
  max-width: 680px;
  margin: 30px auto 0;
}

.um-form-wrapper input[type="text"],
.um-form-wrapper input[type="email"],
.um-form-wrapper input[type="tel"],
.um-form-wrapper textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--um-beige-dark, #D5CEC3);
  border-radius: 10px;
  background: #fff;
  font-size: 1rem;
  color: var(--um-text, #3A362F);
  transition: border-color 0.25s;
}

.um-form-wrapper input:focus,
.um-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--um-gold, #CAB063);
  box-shadow: 0 0 0 3px rgba(232,184,75,0.15);
}

.um-form-wrapper input[type="submit"],
.um-form-wrapper button[type="submit"] {
  background: var(--um-gold, #CAB063);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(232,184,75,0.25);
}

.um-form-wrapper input[type="submit"]:hover,
.um-form-wrapper button[type="submit"]:hover {
  background: #B69E59;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .um-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .um-contact-map {
    aspect-ratio: 16/9;
  }

  .um-contact-block .um-section-label {
    text-align: center;
  }

  .um-contact-block p {
    text-align: center;
  }

  .um-contact-info {
    text-align: center;
  }

  .um-anfahrt-grid {
    grid-template-columns: 1fr;
  }
}

/* Back-to-Top Button */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  cursor: pointer;

  /* zunächst ausgeblendet – kann per JS sichtbar gemacht werden */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}

/* sichtbarer Zustand – Klasse z.B. per JS hinzufügen */
#back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top .top-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 8px;
  background-color: var(--color-gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  display: block;
}

#back-to-top .top-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* =========================================
   News / Beiträge (Startseite)
   ========================================= */
.um-news-section {
  padding: 80px 0;
  background: var(--color-bg-page, #FAF7F2);
}

.um-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.um-news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.um-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  color: inherit;
}

.um-news-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.um-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.um-news-card:hover .um-news-card-image img {
  transform: scale(1.05);
}

.um-news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.um-news-card-date {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold, #CAB063);
  margin-bottom: 10px;
}

.um-news-card-title {
  font-family: var(--font-display) !important;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text, #3A362F);
  line-height: 1.3;
  margin-bottom: 12px;
}

.um-news-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted, #6B665D);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.um-news-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold, #CAB063);
  margin-top: 16px;
  transition: color 0.2s ease;
}

.um-news-card:hover .um-news-card-link {
  color: var(--color-gold-dark, #B69E59);
}

@media (max-width: 991px) {
  .um-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .um-news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .um-news-section {
    padding: 60px 0;
  }
  .um-news-card-image {
    height: 180px;
  }
}

/* News Pagination */
.um-news-pagination {
  margin-top: 48px;
  text-align: center;
}
.um-news-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.um-news-pagination li {
  display: inline-block;
}
.um-news-pagination a,
.um-news-pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.um-news-pagination a {
  color: var(--color-text, #3A362F);
  background: #fff;
  border: 1px solid #e0dcd6;
}
.um-news-pagination a:hover {
  background: var(--color-gold, #CAB063);
  color: #fff;
  border-color: var(--color-gold, #CAB063);
}
.um-news-pagination .current {
  background: var(--color-gold, #CAB063);
  color: #fff;
  border: 1px solid var(--color-gold, #CAB063);
}

/* Single Post – Beitragsbild */
.um-single-featured {
  padding: 48px 0 0;
  background: var(--color-bg-page, #FAF7F2);
}
.um-single-featured img {
  max-width: 680px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}


/* =========================================
   Über mich – Seite (page-9)
   ========================================= */

/* --- Variablen (lokal, um-Prefix) --- */
.um-hero,
.um-intro-section,
.um-pullquote-section,
.um-journey-section,
.um-feature-section,
.um-closing-section {
  --um-cream: #FAF7F2;
  --um-beige: #EDE8DF;
  --um-beige-dark: #D5CEC3;
  --um-gold: #CAB063;
  --um-olive: #8B8167;
  --um-olive-dark: #6B655B;
  --um-text: #3A362F;
  --um-text-light: #6B665D;
  --um-grey-bg: #9e9a93;
  --um-font-display: 'Garamond Hyphen Fix', 'Cormorant Garamond', Georgia, serif;
}

/* --- HERO --- */
.um-hero {
  position: relative;
  overflow: hidden;
}

/* ── Ohne Bild: Grauer Block mit Ellipsen-Übergang ── */
.um-hero:not(.um-hero-split) {
  background: var(--um-gold, #CAB063);
  padding: 100px 24px 130px;
  text-align: center;
}

.um-hero:not(.um-hero-split)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--um-cream, #FAF7F2);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.um-hero:not(.um-hero-split) .um-hero-text {
  /* Kein eigener Hintergrund – .um-hero ist bereits grau */
  background: none;
  padding: 0;
}

/* ── Mit Bild: Bild oben, Text darunter ── */
.um-hero-image {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
}

.um-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.um-hero-split .um-hero-text {
  background: var(--um-gold, #CAB063);
  padding: 48px 24px 100px;
  text-align: center;
  position: relative;
}

.um-hero-split .um-hero-text::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--um-cream, #FAF7F2);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* ── Hero-Textelemente (einheitlich) ── */
.um-hero-label {
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  animation: umFadeUp 0.8s ease both;
}

.um-hero h1 {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: umFadeUp 0.8s ease 0.15s both;
}

.um-hero-sub {
  font-family: var(--um-font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto;
  animation: umFadeUp 0.8s ease 0.3s both;
}

/* --- INTRO --- */
.um-intro-section {
  background: var(--um-cream);
  padding: 80px 0 60px;
}

.um-section-label {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--um-gold, #CAB063);
  margin-bottom: 20px;
  text-align: center;
}

.um-intro-heading {
  font-family: var(--um-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--um-text);
  line-height: 1.25;
  margin-bottom: 36px;
  text-align: center;
}

.um-intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.um-intro-columns p {
  font-size: 1.05rem;
  color: var(--um-text-light);
  line-height: 1.85;
}

/* --- PULLQUOTE --- */
.um-pullquote-section {
  background: var(--um-cream);
  padding: 40px 0;
}

.um-pullquote {
  background: var(--um-beige);
  border-radius: 20px;
  padding: 56px 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.um-pullquote::before {
  content: none;
}

.um-pullquote p {
  font-family: var(--um-font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--um-olive-dark);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- JOURNEY TIMELINE --- */
.um-journey-section {
  background: var(--um-cream);
  padding: 60px 0;
}

.um-journey-grid {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 0 40px;
  position: relative;
}

.um-journey-line {
  background: linear-gradient(to bottom, var(--um-gold), var(--um-beige-dark));
  border-radius: 2px;
  position: relative;
}

.um-dot {
  width: 14px;
  height: 14px;
  background: var(--um-gold);
  border: 3px solid var(--um-cream);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 3px var(--um-gold);
}

.um-dot:first-child { top: 0; }
.um-dot:last-child { bottom: 0; }

.um-journey-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.um-journey-block h3 {
  font-family: var(--um-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--um-text);
  margin-bottom: 16px;
  text-align: center;
}

.um-journey-block h3 span {
  color: var(--um-gold);
  font-weight: 700;
}

.um-journey-block p {
  font-size: 1.05rem;
  color: var(--um-text-light);
  line-height: 1.85;
}

/* --- FEATURE SECTIONS (Philosophie & Wohlfühlen) --- */
.um-feature-section {
  background: var(--um-cream);
  padding: 50px 0;
}

.um-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.um-feature-row:last-child {
  margin-bottom: 0;
}

.um-feature-row.um-reversed .um-feature-image {
  order: 2;
}

.um-feature-row.um-reversed .um-feature-text {
  order: 1;
}

.um-feature-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.um-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.um-feature-image:hover img {
  transform: scale(1.03);
}

.um-accent-border {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--um-gold, #CAB063);
  border-radius: 20px;
  opacity: 0.4;
  pointer-events: none;
}

.um-feature-text h2 {
  font-family: var(--um-font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--um-text);
  line-height: 1.25;
  margin-bottom: 10px;
  text-align: center;
}

.um-subtitle {
  font-family: var(--um-font-display);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--um-olive);
  margin-bottom: 20px;
  text-align: center;
}

.um-feature-body,
.um-feature-body p {
  font-size: 1.05rem;
  color: var(--um-text, #3A362F);
  line-height: 1.85;
}

.um-feature-btn {
  margin-top: 20px;
}

/* --- CLOSING --- */
.um-closing-section {
  background: var(--um-beige);
  padding: 80px 0;
  margin-top: 40px;
  position: relative;
}

.um-closing-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--um-cream);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.um-closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.um-divider {
  width: 60px;
  height: 3px;
  background: var(--um-gold, #CAB063);
  margin: 0 auto 36px;
  border-radius: 2px;
}

.um-closing-inner p {
  font-size: 1.08rem;
  color: var(--um-text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}

.um-closing-inner p:last-of-type {
  margin-bottom: 0;
}

.um-closing-inner p em {
  font-family: var(--um-font-display);
  font-size: 1.12rem;
  color: var(--um-olive-dark);
}

.um-btn-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--um-gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(232,184,75,0.25);
}

.um-btn-cta:hover {
  background: #B69E59;
  color: #fff;
  transform: translateY(-2px);
  opacity: 1;
}

/* --- ANIMATIONS --- */
@keyframes umFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.um-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.um-fade-in.um-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
/* --- Hero-Header Bubble: Mobil --- */
@media (max-width: 991px) {
  .hero-header {
    min-height: auto;
    background-position: center center;
  }

  .hero-header::before {
    background: linear-gradient(
      180deg,
      rgba(167, 162, 159, 0.3) 0%,
      rgba(167, 162, 159, 0.7) 40%,
      rgba(167, 162, 159, 0.95) 100%
    );
  }

  .hero-header .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-header-bubble {
    border-radius: 50%;
    padding: 4rem 2rem;
    max-width: 340px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-header-title {
    font-size: 2rem;
  }

  .hero-header-subtitle {
    font-size: 1.1rem;
  }

  .hero-header-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .hero-header-bubble {
    padding: 3.5rem 1.8rem;
    max-width: 290px;
  }

  .hero-header-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .um-intro-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .um-feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .um-feature-row.um-reversed .um-feature-image { order: 0; }
  .um-feature-row.um-reversed .um-feature-text { order: 0; }

  .um-pullquote {
    padding: 40px 32px;
  }

  .um-pullquote::before {
    font-size: 5rem;
    left: 20px;
    top: 0;
  }

  .um-journey-grid {
    gap: 0 24px;
  }

  .um-hero-image img {
    height: 260px;
  }

  .um-hero-split .um-hero-text {
    padding: 36px 24px 70px;
  }

  .um-hero:not(.um-hero-split) {
    padding: 100px 24px 60px;
  }
}

/* ═══════════════════════════════════════════════════════════
   KOMPAKTER STICKY HEADER
   ═══════════════════════════════════════════════════════════ */

.um-compact-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Offcanvas Fix - komplett unabhängig vom Header */
.offcanvas {
  z-index: 9999 !important;
  position: fixed !important;
  top: 0 !important;
  height: 100vh !important;
  width: 300px !important;
}

.offcanvas-backdrop {
  z-index: 9998 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

/* Offcanvas Body - kein overflow, volle Höhe */
.offcanvas-body {
  overflow-y: visible !important;
  overflow-x: hidden !important;
  padding: 20px !important;
  flex-grow: 1 !important;
}

/* Offcanvas Header - sicherstellen dass es sichtbar ist */
.offcanvas-header {
  padding: 16px 20px !important;
  border-bottom: 1px solid #EDE8DF;
}

.um-header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 14px 24px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Scrolled State */
.um-compact-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom-color: #EDE8DF;
}

/* Logo Container */
.um-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.um-logo-container:hover {
  opacity: 0.8;
}

/* Logo Image */
.um-logo-image {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* WebP-Plugin: <picture> erbt .um-logo-image Klasse */
picture.um-logo-image {
  height: auto;
  object-fit: unset;
}
picture.um-logo-image img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo Mark (Kreis mit D) */
.um-logo-mark {
  width: 42px;
  height: 42px;
  position: relative;
  flex-shrink: 0;
}

.um-logo-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #CAB063;
  animation: umLogoFadeIn 1s ease-out;
}

.um-logo-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Garamond Hyphen Fix', 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #3A362F;
  animation: umLogoFadeIn 1s ease-out 0.2s both;
}

.um-logo-dot {
  position: absolute;
  bottom: 6px;
  right: 2px;
  width: 5px;
  height: 5px;
  background: #CAB063;
  border-radius: 50%;
  animation: umLogoFadeIn 1s ease-out 0.4s both;
}

/* Logo Text */
.um-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.um-logo-name {
  font-family: 'Garamond Hyphen Fix', 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #3A362F;
}

.um-hyphen {
  font-family: 'Nunito', sans-serif;
}

.um-logo-tagline {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #a8893e;
  margin-top: 2px;
}

/* Footer Logo - etwas größer */
.um-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.um-footer-logo .um-logo-mark {
  width: 50px;
  height: 50px;
}

.um-footer-logo .um-logo-letter {
  font-size: 28px;
}

.um-footer-logo .um-logo-name {
  font-size: 18px;
}

.um-footer-logo .um-logo-tagline {
  font-size: 10px;
}

/* Footer Heart */
.um-heart {
  color: #dc3545;
  font-size: 1.1em;
  display: inline-block;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

/* =========================================
   Back to Top Button
   ========================================= */
.um-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: var(--um-gold, #CAB063);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  z-index: 999;
}

.um-back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.um-back-to-top:hover {
  background: var(--um-gold-dark, #B69E59);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.4);
}

.um-back-to-top:active {
  transform: translateY(-2px) scale(0.98);
}

.um-back-to-top svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke-width: 2.5;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .um-back-to-top {
    width: 46px !important;
    height: 46px !important;
    bottom: 20px !important;
    right: 20px !important;
  }

  .um-back-to-top svg {
    width: 18px !important;
    height: 18px !important;
  }
}

/* Burger Menu Button */
.um-menu-btn {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.um-menu-btn:hover {
  opacity: 0.7;
}

.um-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #3A362F;
  transition: 0.3s ease;
}

.um-menu-btn span:nth-child(2) {
  width: 16px;
  margin-left: auto;
}

/* Navigation Menü */
.um-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.um-nav-menu li {
  margin-bottom: 0;
}

.um-nav-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  color: #3A362F;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
  border-radius: 4px;
}

.um-nav-menu a:hover {
  color: #CAB063;
  background: rgba(232, 184, 75, 0.1);
}

.um-nav-menu .current-menu-item > a,
.um-nav-menu .current_page_item > a {
  color: #CAB063;
  font-weight: 600;
}

/* Desktop Navigation (inline mit Header) */
.um-nav-desktop {
  display: flex;
  align-items: center;
}

.um-nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.um-nav-menu-desktop li {
  margin: 0;
  padding: 0;
}

.um-nav-menu-desktop a {
  font-size: 15px;
  font-weight: 400;
  color: #3A362F;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 8px 0;
  display: block;
  white-space: nowrap;
}

.um-nav-menu-desktop a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CAB063;
  transition: width 0.3s ease;
}

.um-nav-menu-desktop a:hover {
  color: #CAB063;
}

.um-nav-menu-desktop a:hover::after {
  width: 100%;
}

.um-nav-menu-desktop .current-menu-item > a,
.um-nav-menu-desktop .current_page_item > a {
  color: #CAB063;
  font-weight: 600;
}

.um-nav-menu-desktop .current-menu-item > a::after,
.um-nav-menu-desktop .current_page_item > a::after {
  width: 100%;
}

@keyframes umLogoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════
   FULLSCREEN HERO (Startseite)
   ═══════════════════════════════════════════════════════════ */

.um-hero-fullscreen {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
}

.um-hero-fullscreen-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gradient Overlay */
.um-hero-fullscreen-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.1) 0%,
    transparent 30%
  ),
  linear-gradient(
    0deg,
    rgba(42,37,32,0.55) 0%,
    rgba(42,37,32,0.15) 40%,
    transparent 100%
  );
  z-index: 1;
}

.um-hero-fullscreen-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.um-hero-fullscreen-content {
  max-width: 1500px;
  width: 100%;
  padding: 30px 24px 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge */
.um-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 184, 75, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 184, 75, 0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  width: fit-content;
  margin-bottom: 16px;
  animation: umSlideUp 0.8s ease-out 0.3s both;
}

.um-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #CAB063;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(232, 184, 75, 0.6);
}

/* Title */
.um-hero-fullscreen-title {
  font-family: 'Garamond Hyphen Fix', 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  animation: umSlideUp 0.8s ease-out 0.5s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Subtitle */
.um-hero-fullscreen-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 24px;
  animation: umSlideUp 0.8s ease-out 0.7s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

/* CTA Button */
.um-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #CAB063;
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: umSlideUp 0.8s ease-out 0.9s both;
  box-shadow: 0 4px 20px rgba(232, 184, 75, 0.3);
}

.um-hero-cta:hover {
  background: #B69E59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 184, 75, 0.4);
}

.um-hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.um-hero-cta:hover svg {
  transform: translateX(4px);
}

/* Gold Accent Line */
.um-hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #CAB063, transparent);
  z-index: 3;
}

@keyframes umSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */

/* Mobile (unter 768px) - mit höherer Priorität */
@media (max-width: 767px) {
  .um-compact-header .um-header-inner {
    padding: 12px 16px !important;
  }

  .um-logo-image {
    height: 40px !important;
  }
  picture.um-logo-image {
    height: auto !important;
  }
  picture.um-logo-image img {
    height: 40px !important;
  }

  .um-logo-container .um-logo-mark {
    width: 36px !important;
    height: 36px !important;
  }

  .um-logo-mark .um-logo-letter {
    font-size: 20px !important;
  }

  .um-logo-text .um-logo-name {
    font-size: 13px !important;
  }

  .um-logo-text .um-logo-tagline {
    font-size: 8px !important;
    letter-spacing: 2px !important;
  }

  .um-header-inner .um-menu-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .um-menu-btn span {
    width: 20px !important;
  }

  .um-menu-btn span:nth-child(2) {
    width: 14px !important;
  }

  .um-hero-fullscreen {
    max-height: 600px !important;
    min-height: 500px !important;
  }

  .um-hero-fullscreen .um-hero-fullscreen-content {
    padding: 24px 20px 40px !important;
  }

  .um-hero-fullscreen .um-hero-badge {
    font-size: 9px !important;
    padding: 5px 12px !important;
  }

  .um-hero-fullscreen .um-hero-fullscreen-title {
    font-size: 2.2rem !important;
  }

  .um-hero-fullscreen .um-hero-cta {
    padding: 12px 24px !important;
    font-size: 12px !important;
  }
}

/* Tablet und größer */
@media (min-width: 768px) {
  .um-hero-fullscreen-content {
    padding: 40px 40px 70px;
  }

  .um-logo-name {
    font-size: 16px;
  }

  .um-logo-tagline {
    font-size: 10px;
  }

  .um-hero-fullscreen {
    min-height: 700px;
  }

  .um-header-inner {
    padding: 14px 40px 12px;
  }
}

@media (min-width: 1200px) {
  .um-hero-fullscreen-content {
    padding: 60px 80px 100px;
  }

  .um-header-inner {
    padding: 14px 80px 12px;
  }

  .um-menu-btn {
    display: none;
  }
}
