body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F9FA;
  color: #212529;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

.home-section {
  background-image: url('./../recipeBg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2.5px);
}

.search-bar {
  transition: all 0.3s ease;
}

.search-bar:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recipe-card {
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recipe-image {
  transition: all 0.3s ease;
}

.recipe-card:hover .recipe-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.heart-animation {
  transition: all 0.3s ease;
}

.heart-animation.active {
  color: #FF7F50;
  transform: scale(1.2);
}

.shake {
  animation: shake 0.5s;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.loading-dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #FF7F50;
  border-radius: 50%;
  animation: pulse 1.5s infinite ease-in-out;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: 0.3s;
}

.loading-dots .dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.modal {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

/* .form-input:invalid {
        border-color: #dc3545;
    } */

.pagination-btn {
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(.disabled) {
  background-color: #FF7F50;
  color: white;
}

.recipe-modal-content {
  max-height: 80vh;
  overflow-y: auto;
}