@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f9f9f9;
  position: relative;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFA500, #ecb959);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease-out;
}
.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.loading-screen .logo-container {
  text-align: center;
  animation: pulse 2s infinite;
}
.loading-screen .logo-container .creative-logo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  box-shadow: 0 0 2px whitesmoke;
  margin-bottom: 1rem;
}
.loading-screen .logo-container .loading-text {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  animation: fadeInOut 1.5s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.floating-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floating-bg .floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float linear infinite;
  will-change: transform;
  --x: 50%;
  --y: 50%;
  --delay: 0s;
  --duration: 10s;
  left: var(--x);
  top: var(--y);
  animation-delay: var(--delay);
  animation-duration: var(--duration);
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
.search-container {
  position: relative;
  max-width: 400px;
  margin: 1rem auto 2rem;
  display: flex;
}
.search-container #search-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search-container #search-input:focus {
  outline: none;
  border-color: #FFA500;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}
.search-container #search-input::-moz-placeholder {
  color: #999;
}
.search-container #search-input::placeholder {
  color: #999;
}

.menu-section {
  padding: 2rem 0;
  background-color: #f9f9f9;
}
.menu-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.menu-section p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}
.menu-section .menu-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.menu-section .menu-filters .filter-btn {
  background-color: transparent;
  color: #333333;
  border: 1px solid #ddd;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.menu-section .menu-filters .filter-btn.active {
  background-color: #FFA500;
  color: #ffffff;
  border-color: #FFA500;
}
.menu-section .menu-filters .filter-btn:hover {
  background-color: #FFA500;
  color: #ffffff;
}
.menu-section .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.menu-section .menu-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.menu-section .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.menu-section .menu-item.compact .item-info {
  padding: 1rem;
}
.menu-section .menu-item.compact .item-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.menu-section .menu-item.compact .item-info .price {
  font-size: 1.1rem;
  margin-bottom: 0;
}
.menu-section .menu-item.compact .item-info .ingredients,
.menu-section .menu-item.compact .item-info .description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  opacity: 0;
}
.menu-section .menu-item.compact .item-info.expanded .ingredients, .menu-section .menu-item.compact .item-info.expanded .description {
  max-height: 200px;
  opacity: 1;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #eee;
}
.menu-section .menu-item.compact img {
  height: 150px;
}
.menu-section .menu-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-section .menu-item .item-info {
  padding: 1.5rem;
}
.menu-section .menu-item .item-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.menu-section .menu-item .item-info .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFA500;
  margin-bottom: 1rem;
}
.menu-section .menu-item .item-info .ingredients {
  list-style: none;
  margin-bottom: 1rem;
}
.menu-section .menu-item .item-info .ingredients li {
  color: #666;
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}
.menu-section .menu-item .item-info .ingredients li::before {
  content: "•";
  color: #FFA500;
  font-weight: bold;
  position: absolute;
  left: 0;
}
.menu-section .menu-item .item-info .description {
  color: #555;
  margin-bottom: 1rem;
  font-style: italic;
}

@media (max-width: 1024px) {
  .menu-section {
    padding: 1rem 0;
  }
  .menu-section h1 {
    font-size: 2rem;
  }
  .menu-section .menu-filters {
    gap: 0.5rem;
  }
  .menu-section .menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .menu-section .floating-element {
    font-size: 1.5rem;
  }
  .menu-section .creative-logo {
    width: 150px;
    height: 150px;
  }
  .menu-section .search-container {
    flex-direction: column;
  }
  .menu-section .search-container #search-input {
    border-radius: 8px;
    margin-bottom: 0.5rem;
  }
}/*# sourceMappingURL=styles.css.map */