/* Existing styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background: #fffffff7;
  line-height: 1.6;
  color: rgb(0, 0, 0);
  overflow-x: hidden;
}

.one {
  max-width: 1200px;
  margin: 10px auto;
}

/* Main Heading */
h1 {
  /*background-image: linear-gradient(to right, #ee00ff 0%, #fbff00 100%);
  color: transparent;*/
  color: #333333; /* Dark grey */
  font-family: Garamond, serif;
  text-align: center;
  font-size: 60px;
  margin: 20px 0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Small Heading 
small > i {
  background-image: linear-gradient(to right, #ee00ff 0%, #fbff00 100%);
  color: transparent;
  -webkit-background-clip: text;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  margin-top: -20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}*/

/* Header styles */
header {
  background-color: #171616;
  color: #f0ebeb;
 }

.web-menu-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo > img {
  max-height: 80px;
  margin-left: 20px;
  margin-top: 10px;
}

header .language-selector button {
  margin: 0 5px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

header .language-selector button:hover {
  background-color: #fff;
  color: #333;
  transform: scale(1.1);
}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 30px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
}

header nav ul li a:hover {
  text-decoration: underline;
}
.main {
  /*margin-left: -79px;*/
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #d2dce1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
}
.mainn {
  padding: 0px;
  margin-left: 85px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ddd;
}
main {
  padding: 20px;
  /*margin-left: 70px;*/
}
.shad {
  /*margin-top: -10px;*/
  padding: 20px;
  border-radius: 15px;
}
/* Menu and category styles */
.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 30px; /* Added gap between items */
}

.menuu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.menu-category {
  flex: 1 1 calc(50% - 20px);
  /*padding: 10px;*/
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.m_title {
  /*margin-top: -10px;*/
  margin: -10px auto 0 auto;
}

.menu-category h2 {
  background-color: #f4f4f4;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
 background-image: linear-gradient(to right, #d34893 0%, #4eabe9 100%);
  color: transparent; */
  /* -webkit-background-clip: text; */
  font-size: 36px;
  font-family: "Georgia", serif;
}

.menu-content {
  display: flex;
  flex-direction: column;
}

.menu-item {
  margin-bottom: 20px;
}
.flavors {
  margin-top: 0%;
  border-left: 1px solid #928d8d;
}

h2 {
  background-color: #f4f4f4;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  background-image: linear-gradient(to right, #a40258 0%, #2381c0 100%);
  color: transparent;
  font-family: Garamond, serif;
  -webkit-background-clip: text;
  font-size: 32px;
  font-family: "Georgia", serif;
}


h3 {
  background-color: #f4f4f4;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  /* background-image: linear-gradient(to right, #ee00ff 0%, #fbff00 100%);
  color: transparent; */
  color: #333333; /* Dark grey */
  font-family: Garamond, serif;

  -webkit-background-clip: text;
  font-size: 22px;
  font-family: "Georgia", serif;
}

ul {
  list-style: none;
  padding: 0; /* Removed default padding */
}
.m {
  margin-left: 25%;
}
main ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #928d8d;
}

ul li span {
  font-weight: bold;
  color: #e33b95;
  margin-left: 20px;
}

/* Responsive adjustments */
@media only screen and (min-width: 861px) and (max-width: 1092px) {
  .web-menu-header{
    max-width: 800px;
  }
  .one {
    max-width: 800px;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  small > i {
    font-size: 20px;
    margin-top: -12px;
  }
  .menu-category h2 {
    font-size: 30px;
  }
  .menu-item h3 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 860px) {
  h1 {
    font-size: 30px;
  }
  .web-menu-header{
    max-width: 650px;
  }
  .one {
    max-width: 650px;
  }
  .flavors {
    margin-top: 0%;
    border-left: none;
    width: 100%;
  }
  .menu-category {
    flex: 1 1 100%; /* One item per line on smaller screens */
  }
  .menu-category h2 {
    font-size: 28px;
  }
  .menu-item h3 {
    font-size: 20px;
  }
  small > i {
    font-size: 22px;
  }
}

@media only screen and (min-width: 375px) and (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
  .flavors {
    margin-top: 0%;
    border-left: none;
    width: 100%;  
  }
  .menu-category {
    flex: 1 1 100%;
  }
  .menu-category h2 {
    font-size: 26px;
  }
  .menu-item h3 {
    font-size: 22px;
  }
  small > i {
    font-size: 20px;
  }
}
