body {
  background: linear-gradient(135deg, #f8f4e9 0%, #fff8ee 100%);
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

.card {
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.15);
  transition: all 0.3s ease;
  border-radius: 16px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 0, 0, 0.25);
}

.btn-link {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.btn-link:hover {
  transform: scale(1.02);
  border-color: #daa520;
}

.btn-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-link:hover::before {
  left: 100%;
}

.pulse {
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
  }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.bg-pattern {
  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='%238B0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.menu-category {
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-category:hover {
  background-color: rgba(139, 0, 0, 0.05);
  transform: translateY(-2px);
}

.menu-category.active {
  background-color: rgba(139, 0, 0, 0.1);
  border-left: 4px solid #8b0000;
}

.menu-item {
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.02);
  background-color: #fff9f0;
}

.menu-modal {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dish-image {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

.badge {
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
