/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.swiper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Banner Text Styles */
.banner-text {
  text-align: center;
  color: white;
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  height: 132%;
  display: flex;
  place-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.banner-text h1 {
  font-weight: 700;
  font-size: 60px;
  font-style: italic;
  font-family: "Poppins", sans-serif;
  line-height: 120%;
}
.swiper {
    height: 85vh;
  }

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.banner-text h4 {
  margin: 0px 15px 0 0;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}


.banner-text p {
  font-weight: 400;
    font-size: 24px;
    font-family: "Poppins", sans-serif;
    line-height: 140%;
    margin: 15px 0 !important;
}

.banner_button a {
  /* margin-top: 23px; */
  padding: 15px 33px;
  text-decoration: none;
  background: #e3010f;
  color: #fff;
  border-radius: 25px 25px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
  /* transform: scale(1); */
  width: 100%;
  height: 100%;
  display: flex
;
}

.banner_button a span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fa-arrow-right-long {
  transform: translateX(14px);
  transition: all .3s linear;
}

.fa-circle {
  font-size: 20px;
}

.banner_button a:hover .fa-arrow-right-long {
  transform: translateX(28px);
}


.banner-text h3 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  color: #e5e5e5;
  font-weight: 500;
}

/* Styling for Reservation Form */
.reservation-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
  background-color: #ffffff54;
  margin-top: 30px;
  border-radius: 62px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  width: 84%;
  backdrop-filter: blur(20px);
}

/* Flexbox Layout */
.reservation-form form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

/* Form Elements Styling */
.reservation-form label {
  margin-right: 10px;
  font-size: 16px;
}

.reservation-form input,
.reservation-form select {
  padding: 10px;
  margin: 10px 15px 10px 0;
  font-size: 16px;
  border-radius: 31px;
  border: 1px solid #fff;
  width: 200px;
  color: #fff;
  background: transparent;
}

.reservation-form button {
  background: #ffc89a;
  padding: 16px 66px;
  border-radius: 23px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  display: inline-block;
  /* Ensures proper scaling */
  transform: scale(1);
  outline: none;
  border: none;
}

.reservation-form button:hover {
  background: #000;
  color: #fff;
  transform: scale(0.9);
  /* Shrinks the button to 90% of its size */
}


@media (max-width: 768px) {
  .reservation-form form {
    flex-direction: column;
    align-items: flex-start;
  }

  .reservation-form label,
  .reservation-form input,
  .reservation-form select,
  .reservation-form button {
    width: 100%;
    margin: 5px 0;
  }
}

/* Swiper Styles */
.swiper-container {
  width: 100vw;
  height: 105vh;
}

.swiper-slide {
  background-color: #fcfcfc;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fcfcfc;
  font-size: 24px;
}

.swiper-slide>.swiper-slide-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50% /cover;
}



.swiper-slide .slide-01 {
  background-image: url(../images/banner1.jpg);
  transform-origin: 50% 50%;
}

.swiper-slide .slide-02 {
  background-image: url(../images/banner2.jpg);
  transform-origin: 50% 50%;
}

.swiper-slide .slide-03 {
  background-image: url(../images/banner3.jpg);
  transform-origin: 50% 50%;
}

.swiper-slide .slide-04 {
  background-image: url(../images/banner4.jpg);
  transform-origin: 50% 50%;
}



.swiper-scale-effect .swiper-slide-cover {
  transition-timing-function: linear;
  transition-duration: 20s;
  transform: scale(1);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.3);
}

:root {
  --swiper-pagination-bottom: 40px;
  --swiper-theme-color: rgba(252, 252, 252, 0.85) !important;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #FCFCFC;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #262626;
}

.swiper-button-prev,
.swiper-button-next {
  background: transparent;
  opacity: 0.55;
  --swiper-navigation-color: rgba(252, 252, 252, 0.85);
  transition: opacity 0.3s ease, color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: transparent;
  opacity: 0.85;
  --swiper-navigation-color: #fcfcfc;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px)) !important;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px)) !important;
  box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
  background: var(--swiper-pagination-bullet-inactive-color, rgba(252, 252, 252, 0.85)) !important;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.55) !important;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}

.swiper-pagination-bullet-active {
  box-shadow: inset 1px 1px 1px rgba(38, 38, 38, 0.85);
  background: var(--swiper-pagination-bullet-active-color, rgba(252, 252, 252, 0.85)) !important;
  opacity: var(--swiper-pagination-bullet-active-opacity, 0.85) !important;
  --swiper-pagination-bullet-horizontal-gap: 10px;
}

/* Overlay for slides */
.swiper-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.349);
  /* Black overlay with transparency */
  z-index: 1;
  pointer-events: none;
  /* Ensures the overlay does not block interaction */
}

.swiper-slide-content {
  position: relative;
  z-index: 2;
  /* Ensures text appears above the overlay */
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}


@media only screen and (max-width:1500px) {}

@media only screen and (max-width:1400px) {}

@media only screen and (max-width:960px) {
  .banner-text p {
      font-size: 24px;
      margin: 15px 50px !important;
  }
}
@media only screen and (max-width:700px) {
  .banner-text {
      height: 100%;
  }
}
@media only screen and (max-width:470px) {

  .banner-text {
      height: 109%;
  }

}