@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap");

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}
.index-body {
  background: url("../img/background.webp") no-repeat center center fixed;
  background-size: cover;
}
@media (max-width: 768px) {
  .index-body {
    background: url("../img/background-mobile.webp") no-repeat center center fixed;
    background-size: cover;
  }
}
.index-body .overlay {
  background-color: rgba(0,0,0,0.6);
}
.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
}
.top-bar {
  height: 80px;
  background: #002664;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.top-left {
  display: flex;
  align-items: center;
  padding-left: 20px;
}
.logo {
  height: 60px;
}
.nav-toggle {
  display: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  margin-right: 20px;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.top-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0 auto;
}
.nav-left-col,
.nav-right-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  margin: 0 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.main-menu a:hover {
  color: #ffd700;
  text-decoration: none;
}
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 10px;
  text-decoration: none;
}
.social-icons a:hover {
  color: #ffd700;
}
.top-right {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
}
.lang {
  cursor: pointer;
  margin: 0 5px;
  font-size: 0.9rem;
}
.lang:hover {
  color: #ffd700;
  text-decoration: none;
}
.lang.active {
  text-decoration: none;
  color: #ffd700;
}
.mobile-lang {
  display: none;
}
@media (max-width: 768px) {
  .top-center {
    display: none;
  }
  .top-right .lang-switcher {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  #nav-toggle:checked ~ nav .top-center {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background: #2a3e5f;
    overflow-y: auto;
    height: calc(100vh - 80px);
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 40px;
  }
  .main-menu a {
    display: block;
    margin: 10px 0;
    text-align: center;
    width: 100%;
    font-size: 1.2rem;
  }
  .social-icons a {
    font-size: 1.5rem;
  }
  .mobile-lang {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .mobile-lang .lang {
    font-size: 1.2rem;
  }
  .nav-left-col,
  .nav-right-col {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }
}
.index-body main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.index-body .main-content {
  font-weight: 200;
  font-size: 24px;
}
.index-body .main-content img {
  width: 400px;
  height: 400px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .index-body .main-content img {
    width: 80%;
    height: auto;
  }
  .index-body .main-content {
    font-size: 18px;
  }
}
.menu-page main {
  flex: 1;
  background: #fff;
  color: #000;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
.menu-category-select {
  text-align: center;
  margin: 40px 0;
}
.cat-button {
  background: #f2f2f2;
  border: none;
  padding: 8px 15px;
  margin: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.cat-button:hover {
  background: #ddd;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.menu-item {
  background: none;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  border: #999 solid 0.5px;
}
.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}
.price {
  font-weight: 600;
  margin-top: 5px;
}
.price sup {
  font-size: 0.65em;
}
.tags {
  font-size: 0.8rem;
  color: #666;
  margin-top: 5px;
}
.tags i {
  margin-right: 5px;
  color: #666;
}
footer {
  background-color: #002664;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}
.standard-bar {
  height: 40px;
  background: #c9dcfa;
  color: #002664;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.standard-bar p {
  margin: 0 auto;
  font-size: 0.9rem;
  text-transform: uppercase;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 90%;
  text-align: center;
}
