html {
  font-size: 10px;
  height: 100%;
}

body {
  height: 100%;
  font-family: "PPMori";
  margin: 0;
  font-size: 3rem;
  background-color: #F9F2E1;
}

@font-face {
  font-family: 'PPMori';
  src: url("./assets/fonts/PPMori-Regular.otf");
  font-weight: normal;
  font-style: normal;
}

* {
  -webkit-box-sixing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  height: 100%;
  padding-bottom: 7rem;
  display: block;
  overflow: hidden;
}

.third-container {
  height: 100%;
  display: none;
}

.ad-image {
  background-size: cover;
  background-position: center;
  height: 100%;
}

.content {
   background-size: cover;
  color: black; /* Text color set to black */
  font-size: 3rem;
  margin: 0;
  padding: 4rem;
  height: 100%;
}

.second-content {
  background-size: cover;
 color: black; /* Text color set to black */
 font-size: 3rem;
 margin: 0;
 padding: 4rem;
 height: 100%;
}

.third-content {
  height: 100%;
}

.restaurant-logo-image {
  height: 60px;
}

.menu-item-category {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #488393;
  height: 10rem;
  display: flex
}

.menu-item-product {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #488393;
  height: 10rem;
}

.menu-item-product .price {
          flex-shrink: 0;
            text-align: right;
            white-space: nowrap; /* Prevent price from wrapping */
            color: #FF9A55;
            font-size: 3.5rem;
}

.menu-item-product .title {
            flex: 1;
            margin-right: 2rem;
            white-space: nowrap; /* Prevent price from wrapping */
            overflow: hidden;
            margin-left: 4rem;
}

.menu-item-category .title {
            flex: 1;
            white-space: nowrap; /* Prevent price from wrapping */
            overflow: hidden;
            color: #F9F2E1;
            font-size: 4rem;
            margin-left: 4rem;
           line-height: 6rem;
}

.menu-item-category .description {
  white-space: nowrap; /* Prevent price from wrapping */
  overflow: hidden;
  color: #F9F2E1;
  font-size: 3.5rem;
 line-height: 6rem;
 margin-right: 4rem;
}

.menu-title {
  text-align: center;
  font-size: 4.5rem;/* Larger font size for the header */
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.header-logo {
  display: block;
    /* text-align: right; */
    /* font-size: 4.5rem; */
    margin-bottom: 4rem;
    margin-top: 2rem;
    width: 25rem;
    margin-left: 0rem;
    margin-right: auto;
}

.menu-item-product .description {
  font-size: 2.8rem; /* Smaller font size for descriptions */
  color: #555555; /* Slightly lighter color for descriptions */
  margin-top: 10px; /* Space between name and description */
  margin-left: 4rem;
}

.menu-item-product .item-info {
  display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 1.5rem;
    column-gap: 1.5rem;
    align-items: start;
}

footer {
  position: absolute;
  width: 100%;
  height: 9rem;
  bottom: 0px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  align-self: flex-end;
  background-color: #F9F2E1;
}

.logo-text {
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0px;
  display: inline-block;
  margin-left: 8rem;
  margin-right: auto;
}

.logo {
  max-width: 100%;
  height: 5rem;
}

.squared-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, #ddd 1px, transparent 1px), linear-gradient(to bottom, #ddd 1px, transparent 1px);
  background-size: 25px 25px;
  z-index: -1;
}

/* Adjust root font size for high-resolution displays */
@media (min-width: 3800px), (min-height: 3800px) {
  html {
      font-size: 20px; /* Double the base font size */
  }
}

@media (min-width: 3800px), (min-height: 3800px) {
  .menu-item-product {
      border-bottom: 4px solid #488393; /* Increase border size for 4K displays */
  }
  .menu-item-category {
    border-bottom: 4px solid #488393; /* Increase border size for 4K displays */
}

}