* {
  /* border: 1px solid red; */
}
.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.carattere-regular {
  font-family: "Carattere", cursive;
  font-weight: 400;
  font-style: normal;
}
.glassmorphism {
  background: rgba(255, 255, 255, 0.1); /* Transparent White */
  border-radius: 15px;
  backdrop-filter: blur(10px); /* Blurred Background */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light Border */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft Shadow */
  padding: 20px;
  text-align: center;
  color: white;
}

.cinzel-regular {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.search_panel {
  background-color: #fafafa;
}

.about_card {
  background-color: #f2f2f2;
}
.about_card::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 88%;
  height: 10px;
  background: rgb(0 0 0 / 64%);
  border-radius: 50%;
  filter: blur(7px);
  transform: translateX(-50%);
  z-index: -1;
}
.radial-blur-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px; /* Adjust as needed */
  height: 250px;
  background-color: #fffff0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(8px); /* Creates the blur effect */
  z-index: -1; /* Sends it behind the text and icon */
}

.amenities .amenities_item {
  cursor: pointer;
}
.fl-fl {
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 4px;
  width: 165px;
  position: fixed;
  right: -127px;
  font: 10px Arial;
  transition: 0.5s ease;
  z-index: 2;
}
.float-fb {
  top: 300px;
  background: gray;
}
.float-in {
  top: 350px;
  background: gray;
}

.fl-fl:hover {
  right: 0;
}
.book-btn {
  transition: all 0.3s ease-in-out;
  animation: pulse 0.8s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.7);
    scale: 1.1;
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 0, 0, 1);
    scale: 1.2;
  }
  100% {
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.7);
    scale: 1.1;
  }
}
.bstyle {
  animation: shadow-pulse 0.8s infinite;
  font-size: x-large;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(2, 75, 212, 0.925);
  }

  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
}

.slide-left {
  opacity: 0;
  transform: translateX(90%);
}

.slide-right {
  opacity: 0;
  transform: translateX(-90%);
}

.width-20 {
  width: 20%;
}

@media (max-width: 575.98px) {
  .width-20 {
    width: 100%;
  }
}
