/* Glossar-Link mit dezentem, aber klar sichtbarem Icon */
.glossar-link::after {
  content: " ⓘ";
  color: #413976; /* kräftigeres Gold, gute Lesbarkeit auf hell & dunkel */
  font-size: 1em;
  margin-left: 2px;
  vertical-align: baseline;
}

/* optional: sanfter Farbwechsel beim Überfahren */
.glossar-link:hover::after {
  color: #ffcc33; /* etwas heller beim Hover */
  transition: color 0.2s ease-in-out;
}

/* optional: Link selbst beim Hover leicht hervorheben */
.glossar-link:hover {
  text-decoration: underline;
  color: #d4a017;
  transition: color 0.2s ease-in-out;
}

/* GOOGLE MAPS */

.map-wrapper {
  margin: 2rem 0;
}

.map-placeholder {
  border: 1px solid #ddd;
  padding: 1rem;
  font-size: 1rem;
  background-color: #f7f7f7;
  text-align: center;
}

.map-placeholder p {
  margin-bottom: 0.5rem;
}

.map-placeholder button {
  padding: 0.8rem 1.3rem;
  border: none;
  background-color: #F3D489; /* kräftiges Gold passend zum Design */
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 6px;
  color: black;
  margin: 1rem
  
}

.map-placeholder button:hover {
  opacity: 0.9;
}

.map-alt-link {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

.map-iframe-wrapper iframe {
  border: 0;
  display: block;
}

/* PARTNER */
.partner-links p {
  margin: 0.3rem 0;
  line-height: 1.5;
}

.partner-links a {
  color: #641743;
  text-decoration: none;
  transition: color 0.3s ease;
}

.partner-links a:hover {
  color: #b88e13; /* etwas dunkleres Gold beim Hover */
  text-decoration: underline;
}

.page-background {
  min-height: calc(100vh - var(--footer-height, 160px)) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-small {
  width: 60px;
  height: 2px;
  background-color: #d4a017; /* Goldton */
  margin: 24px auto;
}
.tabs-title {
    position: relative;
    padding-top: 45px; /* vorher 60px – jetzt kleinerer Abstand */
    display: block;
    text-align: center;
}

/* Icon oberhalb, näher zum Text */
.tabs-title::before {
    content: "";
    position: absolute;
    top: 10px; /* vorher 0 – Icon wird nach unten geschoben */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-image: url('/images/icons/lotus02.png');
    background-size: contain;
    background-repeat: no-repeat;
}
ul.nav.nav-tabs li a {
  padding:	5px 15px;
}
div.tab-content {
  padding-top: 30px !important;
}
/*
.divider-welle-start {
  width: 100%;
  text-align: center;
  margin: 15px 0 -15px 0;
}

.divider-welle-start::before {
  content: "";
  display: inline-block;
  background-image: url('/images/welle/welle-start.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 50px;
  opacity: 0.9;
}
*/
/* DIVIDER WELLEN */

.divider-welle-start {
  --divider-image: url('/images/welle/welle-start.png');
}
.divider-welle-schmerz {
  --divider-image: url('/images/welle/welle-schmerz.png');
}
.divider-welle-hypnose {
  --divider-image: url('/images/welle/welle-hypnose.png');
}
.divider-welle-paar {
  --divider-image: url('/images/welle/welle-paar.png');
}
.divider-welle-biographie {
  --divider-image: url('/images/welle/welle-biographie.png');
}

/* usw... */

.divider-welle {
  width: 100%;
  text-align: center;
  margin: 15px 0 -15px 0;
}

.divider-welle::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 50px;
  opacity: 0.9;
  background-image: var(--divider-image);
}


ul li {
    margin-bottom: 0.6em;   /* Abstand nach unten vergrößern */
}