html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
    height:0;
}

body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

nav {
    width: 100%;
    background: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    display: block;
}

nav ul li a.active {
    color: #007BFF;
}

.menu {
    padding: 0 20px 0;
    flex: 1;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 7px #303030;
  letter-spacing:1px;

}
/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:32px;
  font-weight:bold;
  width:90%;
}
.hero img {
    object-fit: cover;
    height:200px;
}
section {
    margin-bottom: 50px;
}

section h2 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    text-align:center;
    font-size:20px;
}

section ul {
    list-style: none;
    padding: 0;
}

section ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-size: 17px;
}

section ul li .item-name {
    text-align: left;
    flex: 1;
}

section ul li .price {
    text-align: right;
    flex: none;
    width: 60px;
}

@media (max-width: 768px) {
    nav ul {
        padding: 10px;
    }

    nav ul li {
        margin-right: 10px;
    }

    nav ul li a {
        padding: 8px;
    }

    section ul li .price {
       
    }
}

#nav-list .active a {
    background-color: red;
    border-radius: 35.4167px;
    color: white;
}
.hidden {
    display:none;
}