@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap");

@import "tailwindcss";

body {
  font-family: "Playfair Display", serif;
}

.font-algerian {
  font-family: "Algerian", "Playfair Display", serif;
}

[x-cloak] {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background-color: #009e3d !important;
}

/* 
.mySwiperFeatured .swiper-pagination-bullet-active{
  background-color: #009e3d !important;
} */
.swiper-button-next,
.swiper-button-prev {
  width: 20px;
  height: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dropdown-content li a:hover {
  color: #009e3d;
}

.dropdown-content li a {
  color: #fff;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee2 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.animate-marquee2 {
  animation: marquee2 25s linear infinite;
}

@keyframes heartbeat-slow {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-heartbeat-slow {
  animation: heartbeat-slow 4s ease-in-out infinite;
  border: 2px solid #009e3d;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6);
  }

  70% {
    box-shadow: 0 0 0 25px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.animate-pulse-glow {
  background-color: #ef1010;
  animation: pulse-glow 2s infinite;
  border: 1px solid #ef1010;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  cursor: no-drop;
}

input[type="number"] {
  -moz-appearance: textfield;
  cursor: no-drop;
}

/* 
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
} */

.snap-start {
  scroll-snap-align: start;
} 