@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

body {
    background: #ffffff;
}

b {
    font-family: "Patrick Hand SC", cursive;
    font-weight: 500;
    font-size: 120%;
}

ul {
    list-style-type: square;
}

li {
    margin-bottom: 0.25rem;
}

.text-justify {
    text-align: justify;
}

.font-title {
    font-family: "Patrick Hand SC", cursive;
}

.introjs-tooltip.intro-all,
.introjs-tooltip.intro-ingredients {
    min-width: 300px;
    font-size: 75%;
    text-align: justify;
    /* default is ~280px */
}

.introjs-tooltip-title {
    font-size: 125%;
}

.introjs-tooltiptext {
    padding-top: 10px;
    padding-bottom: 0px;
}

.introjs-bullets {
    padding-bottom: 15px;
}

/* Burger-menu */
.burger-menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #333;
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.25s ease;
    overflow: visible;
    /* wichtig, sonst wird das Dropdown abgeschnitten */
}

.burger-menu #title {
    color: lightgray;
    font-size: 2.0rem;
    line-height: 2.0rem;
    vertical-align: middle;
    font-family: "Patrick Hand SC", cursive;
    /* font-family: "Barrio", system-ui; */
    font-weight: 400;
    font-style: normal;
}


/* Style the question */
.burger-menu a.question-icon {
    color: lightgray;
    font-size: 30px;
    line-height: 38px;
    display: block;
    position: absolute;
    top: 3px;
    right: 90px;
    width: 38px;
    height: 38px;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s linear;

    &:hover {
        opacity: 0.8;
    }
}

/* Style the hamburger menu */
.burger-menu a.menu-icon {
    color: lightgray;
    font-size: 38px;
    line-height: 38px;
    display: block;
    position: absolute;
    top: 3px;
    right: 44px;
    width: 38px;
    height: 38px;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s linear;

    &:hover {
        opacity: 0.8;
    }
}


/* Hide the links inside the navigation menu (except for logo/home) */
.burger-menu #myLinks {
    display: none;
    /* „eingeklappt“ */
    position: absolute;
    /* damit es nicht mehr volle Breite hat */
    top: 72px;
    /* Abstand von oben: Höhe deines Headers */
    right: 0px;
    /* unter dem Burger-Symbol ausrichten */
    background-color: #333;
    opacity: 0.98;
    /* Dropdown-Hintergrund */
    width: fit-content;
    /* passt sich der Textbreite an */
    padding: 0 15px 0 10px;
    /* links und rechts je +20px */
    /* nur so breit wie der Inhalt */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    /* optional hübscher */
}

.burger-menu #myLinks a {
    font-size: 120%;
    text-align: left;
    padding-right: 8px 16px;
    color: white;
    display: block;
    white-space: nowrap;
    text-decoration: none;
}

/* Style navigation menu links */
.burger-menu a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

/* Style the active link (or home/logo) */
.active {
    background-color: #333;
    color: white;
}

/* Ende: Burger-menu */

#btn-back {
    z-index: 1000;
    background-color: #08aa9dde;
    border-color: #08aa9d;
    color: white;
    width: 64px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
}

#btn-back:hover {
    background-color: #079185;
}

#btn-back-to-top {
    z-index: 1000;
    position: fixed;
    background-color: #08aa9dde;
    border-color: #08aa9d;
    color: white;
    bottom: 20px;
    right: 20px;
    display: flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* makes it circular */
    padding: 0;
    /* keeps icon centered */
    align-items: center;
    justify-content: center;
}

#btn-back-to-top:hover {
    background-color: #079185;
}