/* ============================================
   MENU PAGE - LUXURY VIP DESIGN
   Premium bottle service menu with gold accents
   ============================================ */

/* Page Base */
.menu-page {
  background: #0a0a0a;
  color: #f5f5f5;
  min-height: 100vh;
}

/* Hero Section */
.menu-hero {
  position: relative;
  padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 30% 20%,
      rgb(212 175 55 / 15%) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 80%,
      rgb(212 175 55 / 10%) 0%,
      transparent 50%),
    #050505;
  overflow: hidden;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.menu-hero__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light, #e8c75e);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: rgb(212 175 55 / 10%);
  border: 1px solid rgb(212 175 55 / 30%);
  border-radius: 999px;
}

.menu-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 50%, #f3d27d 100%);
  background-clip: text;
  color: transparent;
}

.menu-hero__description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
  color: rgb(255 255 255 / 75%);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.menu-btn--primary {
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 50%, #f3d27d 100%);
  color: #000;
  box-shadow: 0 8px 30px rgb(243 210 125 / 40%);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.menu-btn--primary:hover {
  box-shadow: 0 12px 40px rgb(243 210 125 / 60%);
  background: linear-gradient(135deg, #ffe4a6 0%, #f3d27d 50%, #ffe4a6 100%);
  text-decoration-thickness: 2px;
}

.menu-btn--ghost {
  background: rgb(255 255 255 / 5%);
  color: rgb(255 255 255 / 90%);
  border: 1px solid rgb(255 255 255 / 20%);
}

.menu-btn--ghost:hover {
  background: rgb(255 255 255 / 10%);
  border-color: rgb(243 210 125 / 50%);
}

/* Category Tabs - Fixed without sticky issues */
.menu-tabs {
  background: rgb(10 10 10 / 98%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding: 1.5rem 0;
  margin-bottom: 4rem;
}

.menu-tabs__inner {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.menu-tabs__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgb(255 255 255 / 5%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  color: rgb(255 255 255 / 80%);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.menu-tabs__button:hover {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(243 210 125 / 30%);
  color: #fff;
}

.menu-tabs__button.is-active {
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 50%, #f3d27d 100%);
  border-color: rgb(243 210 125 / 50%);
  color: #000;
  box-shadow: 0 6px 24px rgb(243 210 125 / 40%);
}

.menu-tabs__button svg {
  width: 18px;
  height: 18px;
}

/* Menu Categories */
.menu-section {
  padding: 0 0 5rem;
}

.menu-category {
  margin-bottom: 5rem;
  animation: fade-in-up 0.6s ease both;
}

.menu-category__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgb(212 175 55 / 20%);
}

.menu-category__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgb(212 175 55 / 10%);
  border: 2px solid rgb(212 175 55 / 30%);
  border-radius: 12px;
}

.menu-category__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 50%, #f3d27d 100%);
  background-clip: text;
  color: transparent;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Menu Cards */
.menu-card {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  background: rgb(15 15 15 / 95%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-card:hover {
  border-color: rgb(243 210 125 / 50%);
  box-shadow: 0 12px 40px rgb(243 210 125 / 20%);
  background: rgb(20 20 20 / 98%);
}

.menu-card.is-featured {
  border-color: rgb(243 210 125 / 60%);
  background: linear-gradient(145deg, rgb(25 25 25 / 95%), rgb(15 15 15 / 95%));
}

.menu-card__badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 100%);
  color: #000;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgb(243 210 125 / 30%);
  z-index: 10;
}

.menu-card__image-wrapper {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-card__image {
  transform: scale(1.08);
}

.menu-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.menu-card__size {
  font-size: 0.9rem;
  color: rgb(255 255 255 / 85%);
  margin-bottom: 1rem;
}

.menu-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.menu-card__amount {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 100%);
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.menu-card__currency {
  font-size: 0.85rem;
  color: rgb(255 255 255 / 85%);
}

/* VIP Packages Section */
.menu-vip {
  padding: 5rem 0;
  background: linear-gradient(135deg,
      rgb(20 20 20 / 98%) 0%,
      rgb(10 10 10 / 98%) 50%,
      rgb(20 20 20 / 98%) 100%);
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.menu-vip__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.menu-vip__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 50%, #f3d27d 100%);
  background-clip: text;
  color: transparent;
}

.menu-vip__description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgb(255 255 255 / 70%);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.menu-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.menu-package {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgb(12 12 12 / 90%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-package:hover {
  border-color: rgb(243 210 125 / 40%);
  box-shadow: 0 16px 48px rgb(0 0 0 / 50%);
  background: rgb(15 15 15 / 95%);
}

.menu-package.is-featured {
  border: 2px solid rgb(243 210 125 / 60%);
  box-shadow: 0 16px 48px rgb(243 210 125 / 30%);
  background: linear-gradient(145deg, rgb(25 25 25 / 95%), rgb(12 12 12 / 95%));
}

.menu-package__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 100%);
  color: #000;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgb(243 210 125 / 40%);
}

.menu-package__title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-gold, #d4af37);
  margin-bottom: 1.5rem;
  text-align: center;
}

.menu-package__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.menu-package__features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: rgb(255 255 255 / 75%);
  line-height: 1.6;
}

.menu-package__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-gold, #d4af37);
  font-weight: 700;
}

.menu-package__price {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(135deg, #f3d27d 0%, #ffe4a6 100%);
  background-clip: text;
  color: transparent;
}

.menu-vip__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer Note */
.menu-footer-note {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.menu-footer-note p {
  color: rgb(255 255 255 / 60%);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.menu-footer-note p:last-child {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (width <=1024px) {
  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (width <=768px) {
  .menu-hero {
    padding: clamp(6rem, 12vw, 8rem) 0 clamp(3rem, 6vw, 4rem);
  }

  .menu-tabs__inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .menu-tabs__inner::-webkit-scrollbar {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .menu-packages {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    width: 100%;
  }
}

@media (width <=480px) {
  .menu-card {
    flex-direction: column;
    text-align: center;
  }

  .menu-card__image-wrapper {
    width: 100%;
    height: 150px;
  }

  .menu-tabs__button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Animation */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-category:nth-child(2) {
  animation-delay: 0.1s;
}

.menu-category:nth-child(3) {
  animation-delay: 0.2s;
}

.menu-category:nth-child(4) {
  animation-delay: 0.3s;
}