/* ========================= 
    ANIMATIONS & TRANSITIONS
========================== */

/* Fade In Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.slide-in-up {
  animation: slideInUp 0.6s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.mobile-bounce {
  animation: bounce 2s infinite;
}

/* Button Group Animation */
.button-group {
  animation-delay: 0.4s;
}

/* Service Card Animations */
.service-card-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.service-card-item:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card-item:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card-item:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card-item:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card-item:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card-item:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card-item:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card-item:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card-item:nth-child(9) {
  animation-delay: 0.9s;
}
.service-card-item:nth-child(10) {
  animation-delay: 1s;
}
.service-card-item:nth-child(11) {
  animation-delay: 1.1s;
}
.service-card-item:nth-child(12) {
  animation-delay: 1.2s;
}

/* Menu Item Animations */
.menu-item-animate {
  animation: slideInUp 0.6s ease-out forwards;
}

/* Award Card Animations */
.award-card {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.award-card:nth-child(1) {
  animation-delay: 0.1s;
}
.award-card:nth-child(2) {
  animation-delay: 0.2s;
}
.award-card:nth-child(3) {
  animation-delay: 0.3s;
}
.award-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth Hover Effects */
.hpiconbox {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hpiconbox:hover {
  transform: translateY(-5px);
}

.btn-fill,.btn-fill-white,
.btn-outline {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-fill:before,.btn-fill-white:before,
.btn-outline:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-fill:hover:before,.btn-fill-white:hover:before,,
.btn-outline:hover:before {
  width: 300px;
  height: 300px;
}

.menu-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
  transform: translateX(8px);
}

.menu-item img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover img {
  transform: scale(1.05);
}

/* Chef Image Zoom */
.chef-image-zoom {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chef-image-zoom:hover {
  transform: scale(1.02);
}

/* CTA Icon Animation */
.cta-icon {
  animation: bounce 3s infinite;
}

/* Navigation Link Hover Effect */
.hp-webheader .hp-leftmenu ul li a.hplink,
.hp-webheader .hp-rightmenu ul li a.hplink {
  position: relative;
  transition: color 0.3s ease;
}

.hp-webheader .hp-leftmenu ul li a.hplink::after,
.hp-webheader .hp-rightmenu ul li a.hplink::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.hp-webheader .hp-leftmenu ul li a.hplink:hover::after,
.hp-webheader .hp-rightmenu ul li a.hplink:hover::after {
  width: 100%;
}

/* Carousel Animation */
.carousel-container {
  animation: fadeIn 0.8s ease-out;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Section Entrance Animations */
section {
  animation: fadeIn 0.6s ease-out;
}

/* Loading state */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
