/* Top banner */

.top-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 530px;
  padding-top: 90px;
  background: rgb(0 0 0 / 60%) url(../img/top-banner.jpg) center top no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.top-banner .container {
  position: relative;
  z-index: 3;
}

.bannerDetails {
  text-align: center;
  margin-top: -70px;
}

.bannerTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 0 0 10px;
}

.bannerTitle h1 {
  font-family: "metropolis1920";
  font-size: 80px;
  color: var(--clr-primary);
  letter-spacing: 20px;
  font-weight: normal;
}

.bannerSubTitle {
  font-size: 30px;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-weight: 100;
}

.searchFilter {
  background: var(--clr-darkLight);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 60px;
  border-radius: 10px;
  margin-top: -90px;
  position: relative;
  z-index: 5;
}

.reserveFormGroup {
  display: flex;
  gap: 20px;
}

.searchFilter button {
  width: 100%;
}

.select-item {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--clr-light);
  border: 1px solid var(--clr-primary);
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  min-height: 50px;
  background-image: url(../img/arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
  padding-right: 30px;
  background-color: transparent;
}

.select-item:focus {
  border: 1px solid var(--clr-primary);
}

.select-item option {
  color: var(--clr-dark);
  background-color: var(--clr-white);
}

.searchBrand {
  display: inline-flex;
  width: fit-content;
}

.searchBrand p {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.searchBrand p img {
  width: 30px;
}

/* Top banner end */


/* About Us */

.aboutImage-box {
  width: 85%;
  aspect-ratio: 1;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgb(0 0 0 / 60%);
}

.aboutImage-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery */

.GalleryContainer {
  display: flex;
  gap: 20px;
}

.GalleryBox-left,
.GalleryBox-right {
  flex: 1;
}

.gallery-imgGroup {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.imgbox_3 {
  width: 100%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  height: 310px;
}

.imgbox_1 {
  width: 60%;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
  height: 350px;
}

.imgbox_2 {
  width: calc(40% - 20px);
  border-radius: 20px;
  overflow: hidden;
}

.imgbox_4 {
  width: 60%;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-imgGroup-vertical {
  width: calc(40% - 20px);
  display: flex;
  flex-direction: column;
}

.GalleryBox-right {
  display: flex;
}

.galleryTitle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.galleryItem {
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.galleryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.imgbox_5 {
  width: 100%;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  height: 310px;
}

.galleryTitle h2 {
  font-size: 60px;
  font-family: "metropolis1920";
  color: var(--clr-primary);
  writing-mode: sideways-rl;
  margin: 0;
  position: relative;
  letter-spacing: 10px;
}

.galleryTitle h2:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 100px;
  background: var(--clr-primary);
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}

.galleryFlip {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.galleryItem:hover .galleryFlip {
  transform: rotateY(180deg);
}

.galleryFront,
.galleryBack {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.galleryBack {
  transform: rotateY(180deg);
}

/* Items Slider */

.itemImageBox {
  height: 545px;
}

.leftImgBox {
  width: 40%;
  height: 545px;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  top: 80px;
  box-shadow: 0 10px 40px rgb(0 0 0 / 60%);
}

.leftImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.itemSlider-container {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.itemSlider-info {
  width: 100%;
  padding-left: 40px;
  padding-right: 100px;
  margin-bottom: 25px;
}

.itemSwiper {
  margin-top: auto;
  margin-left: 40px;
  padding-right: 220px;
}

.sliderItemBox {
  height: 300px;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.sliderItemBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

/* video  */

.videoContainer {
  padding-top: 80px;
}

/* Contact */

.contact-section {
  background: var(--clr-darkLight);
}

.openingHours-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  margin-bottom: 30px;
}

.openingHours-info h6 {
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-transform: uppercase;
}

.timeBox h6 {
  text-transform: capitalize;
  color: var(--clr-primary);
}

.timeBox p {
  font-size: 14px;
  margin: 0;
}

.location-info h6 {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.location-info p {
  font-size: 14px;
  margin: 0 0 10px;
}

.contact-info {
  padding: 45px;
  background: var(--clr-white);
  border-radius: 20px;
  box-shadow: 0 5px 40px rgb(0 0 0 / 40%);
  margin-bottom: -160px;
  position: relative;
  z-index: 1
}

.contact-info h5 {
  text-align: center;
  margin: 0 0 20px;
  color: var(--clr-primary);
  font-weight: bold;
  font-family: "metropolis1920";
  letter-spacing: 3px;
  font-size: 24px;
}

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  color: var(--clr-light);
  border: 1px solid var(--clr-primary);
  border-radius: 4px;
  min-height: 50px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-primary);
}

.contact-info .select-item {
  color: var(--clr-dark);
}

/* Map */

.map-container {
  line-height: 0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  filter: brightness(0.5);
  transition: all 0.3s ease-in-out;
}

.map-container iframe:hover {
  filter: brightness(1);
}