/*
Theme Name: urlichtquell
Theme URI: https://www.kandlen-it.de/urlichtquell
Description: Spezielles WordPress-Child-Theme für Omjaah® – Heilkunst, basierend auf dem Twenty Twenty-Five Theme.
Author: Jakob Kandlen
Author URI: https://www.kandlen-it.de
Template: twentytwentyfive
Version: 1.0.0
License: GNU General Public License v2 oder neuer
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urlichtquell
*/
@font-face {
  font-family: 'CalibanStd';
  src: url('./fonts/CalibanStd/CalibanStd.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* = Basics
---------------------------------------------- */
:root {
  --color-primary: #7f3468;
  --color-secondary: #3E356A;
  --color-text: #000000;
  --color-text-light: #ffffff;
    --color-gruen: #68a518;

  --font-headings: "Chivo", sans-serif;
  --font-headings: "Literata", sans-serif;
  --font-omjaah: "CalibanStd", sans-serif;
  --font-body: "Manrope", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('assets/images/background-mandala.jpg') center/cover no-repeat;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);  /* z. B. "Chivo", sans-serif */
  font-weight: 400;                   /* ruhiger Look */
  color: var(--color-text);           /* Standardfarbe */
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

/* Skalierung bei Basis: 1rem = 16px */
h1 { font-size: 1.75rem; }  /* 28px */
h2 { font-size: 1.5rem; }   /* 24px */
h3 { font-size: 1.25rem; }  /* 20px */
h4 { font-size: 1.125rem; } /* 18px */
h5 { font-size: 1rem; }     /* 16px */
h6 { font-size: 0.875rem; } /* 14px */

span.omjaah-heilkunst,
strong.omjaah-heilkunst {
font-family: var(--font-omjaah);
}
header#site-header strong.omjaah-heilkunst{
    font-size: 40px;
    padding: 0 10px;
    color: var(--color-primary);
    
}
a {
  text-decoration: none;
  color: inherit;
}
strong.omjaah-heilkunst.in-text {
    font-weight: bold;
    color: var(--color-primary);
    font-size: 24px;
}
a:hover,
a:focus {
  text-decoration: underline;
}
/* Top-Bar */
#top-bar {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

main#main-content h1.page-title {
    text-align: center;
    font-size: 2rem;
}

#top-bar a {
  color: var(--color-text-light);
  text-decoration: none;
  margin-left: 1rem;
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding:  0rem;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
.gymaa-mandala,
strong.omjaah-heilkunst {
    font-family: var(--font-omjaah);
    font-size: 26px;
    padding: 0 5px;
    line-height: 1;
}
#site-header.scrolled {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.ctbx-cta-wrapper {
  text-align: center;
  margin: 2rem 0 0 0;
}
.ctbx-cta-button {
  clear: left;
}
/* === CTA Button Gestaltung === */
.ctbx-cta-button .button {
  font-size: 1rem;              /* Gut lesbare Schriftgröße für Desktop */
  padding: 0.75em 1.5em;        /* Vertikaler und horizontaler Innenabstand */
  border-radius: 0.5em;         /* Sanfte, harmonische Rundung der Ecken */
  background-color: var(--color-primary); /* Primärfarbe über CSS-Variable */
  color: #fff;                  /* Weißer Text für guten Kontrast */
  text-align: center;           /* Text zentriert im Button */
  text-decoration: none;        /* Kein Unterstreichen des Textes */
  display: inline-block;        /* Ermöglicht Größenkontrolle und Ausrichtung */
  transition: background-color 0.3s ease; /* Sanfter Hover-Übergang */
}
/* Stil für Kundenstimmen-Abschnitt */
#erfahrungsbericht blockquote {
  background-color: #f9f9f9;
  border-left: 4px solid var(--color-primary);
  margin: 1.5em 0;
  padding: 1em 1.5em;
  font-style: italic;
  position: relative;
  color: #333;
  border-radius: 0.5em;
}

#erfahrungsbericht blockquote p {
  margin: 0;
}

#erfahrungsbericht cite {
  display: block;
  margin-top: 0.75em;
  font-style: normal;
  font-weight: bold;
  color: var(--color-primary);
  text-align: right;
}
#urlichtquell-menue a:hover {
        text-decoration: none;
}
/* === Hover-Zustand === */
.ctbx-cta-button .button:hover {
  background-color: #558914;    /* Etwas dunkleres Grün für visuelles Feedback */
}

/* === Fokus-Zustand (für Tastatur-Nutzer & a11y) === */
.ctbx-cta-button .button:focus {
  outline: 2px dashed #fff;     /* Sichtbarer Fokusrahmen für Barrierefreiheit */
  outline-offset: 4px;          /* Abstand zwischen Button und Fokusrahmen */
}

/* === Mobile Optimierung (optional) === */
@media (max-width: 600px) {
  .ctbx-cta-button .button {
    display: block;             /* Button wird in mobiler Ansicht blockartig */
    width: 100%;                /* Volle Breite für mobile Benutzerfreundlichkeit */
    box-sizing: border-box;     /* Padding wird bei Breite berücksichtigt */
  }
}


@media (max-width: 768px) {
  .ctbx-cta-button .button {
    font-size: 0.9rem;
    padding: 0.6em 1.2em;
  }
}

@media (max-width: 480px) {
  .ctbx-cta-button .button {
    font-size: 0.85rem;
    padding: 0.5em 1em;
    width: 100%;
  }
  
  section#bottom-info span.kontaktzeile, #top-bar span.kontaktzeile {
    display: block;
}
  
}

main#main-content,
main#page-content {
    padding: 0 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}
main#page-content .container {
    
}
main#main-content h1.page-title ,
main#page-content h1.page-title {
     padding:2rem 1rem 0 1rem;
    
}
#urlichtquell-menue {
  align-items: center;
  padding: 0;
}

#logo-omjaah-heilkunst {
    max-height: 40px;
    padding-top: 10px;
}

main#main-content .container,
main#page-content .container{
  background-color: rgba(255, 255, 255, 0.75); /* Weiß mit 80 % Deckkraft */
  padding-bottom: 2rem;
}


#urlichtquell-claim {
  font-family: var(--font-headings);
  font-size: 1.6rem; /* größer als vorher */
  color: var(--color-text-dark);
  white-space: nowrap;
}

section#bottom-info span.kontaktzeile  ,
#top-bar span.kontaktzeile  {
    padding-right: 20px;
}
section#bottom-info span.kontaktzeile  {
    display: block;
}
section#bottom-info span.kontaktzeile i {
    padding-right: 10px;
}
#urlichtquell-claim {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-left: 1rem;
}

ul.list-footer {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.list-footer li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
ul.list-footer a {
  text-decoration: none;
  color: var(--color-text-light); /* optional, falls nötig */
}

ul.list-footer a:hover {
  text-decoration: underline; /* optionaler Hovereffekt */
}
div#sticky-header {
    box-shadow: 0 2px 6px rgba(127, 52, 104, 1);
}
footer p,
footer a {
  font-size: 0.9rem;
}
/* Text-Zentrierung */
.text-center {
  text-align: center;
}
section#bottom-info {
      background-color: var(--color-primary);
        color: var(--color-text-light);
        color: var(--color-text-light);
    
}
footer#footer {
      background-color: var(--color-primary);

        color: var(--color-text-light);
}
footer#footer {

}
footer#footer .container{
border-top: 2px solid rgba(255, 255, 255, 0.4);
}
footer#footer a {
  color: inherit;
        color: var(--color-text-light);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
.bottom-info {
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-size: 16px;
}
.bottom-info h3 {
    text-transform: uppercase;
  font-family: var(--font-headings);    /* z. B. "Literata" oder "Source Serif 4" */
  margin-bottom: 0.5rem;
  color: var(--color-text-light);   /* optional, falls z. B. #fff */
  padding-bottom:  1.5rem;
 
}
.impressum-section {

}

.impressum-section .section-title {

}

.impressum-section h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.impressum-section address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.impressum-section a {
  color: var(--color-primary);
  text-decoration: underline;
}

.impressum-section a:hover {
  text-decoration: none;
}
/* Hauptbereich auf mindestens 80 % der Bildschirmhöhe zentriert */
main.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85); /* leichter weißer Overlay */
}


/* Container begrenzen, falls nötig */
.error-404 .container {
  max-width: 720px;
  margin: 0 auto;
}

/* Überschrift gestylt nach Headings-Font */
.error-404 .error-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

/* Absatztext lesbar und dezent */
.error-404 .error-message {
  font-family: var(--font-body);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

/* Link als Button gestalten */
.error-404 .error-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 0.3rem;
  transition: background-color 0.3s ease;
}

/* Hover-Zustand dunkler */
.error-404 .error-link:hover {
  background-color: #5f2c50;
}
.bild-rechts-text-links {
    float: right;
    margin: 0 0 1rem 1rem;
    max-width: 50%;
}
.ctbx-block {
    padding-bottom: 30px;
}
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

h2,
#petra-gillymaa-huebscher h2,
#was-ist-omjaah h2,
#omjaah-einstieg h2{
    text-align: center;
    color: var(--color-primary);
    clear: left;
}
.omjaah-heilkunst.in-h3 {
  font-size: 30px;
}
h3
{
    text-align: left;
    color: var(--color-gruen);
}
strong.omjaah-heilkunst.in-h2 {
    font-size: 35px;
}
div#omjaah-einstieg h2 {
    
}
div#omjaah-einstieg {
}
main#main-content > .container, main#page-content > .container {
    padding-left: 30px;
    padding-right: 30px;
}


.bild-links-text-rechts {
    float: left;
    margin: 0 1rem 1rem 0;
    max-width: 50%;
    height: auto;
}

@media (max-width: 768px) {
    .bild-allein-mobil {
        float: none !important;
        display: block;
        margin: 1rem auto;
        max-width: 100% !important;
    }
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Ab Mobilgröße: Bild alleinstehend */
@media (max-width: 768px) {
    .bild-allein-mobil {
        float: none !important;
        display: block;
        margin: 1rem auto;
        max-width: 100% !important;
    }
}

/* Ab Tabletgröße: Bild alleinstehend */
@media (max-width: 1024px) {
    .bild-table-allein {
        float: none !important;
        display: block;
        margin: 1rem auto;
        max-width: 100% !important;
    }
       main#main-content > .container, main#page-content > .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* Responsive */
@media (max-width: 768px) {
  #site-header {
    flex-direction: column;
    text-align: center;
  }
     main#main-content > .container, main#page-content >.container {
        padding-left: 10px;
        padding-right: 10px;
    }

  #top-bar {
    text-align: center;
  }

  #top-bar a {
    margin: 0 0.5rem;
  }

  #urlichtquell-claim {
    margin-top: 1rem;
  }
}
strong.omjaah-heilkunst.in-text {
    font-weight: normal;
    color: var(--color-primary);
font-size: 28px;
}

#totop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: none; /* erst durch JS sichtbar */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

#totop:hover {
  background-color: #5f2c50; /* dunklerer Farbton bei Hover */
}
