* {
  margin: 0px;

}

.amenity-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1rem;
}

.navbar-toggler {
  border-color: #fff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28 255,255,255, 0.7 %29)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@keyframes flipLR {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes flipRL {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(-180deg);
  }

  100% {
    transform: rotateY(-360deg);
  }
}

.flip-right {
  animation: flipRL 4s linear infinite;
  transform-style: preserve-3d;
}

.flip-left,
.flip-right {
  width: 100%;
  border-radius: 12px;
}

.flip-left:hover {
  animation: flipLR 0.8s forwards;
}

.flip-right:hover {
  animation: flipRL 0.8s forwards;
}

.carousel-item img {
  max-height: 400px;
  object-fit: contain;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
video {
    width: 100%;
    height: auto;
    object-fit: cover;
}