/*!
 * Theme Name: BFI Design
 * Author: Xavira Bacher 
 */

:root {
    --white: #ffffff; 
    --grey-dark: #555;

    --text: #000;
    --text-light:  #383838;

    --primary: #ffe0cc;
    --secondary:#ffe0cc;

    --navigation-width: 350px;
    --navigation-background: #ffd8c2;
    --white: #ffffff; 
    --grey-dark: #555;

    --text: #000;
    --text-light:  #383838;

    --primary: #ffe0cc;
    --secondary:#ffe0cc;

    --navigation-width: 350px;
    --navigation-background: rgba(255, 216, 194, 0.909);
    --navigation-backdrop: rgba(0, 0, 0, 0.5);

    --header-padding: 30px;
    --header-bottom: 40vh;
    --logo-width: 190px;
    
    --black: #000000;
    --grey-light: #eee;
    --grey-mediu:var(--grey-dark)
}

/* Startseiten-Header höher machen */
body.home {
    --header-bottom: 70px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*-----------------------------------
 *---------- Typographie -----------*
 *----------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3,
h4, h5, h6 {
    font-family: "Asap", sans-serif;
}


/*-----------------------------------
 *------------ Layout --------------*
 *----------------------------------*/

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

#page {
    display: flex;
    flex-flow: column nowrap;
    min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

#content {
    flex: 1;
    z-index: 1;
}

.site-header {
    /* background: var(--secondary); Deaktiviert wegen gradient */
    position: relative;
    z-index: 2;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--header-padding);
}

.custom-logo {
    max-width: var(--logo-width);
    height: auto;
}

.search-toggle {
    position: absolute;
    top: var(--header-padding);
    right: 95px;
    width: 38px;
    height: 35px;
    padding-top: 6px;
    cursor: pointer;
}

.search-toggle svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.menu-toggle {
    position: absolute;
    top: var(--header-padding);
    /* left: var(--header-padding); V1: links gleich wie oben */
    /* left: 30px; V2: links fixer abstand */
    /* right: var(--header-padding); V3: rechts gleich wie oben */
    right: 30px; /* V4: rechts fixer abstand */

    cursor: pointer;
    display: inline-block;
}

.menu-toggle div {
    width: 35px;
    height: 5px;
    background: var(--white);
    margin: 6px 0;
}

body.nav-open .menu-toggle div:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}

body.nav-open .menu-toggle div:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle div:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
}

.header-media {
    width: 100%;
    height: calc(100vh - var(--wp-admin--admin-bar--height) - var(--header-bottom));
}

.header-media-image {
    width: 100%;
    height: 100%;
}

.header-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0));
}

.header-media-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.5rem;
    text-shadow: #4a4a4a;
}

/* V1: Überschrift links unten
.header-media-content {
    position: absolute;
    left: var(--header-padding);
    bottom: var(--header-padding);
}
*/

/* V2: Überschrift rechts unten mit mehr Abstand
.header-media-content {
    position: absolute;
    right: calc(4 * var(--header-padding));
    bottom: calc(4 * var(--header-padding));
}
*/

/* V3: Überschrift zentriert */
.header-media-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.site-footer {
    background: var(--secondary);
    color: var(--text-light);
    padding-top: 30px;
}

.site-footer-columns {
    display: flex;
    justify-content: space-around;
}

.site-footer-navigation ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.site-footer-navigation a {
    padding: 0 10px;
    color: var(--white);
}



.bfi-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.bfi-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.bfi-social-links svg {
    width: 100%;
    height: 100%;
}


/*-----------------------------------
 *---------- Navigation ------------*
 *----------------------------------*/

.site-navigation ul {
    list-style-type: none;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: bold;
}

.menu-close {
    display: flex;
    justify-content: flex-end;
}

.menu-close-button {
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 0 15px;

    transition: 0.2s ease-out;
}

.menu-close-button:hover {
    color: var(--grey-medium);
}

/* Für Trenner aktivieren: */
.site-navigation ul.menu > li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.site-navigation ul a,
.site-navigation ul a:visited {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 16px 0;

    transition: 0.2s ease-out;
}

.site-navigation ul a:hover {
    padding-left: 30px;
}

.backdrop,
.search-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-close {
    position: absolute;
    top: var(--header-padding);
    right: var(--header-padding);
    line-height: 1;
    font-size: 45px;
    color: var(--white);
    cursor: pointer;
}

.search-backdrop form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-backdrop label {
    display: none;
}

.search-backdrop .search-input {
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 2rem;
    min-width: 50vw;

    border: none;
    outline: none;
}

.search-backdrop .search-submit {
    display: none;
}

.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    overflow-y: auto;

    margin: 0;
    margin-top: var(--wp-admin--admin-bar--height);
    padding: 16px 35px;
    width: var(--navigation-width);
    max-width: 100vw;

    background: var(--navigation-background);
    backdrop-filter: blur(15px);

    transform: translateX(0);
    visibility: visible;
    transition: 0.5s;
}

body:not(.nav-open) .menu-container {
    transform: translateX(-101%);
    visibility: hidden;
}

body:not(.nav-open) .backdrop,
body:not(.search-open) .search-backdrop {
    display: none;
}


/*----------------------------
 *--------- Content ---------*
 *---------------------------*/

#content {
    padding: 20px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    #content {
        padding: 40px 0;
        width: 650px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    #content {
        width: 900px;
    }
}

@media screen and (min-width: 1400px) {
    #content {
        width: 1300px;
    }
}

.post-header h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

/*----------------
  --- Diverses ---
  ---------------*/
.top-button {
    position: fixed;
    right: var(--header-padding);
    bottom: var(--header-padding);
    background: rgba(131, 49, 49, 0.5); /* Variante 1: Farbe hier wählen */
    background: var(--navigation-backdrop); /* Variante 2: Gleich wie Navigation */
    border-radius: 50%;
    z-index: 9;

    width: 50px;
    height: 50px;
    padding: 10px;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-out;
}

body.top-btn-visible .top-button {
    opacity: 1;
    visibility: visible;
}

.top-button svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}
.fixed-button {
    display: inline-block;
    position: fixed;
    bottom: 150px;
    right: 0;
    background:#ff9472;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 999;
    }
    
    .fixed-button a {
      display: block;
    padding: 11px 15px 10px 15px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    text-decoration: none;
    /* font-weight: bold; */
    }



.abgerundet {
    border-radius: 30px;
    overflow: hidden;
}

	

.zitat-text {
    margin: 3rem auto; /* oben und unten größer */
    max-width: 700px;  /* für Zeilenbreite */
    color: #4a4a4a; /* ein dezenteres Grau statt #333 */
    font-style: italic;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    text-align: center;
}


.logo img {
    opacity: 0.85 !important;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}


.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 240, 235, 0.4); /* zartes Rosé */
  pointer-events: none;
}

  


/* Startseiten-Header höher machen */
body.home {
    --header-bottom: 70px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*-----------------------------------
 *---------- Typographie -----------*
 *----------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3,
h4, h5, h6 {
    font-family: "Asap", sans-serif;
}


/*-----------------------------------
 *------------ Layout --------------*
 *----------------------------------*/

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

#page {
    display: flex;
    flex-flow: column nowrap;
    min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

#content {
    flex: 1;
    z-index: 1;
}

.site-header {
    /* background: var(--secondary); Deaktiviert wegen gradient */
    position: relative;
    z-index: 2;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--header-padding);
}

.custom-logo {
    max-width: var(--logo-width);
    height: auto;
}

.search-toggle {
    position: absolute;
    top: var(--header-padding);
    right: 95px;
    width: 38px;
    height: 35px;
    padding-top: 6px;
    cursor: pointer;
}

.search-toggle svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.menu-toggle {
    position: absolute;
    top: var(--header-padding);
    /* left: var(--header-padding); V1: links gleich wie oben */
    /* left: 30px; V2: links fixer abstand */
    /* right: var(--header-padding); V3: rechts gleich wie oben */
    right: 30px; /* V4: rechts fixer abstand */

    cursor: pointer;
    display: inline-block;
}

.menu-toggle div {
    width: 35px;
    height: 5px;
    background: var(--white);
    margin: 6px 0;
}

body.nav-open .menu-toggle div:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}

body.nav-open .menu-toggle div:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle div:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
}

.header-media {
    width: 100%;
    height: calc(100vh - var(--wp-admin--admin-bar--height) - var(--header-bottom));
}

.header-media-image {
    width: 100%;
    height: 100%;
}

.header-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0));
}

.header-media-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.5rem;
    text-shadow: #4a4a4a;
}

/* V1: Überschrift links unten
.header-media-content {
    position: absolute;
    left: var(--header-padding);
    bottom: var(--header-padding);
}
*/

/* V2: Überschrift rechts unten mit mehr Abstand
.header-media-content {
    position: absolute;
    right: calc(4 * var(--header-padding));
    bottom: calc(4 * var(--header-padding));
}
*/

/* V3: Überschrift zentriert */
.header-media-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.site-footer {
    background: var(--secondary);
    color: var(--text-light);
    padding-top: 30px;
}

.site-footer-columns {
    display: flex;
    justify-content: space-around;
}

.site-footer-navigation ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.site-footer-navigation a {
    padding: 0 10px;
    color: var(--white);
}



.bfi-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.bfi-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.bfi-social-links svg {
    width: 100%;
    height: 100%;
}


/*-----------------------------------
 *---------- Navigation ------------*
 *----------------------------------*/

.site-navigation ul {
    list-style-type: none;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: bold;
}

.menu-close {
    display: flex;
    justify-content: flex-end;
}

.menu-close-button {
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 0 15px;

    transition: 0.2s ease-out;
}

.menu-close-button:hover {
    color: var(--grey-medium);
}

/* Für Trenner aktivieren: */
.site-navigation ul.menu > li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.site-navigation ul a,
.site-navigation ul a:visited {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 16px 0;

    transition: 0.2s ease-out;
}

.site-navigation ul a:hover {
    padding-left: 30px;
}

.backdrop,
.search-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-close {
    position: absolute;
    top: var(--header-padding);
    right: var(--header-padding);
    line-height: 1;
    font-size: 45px;
    color: var(--white);
    cursor: pointer;
}

.search-backdrop form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-backdrop label {
    display: none;
}

.search-backdrop .search-input {
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 2rem;
    min-width: 50vw;

    border: none;
    outline: none;
}

.search-backdrop .search-submit {
    display: none;
}

.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    overflow-y: auto;

    margin: 0;
    margin-top: var(--wp-admin--admin-bar--height);
    padding: 16px 35px;
    width: var(--navigation-width);
    max-width: 100vw;

    background: var(--navigation-background);
    backdrop-filter: blur(15px);

    transform: translateX(0);
    visibility: visible;
    transition: 0.5s;
}

body:not(.nav-open) .menu-container {
    transform: translateX(-101%);
    visibility: hidden;
}

body:not(.nav-open) .backdrop,
body:not(.search-open) .search-backdrop {
    display: none;
}


/*----------------------------
 *--------- Content ---------*
 *---------------------------*/

#content {
    padding: 20px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    #content {
        padding: 40px 0;
        width: 650px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    #content {
        width: 900px;
    }
}

@media screen and (min-width: 1400px) {
    #content {
        width: 1300px;
    }
}

.post-header h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

/*----------------
  --- Diverses ---
  ---------------*/
.top-button {
    position: fixed;
    right: var(--header-padding);
    bottom: var(--header-padding);
    background: rgba(131, 49, 49, 0.5); /* Variante 1: Farbe hier wählen */
    background: var(--navigation-backdrop); /* Variante 2: Gleich wie Navigation */
    border-radius: 50%;
    z-index: 9;

    width: 50px;
    height: 50px;
    padding: 10px;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-out;
}

body.top-btn-visible .top-button {
    opacity: 1;
    visibility: visible;
}

.top-button svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}
.fixed-button {
    display: inline-block;
    position: fixed;
    bottom: 150px;
    right: 0;
    background:#ff9472;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 999;
    }
    
    .fixed-button a {
      display: block;
    padding: 11px 15px 10px 15px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    text-decoration: none;
    /* font-weight: bold; */
    }



.abgerundet {
    border-radius: 30px;
    overflow: hidden;
}

	

.zitat-text {
    margin: 3rem auto; /* oben und unten größer */
    max-width: 700px;  /* für Zeilenbreite */
    color: #4a4a4a; /* ein dezenteres Grau statt #333 */
    font-style: italic;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    text-align: center;
}


.logo img {
    opacity: 0.85 !important;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}


.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 240, 235, 0.4); /* zartes Rosé */
  pointer-events: none;
}


/* Startseiten-Header höher machen */
body.home {
    --header-bottom: 70px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

/*-----------------------------------
 *---------- Typographie -----------*
 *----------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3,
h4, h5, h6 {
    font-family: "Asap", sans-serif;
}


/*-----------------------------------
 *------------ Layout --------------*
 *----------------------------------*/

html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

#page {
    display: flex;
    flex-flow: column nowrap;
    min-height: calc(100vh - var(--wp-admin--admin-bar--height));
}

#content {
    flex: 1;
    z-index: 1;
}

.site-header {
    /* background: var(--secondary); Deaktiviert wegen gradient */
    position: relative;
    z-index: 2;
}

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--header-padding);
}

.custom-logo {
    max-width: var(--logo-width);
    height: auto;
}

.search-toggle {
    position: absolute;
    top: var(--header-padding);
    right: 95px;
    width: 38px;
    height: 35px;
    padding-top: 6px;
    cursor: pointer;
}

.search-toggle svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}

.menu-toggle {
    position: absolute;
    top: var(--header-padding);
    /* left: var(--header-padding); V1: links gleich wie oben */
    /* left: 30px; V2: links fixer abstand */
    /* right: var(--header-padding); V3: rechts gleich wie oben */
    right: 30px; /* V4: rechts fixer abstand */

    cursor: pointer;
    display: inline-block;
}

.menu-toggle div {
    width: 35px;
    height: 5px;
    background: var(--white);
    margin: 6px 0;
}

body.nav-open .menu-toggle div:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}

body.nav-open .menu-toggle div:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle div:nth-child(3) {
    transform: translateY(-11px) rotate(45deg);
}

.header-media {
    width: 100%;
    height: calc(100vh - var(--wp-admin--admin-bar--height) - var(--header-bottom));
}

.header-media-image {
    width: 100%;
    height: 100%;
}

.header-media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0));
}

.header-media-content h1 {
    margin: 0;
    color: var(--white);
    font-size: 3.5rem;
    text-shadow: #4a4a4a;
}

/* V1: Überschrift links unten
.header-media-content {
    position: absolute;
    left: var(--header-padding);
    bottom: var(--header-padding);
}
*/

/* V2: Überschrift rechts unten mit mehr Abstand
.header-media-content {
    position: absolute;
    right: calc(4 * var(--header-padding));
    bottom: calc(4 * var(--header-padding));
}
*/

/* V3: Überschrift zentriert */
.header-media-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.site-footer {
    background: var(--secondary);
    color: var(--text-light);
    padding-top: 30px;
}

.site-footer-columns {
    display: flex;
    justify-content: space-around;
}

.site-footer-navigation ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.site-footer-navigation a {
    padding: 0 10px;
    color: var(--white);
}



.bfi-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.bfi-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.bfi-social-links svg {
    width: 100%;
    height: 100%;
}


/*-----------------------------------
 *---------- Navigation ------------*
 *----------------------------------*/

.site-navigation ul {
    list-style-type: none;
    font-size: 1.4rem;
    line-height: 2;
    font-weight: bold;
}

.menu-close {
    display: flex;
    justify-content: flex-end;
}

.menu-close-button {
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 0 15px;

    transition: 0.2s ease-out;
}

.menu-close-button:hover {
    color: var(--grey-medium);
}

/* Für Trenner aktivieren: */
.site-navigation ul.menu > li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.site-navigation ul a,
.site-navigation ul a:visited {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 16px 0;

    transition: 0.2s ease-out;
}

.site-navigation ul a:hover {
    padding-left: 30px;
}

.backdrop,
.search-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-backdrop {
    background: var(--navigation-backdrop);
    backdrop-filter: blur(5px);

    transition: 0.5s;
}

.search-close {
    position: absolute;
    top: var(--header-padding);
    right: var(--header-padding);
    line-height: 1;
    font-size: 45px;
    color: var(--white);
    cursor: pointer;
}

.search-backdrop form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.search-backdrop label {
    display: none;
}

.search-backdrop .search-input {
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 2rem;
    min-width: 50vw;

    border: none;
    outline: none;
}

.search-backdrop .search-submit {
    display: none;
}

.menu-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;

    overflow-y: auto;

    margin: 0;
    margin-top: var(--wp-admin--admin-bar--height);
    padding: 16px 35px;
    width: var(--navigation-width);
    max-width: 100vw;

    background: var(--navigation-background);
    backdrop-filter: blur(15px);

    transform: translateX(0);
    visibility: visible;
    transition: 0.5s;
}

body:not(.nav-open) .menu-container {
    transform: translateX(-101%);
    visibility: hidden;
}

body:not(.nav-open) .backdrop,
body:not(.search-open) .search-backdrop {
    display: none;
}


/*----------------------------
 *--------- Content ---------*
 *---------------------------*/

#content {
    padding: 20px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    #content {
        padding: 40px 0;
        width: 650px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1024px) {
    #content {
        width: 900px;
    }
}

@media screen and (min-width: 1400px) {
    #content {
        width: 1300px;
    }
}

.post-header h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

/*----------------
  --- Diverses ---
  ---------------*/
.top-button {
    position: fixed;
    right: var(--header-padding);
    bottom: var(--header-padding);
    background: rgba(131, 49, 49, 0.5); /* Variante 1: Farbe hier wählen */
    background: var(--navigation-backdrop); /* Variante 2: Gleich wie Navigation */
    border-radius: 50%;
    z-index: 9;

    width: 50px;
    height: 50px;
    padding: 10px;

    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-out;
}

body.top-btn-visible .top-button {
    opacity: 1;
    visibility: visible;
}

.top-button svg {
    width: 100%;
    height: 100%;
    fill: var(--white);
}
.fixed-button {
    display: inline-block;
    position: fixed;
    bottom: 150px;
    right: 0;
    background:#ff9472;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    overflow: hidden;
    z-index: 999;
    }
    
    .fixed-button a {
      display: block;
    padding: 11px 15px 10px 15px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 17px;
    text-decoration: none;
    /* font-weight: bold; */
    }



.abgerundet {
    border-radius: 30px;
    overflow: hidden;
}

	

.zitat-text {
    margin: 3rem auto; /* oben und unten größer */
    max-width: 700px;  /* für Zeilenbreite */
    color: #4a4a4a; /* ein dezenteres Grau statt #333 */
    font-style: italic;
    line-height: 1.6;
    font-family: 'Playfair Display', serif;
    text-align: center;
}


.logo img {
    opacity: 0.85 !important;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}


.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 240, 235, 0.4); /* zartes Rosé */
  pointer-events: none;
}
