* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --header-background: rgb(34, 34, 34);
  --table-font-color: #121212;
  --head-sections-table-font-size-desktop: 2rem;
  --head-sections-table-font-size-mobile: 1.8rem;
  --menu-items-font-size-desktop: 2rem;
  --menu-items-font-size-mobile: 0.9rem;
  --menu-items-padding-desktop: 10px;
  --menu-items-padding-mobile: 2.2vw;
  --items-table-font-size-mobile: 1rem;
  --items-table-font-size-desktop: 1.5rem;
  --price-color: rgb(0, 150, 0);
  --price-font-size: 1rem;
  --price-font-size--mobile: 1.2rem;
  --table-border-color: rgba(5, 3, 3, 0.2);
  --footer-font-color: rgb(230, 230, 230);
  --sections-color: rgb(18 18 33 / 0.1);
  --sections-width: 90%;
  --img-icon-width: 60px;
  --img-icon-height: 60px;
  --heading-font-size: 2rem;
  --footer-font-size-desktop: 1.5rem;
  --footer-font-size-mobile: 1rem;
  --footer-font-size-header-desktop: 2.5rem;
  --footer-font-size-header-mobile: 2rem;
  --footer-line-height: 1.6rem;
}

body {
  width: 100%;
  height: auto;
  background-color: rgb(255, 255, 255);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 10rem;
}

.btn-home {
  font-size: 2rem;
  text-decoration: none;
  position: fixed;
  background-color: rgb(18 18 18 / 0.8);
  color: #fff;
  padding: 2px 5px 2px 5px;
  bottom: 25px;
  right: 25px;
  border-radius: 6px;
}

.header-menu {
  background-color: var(--header-background);
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 0px 0px 10px 10px;
}

.header-menu .logo {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 110px;
  height: 100px;
  margin: 20px;
  border-radius: 50%;
}

.header-menu .nav-items {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}

.header-menu .nav-items > a {
  text-decoration: none;
  color: var(--table-font-color);
  background-color: #fff;
  border-radius: 0.5rem;
  padding: var(--menu-items-padding-desktop);
  font-size: var(--menu-items-font-size-desktop);
  transition: 100ms ease-in-out;
  letter-spacing: 1px;
}

.header-menu .nav-items > a:hover {
  transform: scale(1.02);
  text-decoration: underline;
}

.header-menu .nav-items > a:active {
  text-decoration: underline;
}

.footer-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: auto;
  background-color: var(--header-background);
  border-radius: 10px 10px 0px 0px;
}

.footer-menu p {
  padding: 20px;
  color: var(--footer-font-color);
  text-indent: 30px;
  text-align: justify;
  letter-spacing: 1px;
  line-height: 2rem;
  font-size: var(--footer-font-size-desktop);
  font-family: "Times New Roman", Times, serif;
}

.footer-menu h1 {
  font-size: var(--footer-font-size-header-desktop, 2rem);
  color: var(--footer-font-color);
  padding-top: 20px;
  font-family: "Times New Roman", Times, serif;
}

.container {
  width: 100%;
  height: inherit;
  margin: 30px 0px 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

table {
  border-collapse: collapse;
  width: 90%;
}

/* Head section of the table */
table th {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--table-border-color);
  font-size: var(--head-sections-table-font-size-desktop);
  background-color: var(--sections-color);
  color: var(--table-font-color);
  letter-spacing: 0.8px;
  border-radius: 0px 10px 0px 0px;
}

table th:nth-child(1) {
  border-radius: 10px 0px 0px 0px;
}

/* Items section */
table td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid var(--table-border-color);
  font-size: var(--items-table-font-size-desktop);
  font-weight: 400;
  font-family: inherit;
  color: var(--table-font-color);
  letter-spacing: 0.8px;
}

/* Easily change color of the price */
table tr td:nth-child(2) {
  color: var(--price-color);
  text-align: right;
  letter-spacing: 1px;
  font-size: var(--price-font-size);
}

/* Easily change colors of table headers */
table tr th:nth-child(1) {
  text-align: left;
}

table tr th:nth-child(2) {
  text-align: right;
}

/* Easily change color of the diet span */
table tr td span {
  color: var(--price-color);
}

.section-1 {
  width: var(--sections-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0rem;
  color: var(--table-font-color);
  background-color: var(--sections-color);
  padding: 20px;
  border-radius: 0.5rem;
}

.section-1 h1 {
  font-size: var(--heading-font-size);
  color: var(--table-font-color);
}

.section-1 .cold-drink-img {
  width: var(--img-icon-width);
  height: var(--img-icon-height);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.section-2 {
  width: var(--sections-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--table-font-color);
  background-color: var(--sections-color);
  padding: 20px;
  border-radius: 0.5rem;
}

.section-2 h1 {
  font-size: var(--heading-font-size);
  color: var(--table-font-color);
}

.section-2 .coffee-img {
  width: var(--img-icon-width);
  height: var(--img-icon-height);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.section-3 {
  width: var(--sections-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--table-font-color);
  background-color: var(--sections-color);
  padding: 20px;
  border-radius: 0.5rem;
}

.section-3 .chips-img {
  width: var(--img-icon-width);
  height: var(--img-icon-height);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
  table {
    width: 95%;
  }

  table th {
    font-size: var(--head-sections-table-font-size-mobile);
    padding: 10px;
  }

  table td {
    font-size: var(--items-table-font-size-mobile);
  }

  table tr td:nth-child(2) {
    font-size: var(--price-font-size--mobile);
    letter-spacing: 1.5px;
  }

  .header-menu .nav-items {
    width: 100%;
  }

  .header-menu .nav-items > a {
    font-size: var(--menu-items-font-size-mobile);
    padding: var(--menu-items-padding-mobile);
    letter-spacing: normal;
  }

  .header-menu {
    padding: 20px;
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .header-menu .logo {
    width: 110px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    margin: 0;
  }

  .footer-menu p {
    font-size: var(--footer-font-size-mobile);
    text-indent: 10px;
    line-height: var(--footer-line-height);
    letter-spacing: 0.8px;
  }

  .footer-menu h1 {
    font-size: var(--footer-font-size-header-mobile, 1.5rem);
  }

  html {
    scroll-padding: 13rem;
  }
}

/* Responsive for very small devices */
@media (max-width: 320px) {
  .header-menu .nav-items > a {
    font-size: var(--menu-items-font-size-mobile);
    padding: var(--menu-items-padding-mobile);
    letter-spacing: normal;
  }

  .header-menu {
    padding: 20px;
    height: 30vh;
  }
}
