@font-face {
    font-family: "poppins200";
    src: url(../res/other/fonts/Poppins-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "poppins400";
    src: url(../res/other/fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "poppins500";
    src: url(../res/other/fonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
} 

@font-face {
    font-family: "priestacyRegular";
    src: url(../res/other/fonts/Priestacy.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    --darkerColor: #A59D84;
    --darkColor: #C1BAA1;
    --lightColor: #D7D3BF;
    --lighterColor: #ECEBDE;
    --fontColorMain: #534f43;
}


html {
    font-size: 18px;
    font-family: 'poppins200', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--fontColorMain);
    position: relative;
    overflow-x: hidden;
}

footer {
    position: relative;
}

.content {
    position: relative;
}

.grid-container {
    display: grid;
}


.navbar {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(80px, auto) 1fr minmax(60px, auto);
    grid-template-rows: minmax(150px, 76px) auto auto;
    background-color: transparent;
    position: fixed;
    z-index: 2;
}

.navbar.white-bg {
    background-color: rgb(255, 255, 255, 0.85);
}

.bar.white-bg {
    background-color: var(--fontColorMain);
}

.navbar .nav-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
    justify-items: center;
    align-items: start;
    height: 0px;
    opacity: 0;
    /* Anfangs unsichtbar */
    visibility: hidden;
    /* Anfangs unsichtbar */
    transition: background-color 500ms, opacity 500ms ease-in-out;
}

.navbar .nav-menu.active {
    opacity: 1;
    visibility: visible;
    background-color: rgb(0, 0, 0, 0.4);
    height: auto;
}

.navbar .navHome {
    display: grid;
    align-content: center;
}

.navbar .navHome {
    grid-row: 1 / 2;
    grid-column: 1 /2;
    min-height: 58px;
    padding-left: 20px;
}

.navbar .nav-menu {
    grid-row: 2 / 4;
    grid-column: 1 / 4;
}

.navbar .hamburger {
    grid-row: 1 /2;
    grid-column: 3 / 4;
    padding-right: 15px
}


.hamburger {
    display: grid;
    align-content: center;
    cursor: pointer;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 2.5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--fontColorMain);
}


.navbar .nav-menu li {
    text-align: center;
    list-style: none;
}

.navbar .nav-menu a {
    color: #fff;
    padding: 0 6px;
}

.navbar .navHomeLogo img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

p {
    line-height: 1.4;
    text-align: left;
    font-weight: 200;
}

strong {
    font-family: 'poppins400';
}



li::marker {
    color: var(--darkerColor);
}

a {
    text-decoration: none;
}

h1 {
    color: var(--darkerColor);
    font-weight: 500;
    font-size: 2.5rem;
    padding-left: 2%;
}

h2 {
    color: var(--darkColor);
    font-weight: 500;
    font-size: 1.9rem;
    padding: 0;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 15px 0;
    text-align: center;
}

h3 {
    color: var(--darkerColor);
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.3;
}

h4 {
    color: var(--darkerColor);
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    text-align: left;
}

.dark,
.dark a,
.dark h3 {
    color: #fff;
}





/* ------------------------------------------------------------------  --> */
/*                       CUSTOM CSS                                    --> */
/* ------------------------------------------------------------------  --> */


/* Zum Suchen von Overflow */
/* * {
    outline: 1px solid #f00 !important;
} */

body {
    background-image: url(../res/Fotos/bg/background.jpg);
    background-repeat: repeat;
}

/* Spacing Hauptcontainer */
.mBott {
    margin-bottom: 60px;
}

.padCont {
    padding: 60px 10px;
}

.maxPadCont {
    padding: 115px 10px;
}

/* Abstand zu Elementen wie p, h2, button */
.gap-between {
    display: grid;
    gap: 20px;
    justify-items: start;
}

.justifyCenter {
    justify-items: center;
}

.alignCenter {
    align-items: center;
}


.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.taCenter {
    text-align: center;
}

.taCenter>* {
    text-align: center;
}

ul.text {
    padding-inline-start: 20px;
}

/* contactMaps */
.contactMaps {
    justify-items: stretch;
    align-items: stretch;
    max-width: 800px;
    min-height: 400px;
    margin-left: auto;
    margin-right: auto;
}

.contactMaps .info>div p {
    color: var(--fontColorMain)
}

.contactMaps .info>div p:last-child {
    font-size: 0.7em;
    color: var(--darkerColor)
}

.contactMaps .map {
    position: relative;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.contactMaps .info {
    align-content: start;
    justify-items: center;
}

.contactMaps .info>div {
    border-right: 3px solid transparent;
    transition: border-right 200ms ease-out;
    padding-right: 20px;
    cursor: pointer;
}

.contactMaps .info>div:hover {
    border-right: 3px solid rgba(235, 206, 152, 0.5);
}


/* Greeting */
.greeting {
    align-self: end;
    justify-self: start;
    margin-bottom: 80px;
}

.greeting h2 {
    font-size: 3em;
    padding: 0 0 19px 35px;
    text-align: left;
}

/* Vision */
.vision .inner {
    margin-right: auto;
    max-width: 500px;
    display: grid;
    justify-items: start;
    gap: 25px;
    text-shadow: 1px 4px 8px rgba(66, 68, 90, 1);
}

.vision {
    /* background-image: url(../res/Fotos/vision.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding-left: 6%;
}

.Background-fixed {
    background-attachment: fixed;
    background-position: center;
}

.ImageBackgroundWrap {
    position: relative;
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../res/Fotos/vision-small.jpg);
}

.ImageInnerWrap {
    max-width: 900px;
}





/* Button */
button {
    background-color: var(--darkerColor);
    border: none;
    border-radius: 6px;
    padding: 0.8em 1.2em;
    color: #fff;
}


/* Nach oben Button */
#myBtn {
    display: none;
    position: fixed;
    bottom: 55px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--darkColor);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    opacity: 0.5;
    place-content: center;
    opacity: 0.6;
    height: 40px;
    width: 40px;
    font-size: 1.3em;
}

#myBtn:hover {
    background-color: var(--darkColor);
    opacity: 1;
}


/* Zitat */
.quote .inner {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    gap: 5px;
    padding: 0 10px;
    font-size: 1.2rem;
}

.quote .inner h2 {
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    justify-self: end;
    font-size: 0.8em;
}

.quote .inner h2 span {
    position: relative;
    font-size: 3rem;
    left: unset;
    top: unset;
}

/* Beschreibung */
.wrapper.description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

#moreContent {
    background-color: transparent;
    color: #534f43;
    font-weight: 600;
    padding: 4px;
    padding-left: 0px;
    text-decoration: underline;
    cursor: pointer;
}

/* .wrapper.description p+p,
.wrapper.description p:first-child {
    margin-bottom: 10px;
} */


/* Gruppe Art der Leistung */
.group ul {
    flex-wrap: wrap;
    margin: auto;
    list-style: none;
    gap: 20px;
}


.group {
    margin-left: auto;
    margin-right: auto;
}

/* Leistungen */
.services>ul {
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

.services>ul>li {
    /*Service Card */
    list-style: none;
    text-align: center;
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    max-width: 280px;
    transition: background-color 0.4s ease-in;
}

.services>ul>li:hover {
    background-color: var(--lighterColor);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.services>ul::after {
    content: 'ⓘ Online Beratung möglich';
    position: absolute;
    top: -45px;
    opacity: 0;
    color: var(--fontColorMain);
    transition: opacity 0.4s ease-in-out;
}

.services:hover ul::after {
    opacity: 1;
}

.services>ul>li p {
    text-align: center;
}

.services .button {
    background-color: var(--darkerColor);
    border: none;
    border-radius: 19px;
    padding: 0.55em 1.75em;
    color: #fff;
    font-size: 0.68em;
}




/* First_box -  --> */

.first_box {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 85vh;
    background-image: url("../res/Fotos/official/Startbild.jpg");
    background-size: cover;
    background-position: center;
}

.first_box.start,
.first_box.ueberMich,
.first_box.impressum {
    background-position: 72%;
}

.first_box.ueberMich {
    background-image: url("../res/Fotos/official/Ueber_Mich_Unterseite.jpg");
}

.first_box.psychBeratung {
    background-image: url("../res/Fotos/official/Psychologische_Beratung_Unterseite.jpg");
}

.first_box.aufstellung {
    background-image: url("../res/Fotos/official/Aufstellung_Unterseite.jpg");
}

.first_box.babyschlafbegleitung {
    background-image: url("../res/Fotos/official/Babyschlaf_Unterseite.jpg");
}

.first_box.coaching {
    background-image: url("../res/Fotos/official/Coaching_Supervison_Unterseite.jpg");
}

.first_box.familienBeratung {
    background-image: url("../res/Fotos/official/Familienberatung_Unterseite.jpg");
}

.first_box.vortraege {
    background-image: url("../res/Fotos/official/Vorträge_Unterseite.jpg");
}

.first_box.kinesiologie {
    background-image: url("../res/Fotos/official/Birgit_Kinesiologie_Unterseite.jpg");
}



.overlay {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.overlay h1 {
    position: relative;
}

.overlay h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    height: 4px;
    width: 90%;
    background: var(--darkerColor);
    left: 5px;
}

/* intro */
.intro {
    padding: 32px 10px;
}

/* Balken für Informationen */
.wrapper>div.infoBar {
    background-color: var(--lighterColor);
    color: #000;
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.infoBar h2 {
    font-family: 'priestacyRegular';
    color: var(--fontColorMain);
    text-transform: unset;
    line-height: 1.3;
    font-size: 2.3rem;
    margin-bottom: 0;
}

.first_box .infoBar h2 {
    font-size: 2.2rem;
}

/* Balken Angebote */
.offerBar {
    overflow-x: hidden;
    padding: 55.6px 10px;
}

.offerBar ul {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    gap: 2%;
    overflow-x: hidden;
}

.offerBar li {
    list-style: none;
    font-family: 'priestacyRegular';
    font-size: 1.5rem;
}

/* Balken Kontakt */
.wrapper.contact .infoBar {
    display: block;
    padding: 20px 10px;
}

.wrapper.contact .infoBar .logo img {
    max-width: 176px;
}

.wrapper.contact .infoBar .right {
    display: grid;
    grid-template-columns: auto auto;
    gap: 50px;
    align-items: center;
}

.wrapper.contact .infoBar .right a {
    text-decoration: none;
    color: var(--fontColorMain);
    font-size: 1.3em;
}

.wrapper.contact .infoBar .right a span {
    margin-right: 20px;
}

/* .wrapper.contact .infoBar .right a:first-child span {
    font-size: 1.4em;
} */

.wrapper.contact .infoBar .right .contactText {
    display: none;
}


/* Social-Media-Links */
.socialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.socialMedia a img {
    max-height: 28px;
    width: auto;
}



/* Footer */
.footer {
    margin-top: 65px;
    font-size: 0.60em;
}


.footerContainer {
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: end;
}

.footer_item:last-child {
    justify-self: end;
    text-align: right;
}

.footer_item .socialMedia img {
    max-width: 18px;
}


.footer,
.footer a,
.footer a:hover {
    color: var(--fontColorMain);
}


.footer p {
    text-align: left;
    font-weight: 300;
}

.footer .footer_item:nth-child(2) p {
    text-align: right;
}

.contentInner {
    padding: 30px;
}

.request_cards ul {
    display: grid;
    justify-content: center;
}

.bgImg {
    display: none;
}


/* Privacy Policy -  --> */

.legal {
    display: grid;
    gap: 40px;
    text-align: left;
}

.legal h2 {
    margin-bottom: 28px;
    ;
}

.legal p,
.legal h4 {
    text-align: left;
}

/* Image-Slider */

.slider {
    display: flex;
}

.contactMaps .info {
    align-content: start;
}

/* Pikler */
.pikler.first_box {
    background-image: unset;
    display:grid;
}


.pikler.first_box > div {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pikler .bg_one {
    background-image: url('../res/Fotos/official/Pikler_1_Unterseite.jpeg');
}

.pikler .bg_two {
    background-image: url('../res/Fotos/official/Pikler_2_Unterseite.jpeg');
}

.pikler .bg_three {
    background-image: url('../res/Fotos/official/PIkler_3_Unteseite.jpeg');
}


.pikler .bg_two,
.pikler .bg_three{
    display:none;
}

/* Vorträge und Workshops  */
.wrapper.vortraege ul{
    list-style: none;
    margin-top: 70px;
}
    

.wrapper.vortraege li {
    margin-bottom: 43px;
    position: relative;
}

.wrapper.vortraege li::after {
    content: '';
    width: 30px;
    height: 39px;
    background-image: url(../res/items/list-item-curledLine.png);
    background-size: contain;
    background-position:center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -41px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.wrapper.vortraege li:last-child::after {
    content: unset;
    list-style-position: inside;
}

/* Babyschlafbegleitung */
.wrapper.babyschlafbegleitung li {
    list-style-position: inside;
    padding: 10px;
    padding-left: 0;
}


/* kinesiologie */
.kinesiologie.quote .inner h2 span {
    left: -38%;
}

.kinesiologieList ul {
    display:flex;
    justify-content: center;
    align-content: start;
    gap: 20px;
    flex-wrap: wrap;
}

.kinesiologieList li {
    max-width: 400px;
    min-width: 240px;
    max-height: 390px;
    overflow: hidden;
    list-style: none;
    position: relative;
}

.kinesiologieList li::after {
    content: "mehr";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    text-align: center;
    background: rgba(255,255,255,0.9);
    font-weight: bold;
    font-size: 0.8em;
    color: #444;
    transition: background 0.3s ease;
    pointer-events: none;
}

.kinesiologieList li.expanded::after {
    content: none; /* Pseudoelement ausblenden */
}

.kinesiologieList li:hover {
    cursor: pointer;
}

.kinesiologieList li img {
    width: 100%;
    height: 233px;
    object-fit: cover;
    border-radius: 7px;
}

/* Handling automatische Silbentrennung */
p,
h1,
h2,
h3,
h4 {
    word-break: break-word;
    hyphens: auto;
}



.content.legal{
    padding: 20px 10px;
}




/* Tablet & Desktop --> */
@media screen and (min-width: 510px) {

    .content {
        margin: 0;
    }

    /* Navbar */

    .navbar .hamburger {
        padding-right: 35px
    }

    /* Handling automatische Silbentrennung */
    p,
    h1,
    h2,
    h3,
    h4 {
        word-break: normal;
        hyphens: none;
    }

    h1 {
        font-size: 3.5rem;
    }

    .first_box .infoBar h2 {
        font-family: 'priestacyRegular';
        color: var(--fontColorMain);
        font-size: 3rem;
        text-transform: unset;
        margin-bottom: 0;
        line-height: unset;
    }


    
}















/* Desktop --> */
@media screen and (min-width: 760px) {

    .navbar {
        grid-template-columns: minmax(60px, auto) 1fr;
        grid-template-rows: minmax(150px, 76px);
    }



    .listItemColor img {
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(329deg) brightness(40%) contrast(114%);
    }

    li.nav-item {
        position: relative;
        z-index: 1;
    }

    li.nav-item a {
        transition: color 500ms;
    }

    li.nav-item:hover a {
        color: #fff !important;
    }

    li.nav-item:first-child:hover a img {
        filter: invert(1%) sepia(7%) saturate(0%) hue-rotate(323deg) brightness(117%) contrast(100%);
    }

    li.nav-item::after {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 1px;
        content: '.';
        color: transparent;
        background: var(--darkerColor) !important;
        visibility: none;
        opacity: 0;
        z-index: -1;
        transition: opacity 800ms, height 800ms;
    }

    li.nav-item:hover::after {
        opacity: 1;
        visibility: visible;
        height: 100%;
    }


    .first_box.start,
    .first_box.ueberMich {
        background-position: center;
    }



    /* Balken Kontakt */

    .wrapper.contact .infoBar {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 20px 10px;
    }

    .wrapper.contact .infoBar .right {
        display: grid;
        grid-template-columns: auto auto;
        gap: 50px;
        align-items: center;
    }

    .wrapper.contact .infoBar .right .contactText {
        display: inline-block;
        font-size: 0.9em;
    }

    /* Overlay */

    .overlay h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        height: 4px;
        width: 113%;
        background: var(--darkerColor);
        left: 50%;
        transform: translateX(-50%);
    }

    /* Zitat */

    .quote .inner h2 span {
        position: absolute;
        font-size: 10rem;
        left: -66%;
        top: -52px;
    }

    /* Slider */

    .slider {
        display: flex;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .contactMaps {
        grid-template-columns: 70% 1fr;
    }

    /* Meine Vision */

    .ImageBackgroundWrap {
        background-image: url(../res/Fotos/vision.jpg);
    }

    /* Pikler */
    .pikler .bg_two,
    .pikler .bg_three{
        display:block;
    }


    .pikler.first_box {
        grid-template-columns: 1fr 1fr 1fr;
    }


}