/* CSS Reset */
* {
  margin: 0px 0px;
  padding: 0px;
  font-family: 'Roboto Slab', serif;
  box-sizing: border-box;

  ::-webkit-scrollbar {
    width: 0px;
    /* for vertical scrollbars */
    background-color: #000000;
    height: 8px;
    border-radius: 15px;
    box-shadow: inset 0 0 5px grey; 
  }
  
  ::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background-color: #ffffff;
  }
}

html {
  scroll-behavior: smooth;
}

/* CSS Variables */
:root {
  --navbar-height: 59px;
}



.top-offers {
  z-index: +11;
  top: 0px;
  position: sticky;
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  font-family: Verdana;
  text-align: center;
  font-size: larger;
}

.top-offers img {
  height: 14px;
}

.top-offers{
  
  padding-top: 0px;
}

/* Navigation Bar */
#navbar ::before {
  content: "";
  position: sticky;
  top: 15px;
  left: 0px;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

#navbar {
  display: flex;
  align-items: center;
  top: 24px;
  position: sticky;
  justify-content: space-between;
  background-color: #ffffff;
  z-index: 1;
  width: 100%;
  padding: 5px;
}


/*Navigation: logo and Image */
#logo {
  margin: 15px 36px;
  height: 64px;
  /* width: 250px; */
  margin-top: -10px;
  margin-right: 0px;
}

#logo img {
  width: 160px;
  cursor: pointer;
}

#logo img:hover {
  cursor: pointer;
}

/* Navigation: List item (Menu) */
#navbar ul {
  display: flex;
}

#navbar ul li {
  list-style: none;
  margin: 10px;
  font-size: x-large;
  font-weight: 550;

}

#navbar ul li a {
  font-family: sans-serif;
  display: block;
  text-decoration: none;
  color: black;
  letter-spacing: .1 em;
}

#navbar ul li a:hover,
#navbar ul li a:focus {
  display: block;
  transition: .3s ease;
  text-decoration: underline;

}

#order-btn {
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
  border: none;
  margin-right: 20px;
  border-radius: 23px;
  background-color: red;
  font-family: sans-serif;
  letter-spacing: .1em;

}

#order-btn a {
  color: #ffff;
  text-decoration: none;
  font-size: large;
}

#order-btn:hover,
#order-btn:focus {
  background-color: rgba(255, 0, 0, 0.801);
  transition: .3s ease;

}

header{
  display: flex;
  background-color: red;
  margin-bottom: 20px;
  justify-content: space-between;
}

header a{
  color: white;
  display: block;
  align-items: center;
  text-decoration: none;
  margin: 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
}

header a:hover{
  letter-spacing: 0.1em;
  transition: .3s ease;

}

header h1 {
  font-size: 28px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  padding: 20px;
  color: #f5f5f5;
}

section {
  margin-bottom: 40px;
}

.menu-nav {
  width: 100%;
  padding: 0px;
  margin: 0px;

}

.menu-nav ul li p {
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  display: block;
}

.li-head {
  display: flex;
  justify-content: space-between;

}

.menu-nav ul li {
  background-color: red;
  list-style-type: none;
  display: block;
  padding: 20px;
  margin: 5px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.menu-nav ul li a {
  color: white;
  display: block;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  line-height: normal;
  padding: 10px;
}

.offers-top h3:hover,
.offers-top h3:focus {
  /* text-decoration: underline; */
  letter-spacing: 0.05em;
  transition: 0.3s ease;
}

h2 {
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 30px;
  font-weight: bold;
  background-color: #ff0000;
  border: none;
  border-radius: 5px;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}

/* Menu List */

/*  */

#offers {
  margin: 10px;
  overflow: hidden;

}

.offer-content {
  margin: 10px;
  display: inline-block;
  /* overflow: auto; */
  white-space: nowrap;
}

.offers-top {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  margin-top: 0px;
  margin-right: 5px;
}

.offers-top h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: xx-large;
  font-weight: normal;
  color: white;
}

.offers-top h3 a {
  font-weight: normal;
  font-family: sans-serif;
  color: #000000;
}

.offers-product {
  display: flex;
  margin-left: 10%;
  overflow: auto;
  
}

.product {
  margin: 20px;
  width: 300px;
  background-color: #2e2d2bd6;
  border-radius: 5px;
  padding: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-left: 0px;
  margin-right: 20px;
}

.product a {
  
  color: #000000;
  padding: .7em;
  text-decoration: none !important;
font-weight: normal;
font-size: large;
}
.product-name{
  font-size: larger;
}

.product-image{
  display: block;
  margin: auto;
}
.product-image img{
  width: 260px;
  height: 270px;
  border-radius: 5px;
  margin-left: 0px;
}

.product-description .product-name,
.product-description .product-name-description {
  font-family: sans-serif;
  margin-left: 0px;
  margin-top: 10px;
  font-weight: normal;
}



/* Menu */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.menu-item {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.menu-item:hover,
.menu-item:focus {
  background-color: #e4dcdce7;
  cursor: pointer;
  transition: .3s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.menu-item h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.menu-item p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 15px;
}

.menu-item .price {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  color: #555;
}

/* Footer */

footer {
  margin-top: 50px;
  font-size: 14px;
  color: #666;
}

section {
  margin: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

section h2 {
  text-align: center;
}

header {
  text-align: center;
}

footer {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-size: larger;
  padding: 10px;
}

.upper {
  border: 1.5px solid black;
  display: block;
  position: fixed;
  bottom: 15px;
  right: 15px;
  padding-right: 13px;
  padding-left: 13px;
  padding-top: 5px;
  border-radius: 100px;
  background-color: rgb(255, 255, 255);

  z-index: 11;
  font-size: large;
  font-weight: bolder
}

#upper-btn {
  background-color: rgb(255, 255, 255);
  border: none;
}

#upper-btn a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: x-large;
}

