/* 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=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=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Banner Text Styles */
.banner-text {
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 30px;
  font-family: "Inter", sans-serif;
  position: absolute;
  bottom: 30%;
  width: 100%;
  z-index: 2;
    left: 0;
}

.banner-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 100px;
  line-height: 140%;
  font-weight: 300;
  padding: 0 !important;
  text-align: center;
  text-transform: uppercase;
}

.banner-text h6{
  font-size: 24px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    font-family: "Inter", sans-serif;
    padding: 5px 0px;
    margin: 10px 30px;
}

.banner-text h2{
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 140%;
  font-weight: 400;
  padding: 0 !important;
}

.banner-text span {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-size: 100px;
  font-weight: 700;
}

.banner-text h3 {
  font-size: 22px;
  font-family: "Inter", 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: "Inter", 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: 100%;
  height: 100vh;
}

.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;
}

body {
  text-align: center;
}

.swiper-slide .slide-01 {
  background-image: url(../images/banner.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-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: transparent;
  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 :1600px) { 
  
  .banner-text {
    bottom: 16%;
    left: 0%;
  }
}


@media only screen and (max-width :1400px) { 
  
  .banner-text {
    bottom: 5%;
  }
}

@media only screen and (max-width:1150px){
  .banner-text h1 {
    font-size: 68px;
  }
  .banner-text span {
    font-size: 71px;
  }
}

@media only screen and (max-width :1000px) {
  .banner-text {
      bottom: 1%;
      left: 0%;
  }

  .vertical-text h2 {
    font-size: 71px;
}
}

@media only screen and (max-width:700px){
  .banner-text h1 {
    font-size: 54px;
    
  }

  .banner-text span {
    font-size: 54px;
}

.banner-text {
  bottom: 11%;

}
}

@media only screen and (max-width:500px) {
  .banner-text span {
    font-size: 47px;
}

  .banner-text h1 {
      font-size: 48px;
  }

  .banner-text {
    bottom: 17%;
}   

.vertical-text {
  display: none;
}
}


@media only screen and (max-width:400px) {
  .banner-text h1 {
    font-size: 40px;
}
.banner-text span {
  font-size: 36px;
}  
}