@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Nova+Square&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap');

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

}

body {
    font-family: "Moderustic", sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 18rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/terapist-images/terapist-hero.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    text-align: center;
    padding: 2rem 0;
}

.comment-button {
    position: fixed;
    z-index: 10;
    bottom: 250px;
    right: 0px;
}

.comment-button img {
    width: 50px;
    object-fit: cover;
}

.hero-filter {
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 60%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo {
    z-index: 1;
}

.logo img {
    width: 80%;
    height: 100%;
    object-fit: contain;
}

.logo-bottom img {
    width: 90%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}

.hero-heading,
.hero-desc {
    z-index: 1;
}

.hero-heading h1 {
    font-family: sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #fff;
    font-weight: 500;
    margin-top: .5rem;
}

.hero-desc p {
    font-family: 'nova square';
    font-size: .9rem;
    color: #fff;
    margin: 1rem auto;

}

.menu {
    position: relative;
    background-color: white;
    width: 100%;
    top: -2rem;
    z-index: 2;
}

.categories {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 0 .5rem 1rem;
}

.menu-categorie-card {
    border: 3px solid #ba9c7f;
    background-color: #eae8df;
    color: #3f3f3f;
    text-align: center;
    padding: 5px;
    margin-right: 0.5rem;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.menu-categorie-card-heading {
    width: 100%;
}

.menu-categorie-card-heading h3 {
    font-size: .9rem;
    padding: .4rem .0rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #3f3f3f;
    font-family: "Moderustic", sans-serif;
    text-transform: uppercase;
    font-style: italic;
}


.owl-dots {
    display: none !important;
}

.menu-items {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;


}

.menu-categorie-header {
    color: #3f3f3f;
    font-size: 1.7rem;
    margin: 0 0 1rem 1.5rem;
    font-family: "Moderustic", sans-serif;
    font-style: italic;
    text-transform: uppercase;
}

.menu-item-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.product {
    width: 90%;
    background-color: #ebe8df;
    border: 5px solid #ba9c7f;
    border-radius: 5px;
    display: flex;
    margin-bottom: 0.8rem;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: space-between;
}

.product-image {
    width: 30%;
    height: 100%;
    object-fit: cover;

}

.product-image img {
    min-height: 120px;
    max-width: 120px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-content {
    width: 70%;
    padding: .3rem;
}

.product-head {
    font-weight: 700;
    color: white;
    font-family: "Moderustic", sans-serif;
    text-transform: uppercase;
}

.product-head-text {
    width: 100%;
    color: #3f3f3f;
}

.product-description {
    display: flex;
    flex-direction: column;
    align-items: start;
}


.product-desc {
    font-family: "Moderustic", sans-serif;
    font-weight: 300;
    font-size: .6rem;
    color: #3f3f3fd6;
    margin: 0.2rem 0;
    min-width: 70%;
}

.ico-terapist {
    width: 100%;
    height: 100%;
    position: relative;
}

.ico-terapist img {
    width: 20%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
}

.product-price {
    font-size: 1.3rem;
    font-family: 'Moderustic';
    font-weight: 700;
    color: #444344;
    text-shadow: white 1px 1px 0px;
    margin-top: .5rem;
    font-style: italic;
}

.footer-content {
    text-align: center;
    padding: 0.5rem;
    background-color: #ba9c80;
    color: #3f3f3f;
    font-size: 0.8rem;
    font-family: 'Nova Square';
}

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

.footer-content span {
    font-size: 1.3rem;
    margin-right: 4px;
}

.footer-content a {
    color: #444344;
}

.menu-icon {
    width: 30px;
    position: absolute;
    left: 10px;
    top: 10px;
}

@media screen and (min-width: 600px) {
    .container {
        width: 450px;
        margin: 0 auto;
        border-right: 1px solid #3f3f3f !important;
        border-left: 1px solid #3f3f3f !important;
    }
}