* {
    font-family: Cursive, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1rem;
}

/* Header */
header p, header h1 {
    text-shadow: rgb(0, 0, 0) 1px 1px 10px; 
}

#mainTitle {
    color:#DEE09B;
}

header {
    background-image: url(images/headerBackground.jpg);
    background-size: cover;
    color: white;
    text-align: center
}

#schedules {
    background-color: rgba(255, 176, 7, 0.269);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid white;
}

/* aside (callNumber) */
#callNumber {
    background-color: rgb(84, 83, 86);
    text-align: center;
    color: white;

    position: sticky;
    top: 0;
    z-index: 1000;
    height: 75px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#callNumber span {
    flex-grow: 1;
}

#horizontalMenuList {
    text-transform: uppercase;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;

    position: sticky;
    top: 75px;
    z-index: 1000;
}

#horizontalMenuList ul {
    display: inline-flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

#horizontalMenuList ul li {
    flex: 0 0 auto;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    margin: 0 5px;
    color: black;
    background-color: white;
}

#horizontalMenuList ul li.active {
    background-color: #CFC792;
    color: white;
    text-shadow: 1px saddlebrown;
}

/* Main */
#menuList {
    position: sticky;
    top: 10vh;
    z-index: 1000;
}

#dishTitle {
    color:#beb268;
    text-shadow:rgb(77, 76, 76) 1px 1px 2px; ;
    font-weight: bold;
    border-bottom: 6px solid #D1C78B;
    box-shadow: 0px 2px 0px grey;
}

#dishList {
    color: rgb(30, 29, 29);
}

.singleFood {
    box-shadow: 0px 5px 10px lightgrey;
}

.singleFood img {
    aspect-ratio: 1;
    object-fit: cover;
}

.singleFood:hover {
    border: 1px solid black;
}

/* Other */
.list-group-item.active {
    background-color: #8A5132;
}