@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@500&display=swap');
@import url('https://cdn-uicons.flaticon.com/2.1.0/uicons-thin-straight/css/uicons-thin-straight.css');
@import url('https://cdn-uicons.flaticon.com/2.1.0/uicons-thin-rounded/css/uicons-thin-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.1.0/uicons-regular-rounded/css/uicons-regular-rounded.css');

:root {
    /*Color palette select blue green beige pink*/
    --light-blue: #c2d6e9;
    --light-pink: #ffe6dc;
    --light-green: #e9edc9;
    --beige: #fefae0;
    --soft-gray: #eaeaea;
    --sweater-blue: rgb(163, 183, 192);
    --heading-gray: #333;
    --sub-heading-blue: rgb(100, 120, 130);
    --subheading-gray: #666
}

/*General Style*/
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-height: 100000px;
    min-height: 100vh;
    box-sizing: border-box;
}

body {
    font-family: 'Encode Sans', sans-serif !important;
    position: relative;
    overflow-x: hidden;
}

footer {
    background-color: var(--sweater-blue);
    max-height: 5000px;
    width: 100vw;
    padding-top: 10px;
    padding-bottom: 20px;
}

footer a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid black;
}

/*Styled Classes*/
.content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
    margin-top: 100px;
    width: 100vw;
}

.active {
    opacity: 1;
    visibility: visible;
    max-height: 10000px;
}

.service-card {
    position: relative;
    width: 350px;
    height: 250px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 80px 20px 20px 20px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.card-icon {
    font-size: 60px;
}

.service-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--sweater-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
}

.service-title {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 30px;
}

.service-link {
    font-size: 16px;
    margin-top: 30px;
}

.service-card:hover {
    transform: translateY(-15px);

}

span.material-symbols-outlined {
    font-size: 100px;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0,
    'wght' 100,
    'GRAD' 0,
    'opsz' 48
}

.link {
    border-bottom: 1px solid black;
    cursor: pointer;
}

.impressum-link-copyright {
    width: 100vw;
    text-align: center;
}

.impressum-link-copyright a:visited {
    color: black;
}

.footer-info {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
}

.footer-label {
    text-align: center;
}

.footer-label h1 {
    color: var(--heading-gray);
    margin-bottom: 0;
}

.footer-label p {
    margin-top: 0;
}

.about-description {
    padding: 50px 50px 50px 100px;
    width: 100vw;
    height: auto;
    box-sizing: border-box;
}

.about-description h1 {
    color: var(--heading-gray);
}

.about-description h3 {
    color: var(--subheading-gray);
}

.line-indent {
    text-indent: 30px;
}

.paragraph-indent {
    margin-left: 100px;
}

.service-description {
    width: 100vw;
    max-height: 5000px;
    box-sizing: border-box;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.service-description h1, #service-intro h1 {
    color: var(--heading-gray);
}

#service-intro h3, #service-intro i {
    color: var(--subheading-gray);
    display: inline-block;
    padding-right: 10px;
}

#service-intro h3 {
    cursor: pointer;
    margin: 0;
}

.question-answer {
    height: auto;
}

.question {
    height: auto;
    border-collapse: collapse;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-in-out, height 1s ease-in-out;
}

.answer-active {
    max-height: 3000px;
}

.i-inactive {
    transform: translateY(10%);
}

.i-active {
    transform: scaleY(-1);
}

div.answer {
    padding: 16px 0;
}

/*Styled IDs*/
#mynavbar {
    height: 100px;
    width: 100vw;
    left: 0;
    top: 0;
    background-color: white;
    position: fixed;
    padding: 0;
    margin: 0;
    line-height: 95px;
    z-index: 10;
}

.mynavbar-collapsed {
    height: 100px;
    width: 100vw;
    left: 0;
    top: 0;
    background-color: white;
    position: fixed;
    padding: 0;
    margin: 0;
    line-height: 95px;
    z-index: 10;
    display: none;
    transition: height 1s;
    overflow: hidden;
}

.mynavbar-collapsed ul {
    position: relative;
    top: -100px;
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.mynavbar-collapsed ul li {
    height: 60px;
}

#navlogo-collapsed {
    height: 60px;
    position: relative;
    top: -80px;
    left: 100px;
}

#navul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-left: 0;
    margin: 0;
}

#navul li {
    list-style: none;
    margin: 0 20px;
    transition: color 0.3s;

}

#navul li:hover, .mynavbar-collapsed ul li:hover {
    cursor: pointer;
    color: var(--sweater-blue);
}

#betweenlayer {
    width: 100vw;
    height: 10px;
    background-color: var(--beige);
}

#sidetoside {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--sweater-blue);
    padding: 50px 50px 50px 100px;
}

#sidetoside img {
    width: 300px;
    margin-right: 50px;
    box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.5);
}

#sidetosidetext {
    margin-left: 50px;
}

#sidetosidetext h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--heading-gray);
}

#sidetosidetext h3 {
    color: var(--subheading-gray);
}

#sidetosidetext i {
    font-size: 20px;
}

#betweenlayerservices {
    height: 10px;
    width: 100vw;
    background-color: var(--light-blue);
}

#service-preview {
    padding: 100px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#about-intro {
    width: 100vw;
    max-height: 1000px;
    background-color: var(--sweater-blue);
    padding: 50px 50px 50px 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
}

#about-intro img {
    width: 300px;
    margin-right: 50px;
    box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.5);
}

#about-intro-text {
    margin-left: 50px;
}

#about-intro-text h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--heading-gray);
}

#about-intro-text h3 {
    color: var(--subheading-gray);
}

#seperation-line {
    background-color: var(--sub-heading-blue);
    width: 100px;
    height: 3px;
}

#about-ausbildung {
    background-color: var(--light-pink);
}

#about-weiterbildungen {
    background-color: var(--soft-gray);
}

#service-intro {
    width: 100vw;
    height: auto;
    background-color: var(--sweater-blue);
    padding: 50px 50px 50px 100px;
    box-sizing: border-box;
}

#service-intro i {
    transition: transform 1s;

}

#psychotherapie {
    background-color: var(--light-pink);
    padding: 50px 50px 50px 100px;
}

#tierpsychotherapie {
    background-color: var(--soft-gray);
    padding: 50px 100px 50px 50px;
    text-align: right;
}

#tiercoaching {
    padding: 50px 100px 50px 50px;
}

#accordion-information {
    width: 100vw;
    height: auto;
}

#navlogo {
    height: 60px;
    position: relative;
    top: -80px;
    left: 100px;
}

#image-horse-1 {
    height: 300px;
    margin-right: 80px;
    box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.5);
}

#image-horse-2 {
    height: 300px;
    margin-left: 80px;
    box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.5);
}

#psycho-icon-service {
    width: 150px;
    margin-left: 80px;
}

#menu-symbol-container {
    width: 100vw;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nav-expand {
    font-size: 60px;
    color: black;
}

/*Media queries*/
@media screen and (max-width: 1250px) {
    #service-preview {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service-card {
        width: 80vw;
    }

    #link-to-psychotherapie, #link-to-tierpsychotherapie {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1150px) {
    #navlogo {
        left: 40px
    }

    #tierpsychotherapie {
        flex-direction: column-reverse;
        align-items: flex-end
    }

    #tierpsychotherapie img {
        margin-right: 0;
        margin-top: 30px;
    }

    #psychotherapie, #tiercoaching {
        flex-direction: column;
        align-items: flex-start;

    }

    #psychotherapie img, #tiercoaching img {
        margin-left: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1045px) {
    #sidetosidetext h1 {
        font-size: 40px;
    }

    #sidetosidetext h3 {
        font-size: 15px;
    }

    #sidetosidetext p {
        font-size: 12px;
    }

    #sidetosidetext p i {
        font-size: 16px;
    }

    #sidetosidetext {
        margin-left: 30px;
    }

    #sidetoside img {
        margin-right: 30px;
        width: 250px;
    }
}

@media screen and (max-width: 954px) {
    #about-intro img {
        width: 250px;
        margin-right: 30px;
    }

    #about-intro-text {
        margin-left: 30px;
    }

    #about-intro-text h1 {
        font-size: 40px;
    }

    #about-intro-text h3 {
        font-size: 15px;
    }

    #about-intro-text p {
        font-size: 12px;
    }
}

@media screen and (max-width: 860px) {
    #sidetoside {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #sidetoside img {
        width: 350px;
    }

    #sidetosidetext h3 {
        font-size: 19px;
    }

    #sidetosidetext p {
        font-size: 16px;
    }

    #sidetosidetext p i {
        font-size: 20px;
    }

    #sidetosidetext {
        margin-left: 0;
    }

    .mynavbar-collapsed {
        display: block;
    }

    #mynavbar {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        text-align: center;
    }

    #about-intro {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    #about-intro img {
        width: 350px;
    }

    #about-intro h3 {
        font-size: 19px;
    }

    #about-intro p {
        font-size: 16px;
    }

    #about-intro-text {
        margin-left: 0;
    }
}

@media screen and (max-width: 700px) {
    .paragraph-indent {
        margin-left: 0;
    }
    #service-intro, #psychotherapie, #tiercoaching, #tierpsychotherapie{
        padding: 50px 30px 50px 30px;
    }

}

@media screen and (max-width: 550px) {
    #sidetosidetext h1 {
        font-size: 30px;
    }

    #sidetosidetext h3 {
        font-size: 15px;
    }

    #sidetosidetext p {
        font-size: 12px;
    }

    #sidetosidetext p i {
        font-size: 16px;
    }

    #sidetoside {
        margin: 0;
    }

    #sidetoside img {
        width: 250px;
        margin-right: 0;
    }

    #navlogo-collapsed {
        left: 40px;
    }

    #about-intro-text h1 {
        font-size: 30px;
    }

    #about-intro-text h3 {
        font-size: 15px;
    }

    #about-intro-text p {
        font-size: 12px;
    }

    #about-intro img {
        width: 250px;
        margin-right: 0;
    }
}
@media screen and (max-width: 500px){
    #tierpsychotherapie img, #tiercoaching img{
        height: 250px;
    }
}
@media screen and (max-width: 450px) {
    #sidetoside {
        padding: 50px 30px;
    }

    #about-intro {
        padding: 50px 30px;
    }

    .about-description {
        padding: 50px 30px;
    }
    #tierpsychotherapie img, #tiercoaching img{
        height: 200px;
    }
}

.mynavbar-collapsed-active {
    height: 300px;
}





