/* Global Styles */
* {
  box-sizing: border-box;
}

/* Root Variables */
:root {
  --color-background: #181e1c;
}

/* Body */
body {
  background-color: var(--color-background);
  background-image: url("/assets/img/bg.png");
  background-size: 4rem;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  padding: 1.5rem 2rem 0px 2rem;
}

.header .title {
  color: white;
  font-size: 2rem;
  margin: 0;
}

.header .title .img {
  width: 1.7rem;
  height: 1.7rem;
}

/* Menu */
.menu {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  height: 100%;
  padding: 1.5rem 0px 2rem 2rem;
}

/* Menu Item */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
  flex-shrink: 0;
}

.menu-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.menu-item .body {
  height: fit-content;
}

.menu-item .body .title {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--color-background);
}

.menu-item .body .price {
  width: auto;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-background);
  padding: 1rem;
  border: 0.1rem solid var(--color-background);
  border-radius: 8px;
  text-align: center;
  margin: 0;
}

/* Detail */
.body .detail {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 8px;
}

.body .detail img {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.8;
}

/* Button Styles */
.btn {
  padding: 24px 16px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-filled {
  background-color: var(--color-background); /* Default primary color */
  color: #fff;
  border: none;
}

.btn-outlined {
  background-color: transparent;
  color: #3498db;
  border: 2px solid #3498db; /* Matches the primary color */
}

.btn:hover {
  filter: brightness(1.1);
}

.btn-outlined:hover {
  background-color: #3498db;
  color: #fff;
}

/* Full Screen Button */
#fullScreenBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 0.8rem;
  border: none;
}

#fullScreenBtn img {
  width: 1.5rem;
  height: 1.5rem;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

::-webkit-scrollbar-track {
  background: transparent;
}

/* Media Queries */
@media (max-width: 400px) {
  .menu-item {
    width: 300px;
  }
}
