/* menu.css - Native Speisekarte Styles */

/* Base Native Menu Styles */
.native-menu-section {
  background: var(--color-bg-dark, #181818);
  padding-bottom: 80px;
}

/* Category Sticky Nav */
.category-nav-wrapper {
  position: sticky;
  top: 80px; /* Offset for main site header */
  z-index: 100;
  background: rgba(24, 24, 24, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 151, 77, 0.15);
  padding: 15px 0;
}

.category-nav__list {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1200px;
}

.category-nav__list::-webkit-scrollbar {
  display: none;
}

.category-nav__link {
  display: inline-flex;
  padding: 8px 16px;
  color: rgba(217, 217, 217, 0.65);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid rgba(184, 151, 77, 0.15);
  border-radius: 4px;
  background: rgba(40, 40, 40, 0.4);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.category-nav__link:hover, .category-nav__link--active {
  color: #b8974d;
  border-color: #b8974d;
  background: rgba(184, 151, 77, 0.1);
}

/* Menu Sections */
.menu-sections-wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section {
  scroll-margin-top: 160px; /* Accounts for main header + sticky nav */
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.menu-section__title {
  color: #b8974d;
  font-size: 2.5rem;
  font-family: var(--font-heading, "Cormorant Garamond", serif);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.menu-section__subtitle {
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Grid for Items */
.menu-section__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .menu-section__items {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(194, 156, 61, 0.1);
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.menu-item:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 156, 61, 0.4);
}

.menu-item__accent {
  width: 2px;
  background: linear-gradient(180deg, #b8974d, transparent);
  border-radius: 2px;
  opacity: 0.7;
}

.menu-item__body {
  flex: 1;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 10px;
}

.menu-item__name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.menu-item__price {
  background: rgba(194, 156, 61, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(194, 156, 61, 0.2);
  white-space: nowrap;
}

.menu-item__price-value {
  color: #b8974d;
  font-weight: 600;
}
.menu-item__price-value::before {
  content: "€ ";
}

.menu-item__description {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Groups */
.menu-section__group {
  margin-top: 40px;
}
.menu-section__group-title {
  color: #b8974d;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(184, 151, 77, 0.3);
  padding-bottom: 5px;
  font-family: var(--font-heading, "Cormorant Garamond", serif);
}

.menu-section__notes {
  margin-top: 30px;
  padding: 15px 20px;
  background: rgba(194, 156, 61, 0.05);
  border-left: 2px solid #b8974d;
  list-style: none;
}
.menu-section__notes li {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-style: italic;
}
