* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
}

body {
  font-family: "Playfair Display", "Georgia", serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.8),
      rgba(212, 175, 55, 0.1)
    ),
    url("../media/menu.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content {
  text-align: center;
  padding: 40px;
  max-width: 600px;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: #d4af37;
  animation: fadeInUp 1.5s ease;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1.5s ease 0.3s both;
}

/* Menu Sections */
.menu-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

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

.section-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #d4af37;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.7);
  text-align: center;
  margin-bottom: 60px;
  font-style: italic;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.menu-category {
  margin-bottom: 80px;
  padding: 50px;
  background: linear-gradient(
    145deg,
    rgba(245, 245, 245, 0.05),
    rgba(212, 175, 55, 0.02)
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.category-icon {
  font-size: 2.5rem;
  color: #d4af37;
  margin-right: 20px;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 300;
  color: #d4af37;
  letter-spacing: 1px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.menu-item {
  padding: 25px;
  background: rgba(245, 245, 245, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.item-name {
  font-size: 1.4rem;
  font-weight: 400;
  color: #f5f5f5;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.item-japanese {
  font-size: 1rem;
  color: #d4af37;
  font-style: italic;
  opacity: 0.8;
}

.item-price {
  font-size: 1.3rem;
  color: #d4af37;
  font-weight: 400;
  letter-spacing: 1px;
}

.item-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.8);
  font-weight: 300;
  margin-bottom: 10px;
}

.item-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 0.8rem;
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-weight: 300;
}

.special-section {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  margin: 60px 0;
  padding: 60px 50px;
  border-radius: 25px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

.special-section::before {
  content: "特別";
  position: absolute;
  top: -15px;
  left: 30px;
  background: #0a0a0a;
  color: #d4af37;
  padding: 5px 15px;
  font-size: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
}

.chef-recommendation {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.chef-badge {
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  color: #0a0a0a;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dietary-info {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  background: rgba(245, 245, 245, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.dietary-info h4 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.dietary-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

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

.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .menu-category {
    padding: 30px 25px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .category-icon {
    margin-right: 0;
  }

  .item-header {
    flex-direction: column;
    gap: 10px;
  }

  .dietary-legend {
    flex-direction: column;
    gap: 15px;
  }

  .hero-section {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 60px 20px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .menu-category {
    padding: 20px 15px;
  }

  .special-section {
    padding: 40px 25px;
  }
}

/* Scrollbar para navegadores basados en Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffdb70, #d4af37);
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #0a0a0a;
}
