@font-face {
  font-family: "Vend Sans";
  src: url("../fonts/Vend_Sans/VendSans-VariableFont_wght.ttf")
    format("truetype");
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-50vh) scale(1.1);
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) scale(0.9);
    opacity: 0;
  }
}

/* Layout */
body {
  background: #f4f4f4;
  font-family: "Montserrat", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fondo burbujas */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.bubbles span {
  position: absolute;
  bottom: -50px;
  width: 10px;
  height: 10px;
  background: rgba(255, 87, 34, 0.6);
  border-radius: 50%;
  animation: bubble 12s linear infinite;
}
.bubbles span:nth-child(1) {
  left: 10%;
  animation-duration: 9s;
}
.bubbles span:nth-child(2) {
  left: 30%;
  animation-duration: 11s;
}
.bubbles span:nth-child(3) {
  left: 50%;
  animation-duration: 13s;
}
.bubbles span:nth-child(4) {
  left: 70%;
  animation-duration: 10s;
}
.bubbles span:nth-child(5) {
  left: 90%;
  animation-duration: 12s;
}

/* Header */
.menu-header {
  text-align: center;
  padding: 40px 20px 20px;
}
.menu-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ff5722;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease forwards;
}
.menu-header p {
  font-size: 1rem;
  color: #555;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* Lista */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-list li a {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.menu-list li:nth-child(1) a {
  animation-delay: 0.3s;
}
.menu-list li:nth-child(2) a {
  animation-delay: 0.5s;
}
.menu-list li:nth-child(3) a {
  animation-delay: 0.7s;
}

.menu-list li a:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.menu-list h2 {
  font-size: 1.2rem;
  color: #ff5722;
  margin-bottom: 6px;
}
.menu-list p {
  font-size: 0.95rem;
  color: #555;
}

/* Footer */
.menu-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #444;
}
