@import url('https://fonts.googleapis.com/css2?family=Katibeh&display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: white;
    background-color: black;
    scroll-behavior: smooth;
}

/* ======== Heading ======== */
#picture {
    background-image:
        radial-gradient(circle at center, rgba(0, 0, 0, 50%), rgba(0, 0, 0, 50%)),
        url('./bar.webp');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
}

#heading {
    position: absolute;
    font-family: 'Kotibeh', cursive;
    font-size: 15vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

#scroll-down-link {
    position: absolute;
    display: block;
    bottom: 0;
    left: calc(50% - 15px);
    transform: translateX(-50%);
}

#scroll-down-link > img {
    width: 30px;
}

#scroll-down-link > img:hover {
    width: 30px;
    transform-origin: center;
    transform: scale(1.5);
}

/* ======== Main ======== */
main {
    padding: 3%;
    line-height: 150%;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}

main h2 {
    text-align: center;
    font-size: 150%;
}

main section:not(:last-child) {
    margin-bottom: 10vh;
}

/* ======== Reviews ======== */
#reviews > blockquote:nth-child(odd) {
    text-align: right;
}

#reviews blockquote > p::before,
#reviews blockquote > p::after {
    content: '"';
}

#reviews blockquote > footer::before {
    content: '—';
}

/* ======== Menu ======== */

#menu-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.menu-category {
    flex: 1 1 50%;
}

h3 {
    width: 80%;
    border-bottom: 2px solid white;
}

ul {
    padding-top: 0;
    padding-bottom: 0;
}



@media screen and (min-width: 768px) {
    #heading {
        font-size: 10vw;
    }
}

@media screen and (min-width: 1200px) {
    #heading {
        font-size: 8vw;
    }
}

.bounce {
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}