@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;

}

.booking__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.booking__container {
  width: 100%;
  margin: 10px auto;
  text-align: center;
  z-index: 9999;
  /* display: none; */
}

.image-section {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slideshow 12s infinite;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slideshow {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0);
  }
}

.close_icon {
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 10px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.form-section {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 5px;
  /* display: flex;
  flex-direction: column;
  align-items: center; */

}

.form-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.form-row input {
  width: 98%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background-color: #f5f5f5;
  /* text-align: center; */
}

.form-row select {
  width: 98%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  background-color: #f5f5f5;

}

.cta-button {
  background-color: #4A148C;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* display: block; */
  margin: 0 auto;
  
}

.cta-button:hover {
  background-color: #6A1B9A;
}
.spinner__booking {
  display: none;
  font-size: 2rem;
  color: #4A148C;
  animation: spin 1.5s linear infinite; 
}


@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


@media(width > 768px) {
  .booking__container {
    max-width: 45%;
    margin: 50px auto;
  }
  .image-section{
    height: 400px;
  }
  .form-section {
    padding: 10px 20px;
  }

  .form-row {
    flex-direction: row;
  }
}