* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 76px;
  font-style: normal;
}

h2 {
  font-size: 44px;
  font-style: normal;
}

h3 {
  font-size: 34px;
  font-style: normal;
}

h4 {
  font-size: 26px;
  font-style: normal;
}

h5 {
  font-size: 22px;
  font-style: normal;
}

h6 {
  font-size: 18px;
  font-style: normal;
}

:root {
  --Cinnamon-Red: #c04b0c;
  --black: #1d1d1d;
  --gray: #515151;
  --light-gray: #9c9c9c;
  --cream: #e5d5c8;
  --peach-shade: #f6ebe1;
  --light-cream: #fcf3ec;
  --light-color: #fcfcfc;
  --black-shade: #111111;
  --footer-backg: #100601;
  --white: #ffffff;
  --golden:#C5AB51;

  --Cinzel-regular: Cinzel-regular;
  --Cinzel-medium: Cinzel-medium;
  --Cinzel-semi-bold: Cinzel-semi-bold;
  --Cinzel-bold: Cinzel-bold;
  --GFS-Didot: GFS-Didot;
  --lucida-writing: lucida-writing;
  --LufgaMedium:LufgaMedium;
}

@font-face {
  font-family: "lucida-writing"; /* Name for the font */
  src: url("../hotel-pics/writing/Lucida-Handwriting/lucidahandwriting_italic.ttf");
}

@font-face {
  font-family: "Cinzel-regular"; /* Name for the font */
  src: url("../hotel-pics/Cinzel/static/Cinzel-Regular.ttf");
}

@font-face {
  font-family: "Cinzel-medium"; /* Name for the font */
  src: url("../hotel-pics/Cinzel/static/Cinzel-Medium.ttf");
}

@font-face {
  font-family: "Cinzel-semi-bold"; /* Name for the font */
  src: url("../hotel-pics/Cinzel/static/Cinzel-SemiBold.ttf");
}

@font-face {
  font-family: "Cinzel-bold"; /* Name for the font */
  src: url("../hotel-pics/Cinzel/static/Cinzel-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GFS-Didot"; /* Name for the font */
  src: url("../hotel-pics/GFS_Didot/GFSDidot-Regular.ttf");
}

@font-face {
  font-family: "lucida-writing"; /* Name for the font */
  src: url("../hotel-pics/writing/Lucida-Handwriting/lucidahandwriting_italic.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LufgaMedium"; /* Name for the font */
  src: url("../hotel-pics/lugfa/LufgaMedium.ttf");
}

/* Header Section Styling */
.header-section {
  background: rgba(17, 24, 48, 0.1); /* Semi-transparent background color */
  backdrop-filter: blur(10px); /* Apply a blur effect to the background */
  -webkit-backdrop-filter: blur(15px); /* Safari-specific blur effect */
  position: fixed;/* Positioning the header absolutely */
  width: 100%; /* Full width of the container */
  z-index: 99; /* Ensures the header is above other elements */
}

.header-section {

  top: 0;
  left: 0;
  z-index: 1000;
  transition: top 0.5s ease-in-out; /* Smooth animation */
}

/* Hide Navbar with animation */
.hidden {
  top: -100px; /* Moves navbar out of view */
}

/* Logo Styling */
.hotel-navbar-logo-img {
  object-fit: cover; /* Ensures the logo image covers the container without distortion */
  object-position: center; /* Centers the image */
  width: 80px; /* Fixed width for the logo */
  height: 80px; /* Fixed height for the logo */
}

/* Home Title Styling */
.home-title {
  color: var(--light-color) !important; /* White text color */
  font-size: 18px; /* Font size */
  font-family: var(--GFS-Didot); /* Font family from CSS variable */
}

.for-padding-home-title {
  padding-left: 180px; /* Adds left padding to the home title */
}

/* Hover effect for the home title */
.home-title:hover {
  font-weight: bold; /* Makes the title bold on hover */
}

/* About Title Styling */
.about-title {
  color: var(--light-color) !important; /* White text color */
  font-size: 18px; /* Font size */
  font-family: var(--GFS-Didot); /* Font family from CSS variable */
}

/* Hover effect for the about title */
.about-title:hover {
  font-weight: bold; /* Makes the about title bold on hover */
}

/* Padding adjustment for the about title */
.for-padding-about-title {
  padding-left: 20px; /* Adds left padding to the about title */
}

/* Book Now Link Styling in Header */
.book-now-link-header-part {
  background: var(--Cinnamon-Red); /* Background color from CSS variable */
  color: var(--light-color); /* White text color */
  font-size: 16px; /* Font size */
  font-family: var(--GFS-Didot); /* Font family from CSS variable */
  padding-top: 12px; /* Adds top padding */
  padding-bottom: 12px; /* Adds bottom padding */
  padding-left: 25px; /* Adds left padding */
  padding-right: 25px; /* Adds right padding */
}

.header-section .navbar-toggler-icon {
  background-color: var(--white);
}

.header-section .navbar-toggler {
  border: 1px solid white !important;
}

.header-section .dropdown-menu .dropdown-item:hover {
  background: var(--Cinnamon-Red);
  color: var(--light-color);
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

/* Dropdown Styling in Navbar (if applicable) */
.header-section.nav-link .dropdown:hover {
  display: block; /* Shows dropdown on hover */
}

.parent-container {
  height: 900px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;

  z-index: -1;
}

#yt-player {
  width: 100%;
  height: 100%; /* Set a fixed height */
  position: relative;
}

/* parent-container */
.content {
  position: absolute;
  z-index: 1;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  background: transparent;
  align-items: center;
  width: 100%;
  height: 100%;

  background: rgba(11, 11, 11, 0.2);
}

.Stay-Beyond-Expectation {
  line-height: 80px;
  align-items: center;
  text-align: center;
  color: var(--light-color) !important;
  font-family: var(--Cinzel-regular);
  font-size: clamp(20px, 10vw, 64px);
  font-weight: 400;
}

/* vedio-player-section */

.booking-registration-container-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--peach-shade);
}

/* Style the calendar icon */

.calendar-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.check-in-bottom-box {
  border: 2px solid var(--cream);
  background: var(--light-color);
  display: flex;
  justify-content: space-around;

  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
}

.Date-Check-In {
  font-family: var(--GFS-Didot);
  font-size: 14px;
  color: var(--Cinnamon-Red);
}

.check-in-title {
  font-family: var(--GFS-Didot);
  font-size: 16px;
  font-weight: 400;
  color: var(--light-gray);
  text-align: center;
  margin-top: 5px;
}

.date-picker-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between input and icon */
  position: relative;
}

/* Style the input field */
.calendar-input {
  border: none;
  font-size: 16px;
  color: var(--Cinnamon-Red);
  font-family: var(--GFS-Didot);
  cursor: pointer;
  padding-right: 30px; /* Space for the icon */
  width: 120px;
}

/* Remove outline when clicked */
.calendar-input:focus {
  border: 0;
}

.room-title {
  font-size: 16px;
  font-family: var(--lugfa-medium);
  color: var(--steal-blue);
  font-weight: 500;
}

.room-counter {
  border: 2px solid var(--cream);
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;

  background: var(--light-color);
  align-items: center;
}

.room-input {
  width: 80px;
  text-align: center;
  font-size: 20px;
  border: 0;

  padding: 5px;

  font-family: var(--GFS-Didot);
  color: var(--gray);
}

.room-btn {
  font-size: 16px; /* Increase icon size */
  width: 24px; /* Adjust button width */
  height: 24px; /* Adjust button height */
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--Cinnamon-Red);
  color: var(--Cinnamon-Red);
  border-radius: 50%;
  padding-bottom: 5px;
}

.room-btn.minus {
  font-size: 27px; /* Make minus sign larger */
}

.room-btn.plus {
  font-size: 27px; /* Make minus sign larger */
}

.room-btn:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--light-color);
}

.book-now-link-for-registration-form {
  color: var(--light-color);
  background: var(--Cinnamon-Red);
  font-size: 16px;
  font-family: var(--GFS-Didot);

  text-align: center;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 40px;
  padding-right: 40px;

  display: inline-block;
  margin-top: 26px;
}

/* booking-registration-container-section */

.Experience-Exclusive-Resort-section {
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 80px;
}

.img-of-home-swimming-poll {
  width: 100%;
  height: 640px;
  background-size: cover;
  background-position: center;
}

.play-icon-box {
  width: 100%;
  height: 100%;
  background: rgba(35, 34, 34, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon {
  width: 94px;
  height: 94px;
  object-fit: cover;
  object-position: center;
}

.Experience-Our-Exclusive-Resort {
  padding: 20px;
}

.Experience-Our-Exclusive-Resort-topic {
  font-size: clamp(18px, 8vw, 45px);
  color: var(--black-shade);
  font-family: var(--Cinzel-regular);
}

.Experience-Our-Exclusive-Resort p {
  color: var(--gray);
  font-size: clamp(12px, 4vw, 18px);
  font-family: var(--GFS-Didot);
}

.thousand-plus {
  color: var(--Cinnamon-Red);
  font-family: var(--Cinzel-regular);
  font-size: clamp(18px, 6vw, 42px);
}

.counting-number {
  text-align: center;
  position: relative;

}

.counting-number:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 38%;
  transform: translateY(-50%);
  width: 1.7px;
  height: 80%; /* Adjust as needed */
  background-color: var(--cream); /* Match text color */
}

.Discover-More-button-box {
  background: var(--Cinnamon-Red);
  display: inline-block;
  padding-top: 16px;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
}

.Discover-More-button {
  font-size: clamp(12px, 3vw, 16px);
  font-family: var(--GFS-Didot);
  color: var(--light-color);
}

/* Experience-Exclusive-Resort-section */

.Luxury-Rooms-Suites {
  font-size: clamp(18px, 8vw, 44px);
  font-family: var(--Cinzel-regular);
  color: var(--black-shade);
  padding-bottom: 20px;
  padding-left: 0;

}

.Where-elegance-meets {
  font-size: clamp(12px, 4vw, 19px);
  color: var(--gray);
  font-family: var(--GFS-Didot);
  padding-left: 0px;
  padding-bottom: 0px;
}


.contain-of-the-bed-decroption{
  bottom: 0;
  position: absolute;
}


.abv{
 height: 600px;
  overflow: hidden;
  position: relative;
}

.mySwiper{
  overflow:  visible !important;
}

.mySwiper-Luxury-Rooms-Suites{
  height:750px;

  padding-top: 80px;
}


.abv img{
  width: 100%;
  height: 600px;
  object-fit: cover;

}
.slider_hh{
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  
}
.mySwiper-Luxury-Rooms-Suites  .swiper-slide-next {
  transform: translateY(-50px) !important;
}


.deluxe-family-room{
  color: var(--white);
  font-size: 24px;
  font-family: var(--GFS-Didot);
}


.price-of-room{
  color: var(--white);
  font-size: 24px;
  font-family: var(--GFS-Didot);
}

.per-night{
  font-size: 14px;
  font-family: var(--GFS-Didot);
  color: var(--light-gray);

}

.boder{
  border: 1px solid rgb(229, 213,200,0.8);
}

.star-icon{
  display: flex;
  gap: 10px;
}

.star-icon img{
width: 24px;
height: 24px;
object-fit: cover;
object-position: center;
}

.bed-room-detail{
padding-top: 20px;
  display: flex;
  justify-content:space-between ;
}

.bed-room-per-person h6{
  color: var(--white);
  font-size: 14px;
  font-family: var(--GFS-Didot);
}

.bed-room-per-person{
  display: flex;
  gap: 10px;
}




.bed-room-per-person img{
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  filter: sepia(1) saturate(0) brightness(1.2) contrast(1);
}



.separator {
  height: 20px; /* Adjust height */
  width: 1px;
  background-color:var(--light-cream); /* Adjust line color */
  margin: 0 15px; /* Adjust spacing */
}

.mySwiper-Luxury-Rooms-Suites .swiper-pagination-bullet {
  width: 10px;  /* Circle size */
  height: 10px;
  background-color: #E5D5C8; /* Inactive bullet color */
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mySwiper-Luxury-Rooms-Suites .swiper-pagination-bullet-active {
  width: 20px; /* Elongated active bullet */
  height: 8px;
  border-radius: 10px; /* Smooth edges */
  background-color:var(--Cinnamon-Red); /* Active bullet color */
}



.mySwiper-Luxury-Rooms-Suites-for-mobile{
  display: none;
}

.container-swipper{
  overflow: hidden;

}

.Luxury-Rooms-Suites-section{
  padding-top: 80px;
  padding-bottom: 80px;
  background:var(--peach-shade) ;
}


.dicounted-price{
  color: var(--light-gray);
  font-size: 16px;
  font-family: var(--GFS-Didot);

}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color:var(--white);
  font-size: 14px;

  padding:8px 15px;

  z-index: 10;
  font-family: var(--Cinzel-regular);
}


.view-more-luxury-room-box {
  display: inline-flex;
  justify-content: center;
  text-align: center;
}

.view-more-luxury-room {
  background: var(--Cinnamon-Red);
  color: var(--light-color);
  font-size: clamp(12px, 3vw, 16px);
  font-family: var(--GFS-Didot);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 40px;
}
/* Luxury-Rooms-Suites-section */
.Highlighted-Amenities-section{
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--light-cream);
}

.gym-img-facilities{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Highlighted-Amenities-topic-col{
  padding-right: 40px;
}


.Highlighted-Amenities-topic{
  font-family: var(--Cinzel-regular);
  font-size: clamp(18px, 8vw, 44px);
  color: var(--black);
padding-bottom: 40px;
}

.border-facilities{
  border-left: 4px solid var(--Cinnamon-Red);
  padding-left: 20px;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;

}

.facilities-detail h4{
  font-family: var(--GFS-Didot);
  font-size: clamp(17px, 2vw, 24px);
  color: var(--gray);
}

.facilities-detail h6{
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  padding-top: 5px;
}

.view-more-facilities{
  gap: 20px;
display: flex;
align-items: center;
}

.view-more-facilities h6{
  color: var(--Cinnamon-Red);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
}

.view-more-facilities img{
width: 24px;
height: 24px ;
object-fit: cover;
object-position: center;
margin-top: -5px;

}


.boder-facilites{
  border: 1px solid rgb(229, 213,200,0.8);
  margin-top: 20px;
}

.swimming-pool-box-faci{
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  padding-left: 20px;
}


.swimming-pool-box-faci h6{
font-family: var(--GFS-Didot);
font-size: clamp(17px, 2vw, 24px);
color: var(--gray);
}

.swimming-pool-box-faci img{
  width: 24px;
height: 24px ;
object-fit: cover;
object-position: center;
align-items: center;
}


/* Highlighted-Amenities-section */

.Luxury-Service-Unparalleled-Comfort-section{
  padding-top: 80px;
  padding-bottom: 80px;
  background:var(--peach-shade) ;
}

.Luxury-Service{
  color: var(--black);
  font-family: var(--Cinzel-regular);
  font-size: clamp(28px, 5vw, 44px);
  padding-bottom: 20px;
}

.hall-img{
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
  padding: 10px;
}

.Luxury-Service-para{
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  font-family: var(--GFS-Didot);
  padding-top: 20px;
  padding-left: 10px;
}

.Memories-topic{
  color:var(--black);
  font-size: clamp(28px, 5vw, 44px);
  font-family: var(--Cinzel-regular);
  text-align: center;
}

.Memories-para{
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
  color: var(--gray);
  padding-bottom: 40px;
}

.swipper-img-memories-slide{

  background-position: center;
  background-size: cover;
  height: 500px;
  width:100% ;
  position: relative;
  background-repeat: no-repeat;
 
}

.overlay-box-text{
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.5));
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 20px;
 
}

.for-text{
  position: absolute;
  bottom: 20px;
}

.for-text h4{
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 24px);
  color: var(--light-color);



}

.for-text h6{
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  color: white;
}


.row-of-swipper-memories{
  overflow: visible  ;
 

}


.mySwiper-Memories-Unforgettable-Events-mobile{
  display: none;
}

/* Luxury-Service-Unparalleled-Comfort-section */

.Memories-Unforgettable-Events-section{
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--light-cream);
}


/* Memories-Unforgettable-Events-section */



.Client-Reviews-section{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
  position: relative;

}

.overlay-box-for-client{
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,#000000,#00000080);
 
}

.client-container{
  padding-top: 100px;

}


.client-review-col h2{
  color: var(--white);
  font-size: clamp(28px, 5vw, 42px);
  font-family: var(--Cinzel-regular);
}



.client-review-col h6{
  color: var(--white);
  font-size: clamp(16px, 2vw, 19px);
  font-family: var(--GFS-Didot);
  padding-top: 10px;
}


.rating-star-review{
  display: flex;
  gap: 10px;
  padding-top: 40px;
}

.rating-star-review img{
  width: 22px;
  height: 22px;
  object-fit: cover;
  object-position: center;

}

.trust-score-para{
  color: var(--white);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  padding-top: 15px;
}

.review-detail-of-clents {
  position: relative;
  width: 90%;
height: 100%;
padding: 20px;
margin-left: 50px;

  background: rgba(255, 250, 250, 0.2); /* Semi-transparent background */
  backdrop-filter: blur(18px); /* Apply blur effect */
 
  box-shadow: 0 4px 6px rgba(123, 122, 122, 0.1); /* Optional: Shadow for better visibility */
}

.rating-star-for-client-review-hotel{
  display: flex;
  gap: 10px;
}

.rating-star-for-client-review-hotel img{
  width: 20px;
  height: 20px;
  object-fit: cover;
  object-position: center;
}


.what-client-said{
  color: var(--white);
  font-size: clamp(16px, 2vw, 20px);
  font-family: var(--GFS-Didot);
  padding-top: 20px;
}

.border-line-for-para{
  border: 1px solid rgb(203, 203, 203,0.5);
  
  width: 100%;
}

.client-introduction{

  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.client-with-img{

  display: flex;
  gap: 20px;
}

.client-with-img h6{
  font-size: clamp(16px, 2vw, 20px);
  font-family: var(--GFS-Didot);
  color: var(--light-color);
}

.client-with-img p{
  color: var(--light-gray);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
}


.client-with-img img{
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}


.prev-next-button-client-review{
  padding-top: 50px;
  width: 120px;

  position: absolute;
  right: 10px;
}

.prev-next-button-client-review  .swiper-button-next,
.prev-next-button-client-review  .swiper-button-prev{
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}


.prev-next-button-client-review  .swiper-button-prev{
  border: 1px solid var(--white);
}

.prev-next-button-client-review  .swiper-button-next::after,
.prev-next-button-client-review  .swiper-button-prev::after

{
  font-size: 25px;
  color: var(--white);
}



/* Client-Reviews-section */

.background-of-Reserve-Your-Stay-section{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 80px;

}

.image-of-celebration-box{
  display: flex;
  justify-content: center;
}

.image-of-celebration{
  object-fit: cover;
  object-position: center;
  width: 60%;
  height:264px;
}

.image-of-balcony-box{
  padding-left: 60px;
}

.image-of-balcony{
  object-fit: cover;
  object-position: center;
  width: 50%;
  height: 260px;
}

.hotel-pictures{
  width: 100%;
  height:180px;
  object-fit: cover;
  object-position: center;
  margin-top: 40px;
}

.hotel-pictures--two{
  width: 220px;
  height:207px;
  object-fit: cover;
  object-position: center;
  margin-top: -10px;
  margin-left: -50px;
}

.Reserve-Your-Stay-Today-topic{
  color: var(--black);
  font-size: clamp(28px, 5vw, 42px);
  font-family: var(--Cinzel-regular);
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.book-now-link-stay{
  background: var(--Cinnamon-Red);
  color: var(--white);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  width: max-content;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;
}

.book-now-link-stay-box{
  display: flex;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.wedding-hall-image{
  object-fit: cover;
  object-position: center;
  width: 85%;
  height: 270px;
  margin-top: -20px;
  margin-left: 40px;
}

.swimming-pool-hotel-image{
  object-fit: cover;
  object-position: center;
  width: 90%;
  height: 180px;
  margin-left: 10px;
  margin-top: 20px;
}

.Gathering-ladies-img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 180px;
  margin-top: -30px;
}



/* background-of-Reserve-Your-Stay-section */

.footer-section {
  background: var(--footer-backg);
  padding-top: 0px;
  padding-bottom: 80px;
}

.upper-part {
  padding-top: 20px;
  border-bottom: 1px solid rgba(156, 156, 156, 0.5);
  padding-bottom: 20px;
}

.footer-logo-img {
  object-fit: cover;
  object-position: center;
  width: 100px;
  height: 100px;
}

.icon-collection {
  display: flex;
  gap: 15px;

  justify-content: flex-end;
}

.twitter-logo {
  color: var(--light-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  padding: 15px;
  background: var(--black-shade);
}

/* footer-first-row */

.sign-up {
  color: var(--light-color);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  font-style: normal;
  padding-bottom: 20px;
}

.form-floating {
  position: relative; /* Allows absolute positioning of the icon inside the container */
}

.form-control-sign-up {
  height: 65px !important;
  border-radius: 0;
  padding-right: 60px; /* Space for the icon */
}

.telegram-icon-box {
  background: var(--footer-backg);
  color: var(--light-color);
  width: 55px;
  height: 55px;
  position: absolute;
  right: 10px; /* Position icon at the right */
  top: 50%; /* Center it vertically */
  transform: translateY(-50%); /* Fine-tune vertical alignment */
  display: flex;
  justify-content: center;
  align-items: center;
}

.telegram-icon-size {
  width: 19px;
  height: 19px;
}

.Enter-email-address {
  font-family: var(--lora-regular);
  font-weight: 400;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: left;
  margin-top: 5px;
  margin-left: 10px;
  display: block;
  color: var(--gray);
}

.Copyright-comp {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 80px;
}

.location-direction {
  color: var(--light-color);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
  padding-top: 40px;
  font-weight: 500;
}

/* border-line-cursor-for-location */

.get-direction-box {
  display: flex;
  gap: 10px;
  text-align: center;
  align-items: center;
  padding-top: 10px;
}

/*style get-direction-box */

.get-direction {
  color: var(--light-gray);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  font-weight: 400;
}

/* style get-direction */

.arrow-left {
  color: var(--light-gray);
  font-size: 16px;
  margin-top: -10px;
}

/* style-arrow-left */

.border-get-direction {
  border: 1px solid var(--light-gray);
  width: 50%;
}

/* Sign up for Exclusive Offers */

.Quick-links {
  color: var(--light-color);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  padding-bottom: 10px;
}

.Quick-links-col {
  list-style: none;
  margin-left: -30px;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.home-quicks-link {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  line-height: 40px;
}

/* Quick-links-div */

.contents-vedio {
  margin-top: 40px;

  list-style: none;
}

.contents-vedio-list {
  margin-left: -30px;

  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400px;
  font-style: normal;
  list-style: none;

  line-height: 40px;
}

/* contents-vedio  */

.Get-in-Touch {
  color: var(--light-color);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600px;
  font-style: normal;
  line-height: 23px;
}

.location-intro {
  display: flex;
  gap: 10px;
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  padding-top: 15px;
}

.company-email {
  display: flex;
  gap: 10px;
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
}

.contact-number-footer {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  font-style: normal;
  line-height: 25px;
}
/* 
footer */
/* home-page-complete */



/* about-page  */

.background-image-of-service-page {
  width: 100%;
  height: 550px;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* background-image-of-service-page */

.black-box {
  width: 100%;
  height: 100%;
  background:black;
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
/* black-box */

.our-service-page-slide-container {
  position: absolute;
}

/* our-service-page-slide-container */

.who-we-are {
  color: var(--white);
  text-align: center;
  margin-top: 200px;
  font-family: var(--Cinzel-regular);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 42px);
  font-style: normal;
}
/* 
who-we-are */

.home-who-we-are-box {
  display: flex;
  justify-content: center;
  width: 200;
}

/* home-who-we-are-box */

.home-link-who-we-are {
  color: var(--white);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

/* home-link-who-we-are */

.who-we-are-word {
  list-style: disc;
  margin-left: 30px;
  color: var(--white);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

/* who-we-are-word */




.Indulge-in-the-Luxury-You-Deserve-section {
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 40px;
}

.Indulge-in-the-Luxury-You-Deserve {
  color: var(--black);
  font-family: var(--Cinzel-regular);
  font-size: clamp(28px, 5vw, 44px);
}

.Indulge-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;

}

.Indulge-in-the-Luxury-1st-part {
  display: flex;
  margin-top: 40px;
  gap: 40px;
}

.Located-at-seaside {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 19px);
  padding-left: 20px;
}

.Indulge-in-the-Luxury-2nd-part {
  border-left: 5px solid var(--Cinnamon-Red);

  height: 25%;

  padding-bottom: 10px;
  padding-top: 10px;
  width: 100%;
  
}

.A-place-that-offers {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 20px);
  font-style: normal;
  padding-left: 20px;
}

.Leonardo-P {
  padding-top: 20px;
  font-family: var(--GFS-Didot);
  padding-left: 20px;
  font-size: clamp(18px, 3vw, 24px);
  color: var(--Cinnamon-Red);
}

.Hotel-Manager {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  padding-left: 20px;
  font-size: clamp(12px, 1.5vw, 14px);
}

.couple-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;

}

.your-top-priority-logo {
  width: 220px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  position: relative;
  margin-left: -100px;
  margin-top: -240px;
}
/* Indulge-in-the-Luxury-You-Deserve-section */


.Our-Purpose-and-Principles-section {
  background:var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Our-Purpose-and-Principles-img {
  width: 100%;
  min-height: 100%; /* Ensuring it has height */
  background-position: center;
  background-size: cover;
  position: relative;

}

.play-icon-box-about-page {
  position: absolute;
  background-color: rgba(31, 29, 29, 0.1);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon-about-page {
  color: var(--white);
  font-size: 90px;
}

.Our-Purpose-and-Principles-box {
  padding-left: 40px;
  padding-top: 20px;
}

.Our-Purpose-and-Principles {
  color: var(--black);
  font-family: var(--Cinzel-regular);
  font-size: clamp(16px, 5vw, 40px);
  padding-bottom: 20px;
}

.Step-into {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

.Book-Now-our-purpose {
  color: var(--white);
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  background: var(--Cinnamon-Red);
  text-align: center;
width: max-content;
  margin-top: 30px;

}

/* Our Purpose and Principles section */


.Meet-Our-Leadership-Team-section {
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Meet-Our-Leadership-Team {
  color: var(--black);
  font-size: clamp(16px, 5vw, 42px);
  font-family: var(--Cinzel-regular);
  text-align: center;
  padding-bottom: 40px;
}


.border-out-team-box {
  display: flex;
  justify-content: center;
}

.border-out-team {
  width: 50px;
  border: 2px solid var(--steal-blue);
}

.women-in-blue-shirt-img-box {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;

}

.Dianne-Russell {
  color: var(--white);
  font-family: var(--GFS-Didot);
  text-align: left;
  padding-left: 20px;
  font-size: clamp(18px, 3vw, 24px);
  margin-top: 400px;
  position: relative;
  background-color: rgba(70, 68, 68, 0.2);
  display: inline-flex;
}

.ceo-word {
  color: var(--white);
  font-family: var(--GFS-Didot);
  text-align: left;
  font-style: normal;
  padding-left: 22px;
  font-size: clamp(14px, 1.5vw, 16px);
  background-color: rgba(70, 68, 68, 0.2);
  display: inline-block;
}

.image-box {
  background: rgba(34, 34, 34, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* 
Meet Our Leadership Team */

.get-off-offer-section {
  display: flex;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 650px;
}

.shape-img {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.offer-box-tranparent {
  width: 100%;
  height: 100%;
  background-color: rgba(17, 16, 16, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  text-align: center;
}

.Weekend-Special {
  text-align: center;
  color: var(--white);
  font-family: var(--lucida-writing);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 600px;
  font-style: italic;
  margin-top: 135px;
  padding-bottom: 20px;
}

.Get-Up-To-offer {
  font-family: var(--Cinzel-regular);
  font-size: clamp(30px, 8vw, 64px);
  text-align: center;
  color: var(--white);
}

.book-now-box-offer {
  font-family: var(--GFS-Didot);
  background: var(--Cinnamon-Red);
  color: var(--white);
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: clamp(14px, 1.5vw, 16px);
  display: inline-block;
  margin-top: 50px;
}

/* Get Up To 30% Off on Booking */



/*complete-about-page */



.Make-Your-Stay-Memorable-section {
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
 
}

.Make-Your-Stay-Memorable {
  font-family: var(--Cinzel-regular);
  color: var(--black);
  text-align: center;
  font-size: clamp(16px, 5vw, 42px);
  padding-bottom: 20px;
}

.wifi-col-background {
  background:var(--light-cream);
  padding: 40px;
  height: 320px;

 
}

.router-img-box {
  display: flex;
  justify-content: center;
}

.router-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  
}

.High-Speed-Wifi {
  color: var(--black);
  font-family: var(--GFS-Didot);
  text-align: center;
  font-size: clamp(14px, 2vw, 18px);
  padding-top: 20px;
}

.Upgrading-your-bandwidth-is-easy-and-it-can-be-para {
  color: var(--gray);
  text-align: center;
  font-family: var(--GFS-Didot);
  text-align: center;
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 5px;
  padding-bottom: 10px;
}

.breakfast-para {
  color: var(--gray);
  text-align: center;
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 5px;
  padding-bottom: 30px;
}

/* Make-Your-Stay-Memorable-section */

/* our facilities-page */


.room-and-suite-section-section-room-page{
  background: var(--light-cream);
  padding-top: 130px;
  padding-bottom: 100px;
}

.row-room-img-suite-room-page{
  padding-top: 40px;
  padding-bottom: 40px;
}

.for-marging{
  margin-top: -40px;
}


/* room and suite-page */
/* room-and-suite-page-section */

/* room-page-complete */

/* restuarant-page */

.A-World-of-Flavors-Awaits-section {
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
;
}

.A-World-of-Flavors-Awaits-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 640px;
 
}

.A-World-of-Flavors-Awaits {
  font-family: var(--Cinzel-regular);
  font-size: clamp(18px, 5vw, 41px);
  color: var(--black);
  padding-bottom: 10px;


}

.A-World-of-Flavors-Awaits-para {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 19px);
}

.Day-Hours {
  font-family: var(--GFS-Didot);
  font-size: clamp(18px, 3vw, 24px);
  padding-top: 40px;
  color: var(--black);
}

.Breakfast-time {
  color: var(--gray);
  font-size: clamp(16px, 2vw, 19px);
  font-family: var(--GFS-Didot);
  text-align: center;
  
}

.clock-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
}

.time-of-breakfast {
  display: flex;
  gap: 10px;
padding-top: 30px;
padding-bottom: 20px;
}

.time-of-lunch {
  display: flex;
  gap: 10px;
}

.time-of-dinner{
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.A-World-of-Flavors-Awaits-part {
padding-top: 30px;
padding-left: 50px;
}

.read-more-a-world-of-Flavors {
  margin-top: 50px;
  display: inline-block;
  background: var(--Cinnamon-Red);
  color: var(--white);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;

}



/* A-World-of-Flavors-Awaits-section */



.Restaurant-Menu-section {
background-position: center;
background-size: cover;
  padding-top: 80px;
  padding-bottom: 30px;
  background: var(--peach-shade);
}


.Restaurant-Menu {
  font-family: var(--Cinzel-regular);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--black);
  text-align: center;
  padding-bottom: 30px;
}

.Breakfast-box.active {
  background-color: var(--Cinnamon-Red);
}

.Breakfast-box.active .Breakfast{
  color: var(--white);
}

.Breakfast-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 20px;

}

.Breakfast-box.active .Breakfast-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}

.Breakfast-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  margin-left: 25px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(0%) saturate(0%) hue-rotate(0deg);

}

.Breakfast {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 10px;
  text-align: center;
  
}

.Breakfast-box:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
}

.Breakfast-box:hover .Breakfast {
  color: var(--white);
}

.Breakfast-box:hover .Breakfast-icon {
  color: var(--white);
}




.Breakfast-box:hover .Breakfast-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Breakfast-box:hover .Breakfast {
  color: var(--white);
}
/* .Breakfast */




.Appetizers-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 30px;
  
}

.Appetizers-icon {
font-size: 40px;
object-fit: cover;
object-position: center;
  padding-left: 25px;
  filter: invert(33%) brightness(80%);

}

.Appetizers {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 10px;
  text-align: center;
}

.Appetizers-box:hover {
  background-color: var(--Cinnamon-Red);
}

.Appetizers-box:hover .Appetizers-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}

.Appetizers-box:hover .Appetizers {
  color: var(--white);
}

.Burgers-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Burgers-icon {
  font-size: 30px;
  padding-left: 25px;
  filter: invert(33%) brightness(80%);
}



.Burgers-box:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
}

.Burgers-box:hover .Burgers-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Burgers-box:hover .Breakfast {
  color: var(--white);
}

.Salads-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Salads-icon {
  color: var(--gray);
  font-size: 30px;
  padding-left: 20px;
  filter: invert(33%) brightness(80%);
}

.Salads-box:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
}





.Salads-box:hover .Salads-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Salads-box:hover .Breakfast {
  color: var(--white);
}

/* salad */

.Seafood-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Seafood-icon {
  padding-left: 20px;
  filter: invert(33%) brightness(80%);
}

.Seafood-box:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
}




.Seafood-box:hover .Seafood-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Seafood-box:hover .Appetizers {
  color: var(--white);
}
/* seafood */

.Mains-box {
  background:var(--cream);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Mains-icon {
  padding-left: 22px;
  filter: invert(33%) brightness(80%);
}

.Mains-box:hover {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
}



.Mains-box:hover .Mains-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Mains-box:hover .Breakfast {
  color: var(--white);
}

/* main */

.collapse-slider-container {
  min-height: 705px;
  z-index: 10;
}

.background-of-menu-list {
  background: var(--light-steal-color);
  border: 0;
  min-height: 500px;
}

.Southern-Fried-Chicken {
  color: var(--black);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 20px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.background-of-menu-list p {
  color: var(--gray);
  font-size: clamp(12px, 1.5vw, 14px);
  font-family: var(--GFS-Didot);
  margin: 5px 0 0;
}

.price-of-southern-fried-chicken {
  color: var(--Cinnamon-Red);
  font-family: var(--GFS-Didot);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(16px, 2vw, 20px);
}

.doted {
  flex-grow: 1;
  border-bottom: 1px dashed var(--light-gray);

}

.Restaurant-Menu-section-for-mobile {
  display: none;
}
/* Restaurant-Menu-section */






/* restuarant-page */





/* Elegant-Event-Hall-section */

.Elegant-Event-Hall-section {
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.Elegant-Event-Hall {
  color: var(--black);
  font-family: var(--Cinzel-regular);
  font-size: clamp(28px, 5vw, 44px);
  text-align: center;
}

.Elegant-Event-Hall-para {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  padding-top: 10px;
  font-family: var(--GFS-Didot);
}

.image-slider-container {
  padding: 0 !important;
}

.main-slider {
  padding: 0 !important;
}

.TOTAL-ACCOMMODATIONS-box-whole-part {
  padding-left: 50px;
}

/* Main Image Slider */
.image-slider {
  width: 100%;
  margin: 0;
  padding: 0 !important;
}

.large-slider-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
 

  padding: 0 !important;
}

/* Thumbnail Slider */
.thumbnail-slider {
  height: 130px;
margin-top: 5px;
}

.small-slider-image {
  width: 140px;
  height: 115px;
  object-fit: cover;
  
  padding: 5px !important;
}

/* Custom styling for the arrows */
.custom-prev,
.custom-next {
  background-color: var(--white);
  color: var(--Cinnamon-Red);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 20px);
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.custom-prev {
  left: 0px;
}
.custom-next {
  right: 0px;
}

/* Remove all transformations */
.small-slider-image {
  transform: none;
  opacity: 1;
}

.slick-list {
  padding: 0px !important;
  margin: 0;
}

.TOTAL-ACCOMMODATIONS {
  color: var(--gray);
  font-size: clamp(14px, 2vw, 17px);
  font-family: var(--GFS-Didot);
  word-spacing: 2px;
  font-weight: 400;
  font-style: normal;
}

.TOTAL-ACCOMMODATIONS-number {
  color: var(--Cinnamon-Red);
  font-family: var(--Cinzel-regular);
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500px;
  font-style: normal;
  font-size: clamp(28px, 5vw, 42px);
}

.TOTAL-ACCOMMODATIONS-box {
  border-bottom: 1px solid var(--golden);
  width: 350px;
}

.border-padding {
  padding-top: 30px;
  padding-left: 60px;
}

.TOTAL-AMENITIES-box {
  padding-top: 30px;
  border-bottom: 1px solid var(--golden);
  width: 350px;
}

.TOTAL-CONFERENCE-box {
  padding-top: 30px;
}

.TOTAL-CONFERENCE-ROOMS-number {
  color: var(--Cinnamon-Red);
  font-family: var(--Cinzel-regular);
  padding-top: 10px;
  padding-bottom: 20px;
  font-weight: 600px;
  font-style: normal;
  font-size: clamp(28px, 5vw, 42px);
}

/* General Table Styles */

.table-responsive{
  padding: 0;
}

.custom-table {
  width: 100%;
   margin: 0;
}

.custom-table table {
  border-radius: 50px;

}

.custom-table th{
  border-right: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream) ;
  text-align: start;
  padding-left: 20px;
  padding-bottom: 15px;
}
.custom-table td {
  border-right: 1px solid var(--cream);
  text-align: start;
  padding-left: 20px;
  padding-bottom: 15px;
}

.custom-table td {
background: var(--white);
font-family: var(--GFS-Didot);
font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  padding-top: 20px;
   border: 1px solid var(--cream);
}

.custom-table th {
  font-family: var(--LufgaMedium);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--black);
background: var(--peach-shade);


}

.custom-table th,
.custom-table td {
  padding-top: 20px;
}

.Amenities-That-Make-Every-Event-Remarkable-section {
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Amenities-That-Make-Every-Event-Remarkable {
  color: var(--black);
  font-family: var(--Cinzel-regular);
  font-size: clamp(28px, 5vw, 42px);
  text-align: center;
  
}

.Perfecting-Your-Gatherings-with-para {
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  text-align: center;
}

.Stationery-box {
  background: var(--light-cream);
  height: 120px;
  display: flex;
  color: var(--black);
  gap: 30px;
  padding-left: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 40px;


}

.book-icon {
  object-fit: cover;
  object-position: center;
  width: 64px;
  height: 64px;
}

.Stationery {
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 20px);
  padding-top: 25px;
color: var(--black);
  text-align: center;
}

.Water-Bottles {
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 20px);
  padding-top: 30px;
color: var(--black);
  text-align: center;
}

/* hall page */


/* photo-page start here */
.photo-gallery-section {
  background: var(--light-cream);
  padding-top: 80px;
}

.row-photo-topic {
  display: flex;
  gap: 10px;
}

.all-photogallery-click-button {
  background: transparent;
  display: inline-block;
  text-align: center;
  width: 155px;
  height: 40px;
  padding-top: 10px;
  color: var(--gray);

}

.all-photogallery-word {
  font-family: var(--GFS-Didot);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button {
  display: inline-block;
  text-align: center;
  width: 155px;
  height: 40px;
  padding-top: 10px;
  color: var(--gray);
  border: 1px solid var(--cream);

}

.Interior-photogallery-click-button:hover {
  background: var(--Cinnamon-Red);
  color: var(--white);
}

.photo-gallery-image-section {  
  padding-top: 40px;
  padding-bottom: 80px;
}

.all-photogallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;

}

.photo-gallery-section-mobile {
  display: none;
}

.photo-gallery-section-nest-hub {
  display: none;
}

.Interior-photogallery-click-button.active {
  background-color: var(--Cinnamon-Red); /* Highlight color for active category */
  color: var(--white);
}

/* photo-gallery-section */

 /* vedio-page */

 .vedio-page-all-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;


  display: flex;
  align-items: center;
  justify-content: center;
}



.play-vedio-icon {
  color: var(--white);
  font-size: 60px;
} 

/* vedio-gallery-page */


.Get-In-Touch-form-section {
  background: var(--light-cream);
   padding-top: 80px;
   padding-bottom: 80px;
   background-position: center;
   background-size: cover;
   
 }
 
 .Get-in-Touch-form-img {
   width: 100%;
   height: 660px;
   object-fit: cover;
   object-position: center;
   
 }
 
 .Get-In-Touch-topics-form-part {
   padding-top: 10px;
   padding-left: 50px;
 }
 
 .Get-In-Touch-topics-form {
   color:var(--black);
   font-family: var(--Cinzel-regular);
   font-size: clamp(28px, 5vw, 42px);
 }
 
 .Connect-with-Us-Anytime {
   color: var(--gray);
   font-family: var(--GFS-Didot);
   font-size: clamp(14px, 2vw, 18px);
 }
 
 
 .fill-your-name-form input::placeholder{
   color: var(--gray);
 }
 
 
 .fill-your-name {
   border: 0;
   border-radius: 0;
   height: 55px;
   width: 100%;
   background-color: var(--peach-shade);
 
 }
 
 
 .fill-email-address-row input::placeholder{
   color: var(--gray);
 }
 
 .messege-form-box textarea::placeholder{
   color: var(--gray) !important;
 }
 
 
 .fill-your-number {
   border-radius: 0;
   height: 55px;
   width: 100%;
   border: 0;
 
   background-color: var(--peach-shade);
 }
 
 .fill-your-name-form {
   padding: 10px;
   margin: 0;
 }
 
 .fill-email-address-row {
   border: 0;
   padding: 10px;
   
 }
 
 .fill-email-address {
   border-radius: 0;
   border: 0;
   height: 55px;

   background-color: var(--peach-shade);
 }
 
 .messege-form {
   height: 200px;
   border: 0;
   border-radius: 0;
   padding-top: 15px;
   padding-left: 15px;
   background-color: var(--peach-shade);
 }
 
 .messege-form-box {
   border: 0;
   padding-top: 12px;
 }
 
 .send-message-button {
   background:var(--Cinnamon-Red);
   color: var(--white);
   font-family: var(--GFS-Didot);
   font-size: clamp(14px, 1.5vw, 16px);
   font-weight: 400;
   font-style: normal;
   display: inline-block;
   padding-top: 18px;
   padding-bottom: 18px;
   padding-left: 40px;
   padding-right: 40px;
   margin-top: 20px;
 
 }
 
 /* 
 Get-In-Touch-form-section */
 
 .contact-page-information-section {
   background: var(--peach-shade);
   padding-top: 60px;
   padding-bottom: 60px;
 }
 
 .location-information-box {
   background: var(--light-cream);
   padding-top: 30px;
   padding-bottom: 30px;
 
   height: 327px;
   text-align: center;
 }
 
 .location-information-icon-box {
   width: 100px;
   height: 100px;
   text-align: center;
   border-radius: 50%;
 background: var(--cream);
   display: inline-block;
   justify-content: center;
   padding: 20px;
 }
 
 .location-information-icon {
   width: 60px;
   height: 60px;
   object-fit: cover;
   object-position: center;
 }
 
 .our-location-information {
   font-family: var(--GFS-Didot);
   text-align: center;
   font-style: normal;
   color: var(--black);
   font-size: clamp(16px, 2vw, 24px);
   padding-top: 30px;
 }
 
 .The-Queen-Walk-para {
   color: var(--gray);
   font-family: var(--GFS-Didot);
   font-size: clamp(14px, 1.5vw, 16px);
   text-align: center;
   padding-top: 10px;
 }
 
 .The-Queen-Walk-para-other {
   color: var(--gray);
   font-family: var(--GFS-Didot);
   font-size: clamp(14px, 1.5vw, 16px);
   text-align: center;
   margin-top: -10px;
 }
 
 .padding-contact-information-col {
   padding: 20px;
 }
 
 /* contact-page-information-section */
 
 /* contact-page */

 
.blog-section {
  padding-top: 20px;
  padding-bottom: 80px;
  background: var(--peach-shade);
}

.blog-first-col-img {
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog-details-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  position: absolute;
  z-index: 5;
  /* background: rgba(49, 46, 46,0.2); */
}

.blog-details {
  margin-bottom: 0px !important;
  width: 70%;
}

.blog-background-img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: 100% 100%;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 60px;
}

.blog-background-frame {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
}

.blog-background-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../hotel-pics/backgrd/Subtract12345.svg")
    no-repeat center center;
  background-size: 100%;
  z-index: 2;
}

.Crafting-Exceptional-Guest-Experiences-date {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 30px;
}

.Crafting-Exceptional-Guest-Experiences {
  font-family: var(--GFS-Didot);
  font-size: clamp(18px, 3vw, 22px);
  color: var(--black);
  padding-left: 30px;
}

.read-more-button-Crafting {
  display: flex;
  color: var(--Cinnamon-Red);
  gap: 10px;
  align-items: center;
  padding-left: 30px;
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 20px;
}

.arrow-icon-explore {
  padding-top: 2px;
}

/* insight-page */
 

/* Exploring the Local Gems Around Our Hotel page started here */

.Content-without-backward-compatible-data-section {
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Content-without-backward-compatible-data-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.Content-without-backward-compatible-data-written-data {
  background: var(--peach-shade);
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.peacefulqode-box {
  color: var(--light-gray);
  display: flex;
  gap: 10px;
}

.peacefulqode-box .icon{
  font-size: 18px;
}

.peacefulqode-box h6{
font-size: clamp(14px, 1.5vw, 16px);
font-family: var(--GFS-Didot);
text-align: center;
padding-top: 2px;
}

.long-established-fact {
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
}

.Content-without-backward-compatible-data {
  color: var(--black);
  font-family:var(--GFS-Didot);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  font-style: normal;
  padding-top: 40px;
}

.Michal-Smart {
  color: var(--Cinnamon-Red);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 20px);
  padding-top: 10px;
}

.Michal-Smart-infor {
  border-left:4px solid var(--Cinnamon-Red);
  padding-left: 20px;
  background: var(--light-cream);
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 30px;

}

.Economy-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 305px;
  margin-top: 20px;
  
}

.Lorem-ipsum-dolor-para {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  font-style: normal;

}

.tick-mark {
 object-fit: cover;
 object-position: center;
width: 32px;
height: 32px;

}

.Lorem-ipsum-dolor-box {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}

.Vivamus-eu-ligula {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}


.Vivamus-eu-ligula-another{
  display: flex;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.All-Insights-section-other{
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.All-Insights-topics{
  color: var(--black);
  text-align: center;
  font-size: clamp(28px, 5vw, 44px);
  font-family: var(--Cinzel-regular);
  padding-bottom: 40px;

}

/* Content-without-backward-compatible-data-section */

/* explore-blog-page-completed */




/* swimming-pool-page started-here */

.swimming-pool-page-second-section {
  background: var(--light-cream);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.children-swimming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Dive-into-relaxation {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 2vw, 19px);
}

.children-swimming-written {
  padding-top: 30px;
  padding-left: 40px;
}

.Spacious-Pool-box {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}


.Spacious-Pool {
  color: var(--gray);
  font-family:var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  padding-top: 2px;

}

.Luxurious-Poolside-Amenities-box {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

.wifi-col-background-other{
  background: var(--pictures-box-color);
  padding: 40px;
  height: 320px;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
}

.Make-Your-Stay-Memorable-section-swim{
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* swimming-pool-page-second-section */


/* Deluxe Rooms-page-started here */

.room-picture-section {
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.room-img-deluxe {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;

}

.small-img-of-room-deluxe {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;

}

.small-img-of-room-deluxe-sec {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  margin-top: 10px;

}

.deluxe-room-next-button::after {
  color: var(--black);
  display: flex;
  text-align: center;
  align-items: center;
  font-size: 20px;
}

.deluxe-room-next-button {
  width: 60px;
  height: 50px;
  background: var(--white);
  right: 0;
}

.deluxe-room-prev-button::after {
  color: var(--black);
  display: flex;
  text-align: center;
  align-items: center;
  font-size: clamp(16px, 2vw, 20px);
}

.deluxe-room-prev-button {
  width: 60px;
  height: 50px;
  background: var(--white);
  left: 0;
}

/* room-picture-section */

.About-Accommodation-section {
  background: var(--light-cream);
  padding-top: 60px;
  padding-bottom: 70px;
}

.About-Accommodation {
  color: var(--black);
  font-size: clamp(18px, 3vw, 24px);
  font-family: var(--Cinzel-regular);
}

.About-Accommodation-paragraph {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 20px;
}

.About-Accommodation-Facilities {
  color: var(--black);
  font-size: clamp(16px, 2vw, 24px);
  font-family: var(--GFS-Didot);
  padding-top: 20px;
  padding-bottom: 10px;
}

.king-size-bed-facilities {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  padding-top: 15px;
}

.bed-icon-deluxe {
  object-fit: cover;
  object-position: center;
  color: var(--gray);
  width: 30px;
  height: 30px;
  margin-top: 10px;
}



.facilities-bed-size-view {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 60px;
  padding-top: 5px;
  padding-left: 40px;
  border: 2px solid var(--cream);

}

.Reservation-part {
  background: var(--peach-shade);
  padding: 40px;
  border-radius: 10px;
}

.Reservation-topic {
  font-size: clamp(4px, 5vw, 44px);
  color: var(--black);
  font-family: var(--Cinzel-regular);
}




.dollar-three-two-zero {
  font-size: clamp(4px, 5vw, 44px);
  color: var(--black);
  font-family: var(--Cinzel-regular);
}

.per-night-reservation {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(4px, 5vw, 22px);
  padding-top: 15px;
}

.Reservation-book-now-button {
  background-color: var(--Cinnamon-Red);
  color: var(--white);
  text-align: center;
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}

/* Add your custom styles here if needed */
.calender-for-checkin {
  border: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
}

.rservbox {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--light-gray);
  padding: 15px;
  margin: 20px 0;

  color: var(--gray);
}

.rservbox .rbox span {
  cursor: pointer;
}

.rservbox .rbox p {
  margin: 0;
}

.rservbox .rbox input {
  visibility: hidden;
  width: 0;
  height: 0;
}

.down-arrow {
  font-size: 10px;
}

/* reservbox */

.number-of-room-booking {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--light-gray) !important;
  text-align: center;
  padding-left: 15px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--gray);
margin-top: 20px;
}

.number-of-room {
  margin-top: 7px;
}

.quantity-input {
  display: inline-flex;
  align-items: center;
}

.quantity-input .qty {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  border: none;
  outline: none;
  color: var(--light-gray);

}

.quantity-input button {
  background: transparent;
  border: 0;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-gray);
  
}

.quantity-input button:focus {
  outline: none;
}

.qty {
  background: transparent;
}

/* number-of-room-booking */

.Extra-Services {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--black);
  font-family: var(--LufgaMedium);
  padding-top: 30px;
  padding-bottom: 20px;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}

.well-quantity-input {
  display: flex;
  align-items: center;
}

.minus-plus-person-box {
  display: flex;
  align-items: center;
  color: var(--light-gray);
  font-size: clamp(18px, 3vw, 22px);
  margin-top: 10px;
}

.minus-plus-person-box #qty {
  color: var(--light-gray);
  font-size: clamp(14px, 2vw, 18px);
  padding-left: 10px;
  width: 50px;
}

.minus-plus-person-box .minus,
.minus-plus-person-box .plus {
  font-size: clamp(18px, 3vw, 22px);  /* Increase the size as needed */
  width: 20px; /* Adjust button width */
  height: 20px; /* Adjust button height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
  color: var(--light-gray);
}

.well-quantity-input input {
  width: 30px;
  text-align: center;
  background-color: transparent;
  border: 0;
}

.well-quantity-input button {
  background-color: transparent;
  border: 2px solid var(--light-gray);
  text-align: center;
  width: 16px;
  height: 16px;
  font-size: clamp(8px, 2vw, 10px);
  cursor: pointer;
  border-radius: 50%;
}

.controls {
  display: flex;
  align-items: center;
}

.control {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.control input {
  margin-right: 15px;
  transform: scale(2);
}

.controls input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  appearance: none; /* Remove default styles */
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */
  width: 15px;
  height: 15px;
  background-color: transparent !important; /* Green color when checked */
  border: 1px solid var(--light-gray) !important;
}

.controls input[type="checkbox"]:checked {
  background-color: transparent !important; /* Green color when checked */
width: 12px;
height: 12px;
  border: 1px solid var(--light-gray) !important;
  border-radius: 2px;
}

.controls input[type="checkbox"]:checked::after {
  content: "\f00c"; /* Checkmark symbol */
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Cinnamon-Red);
  font-size: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.Wellness-Spa {
  font-family: var(--GFS-Didot);
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  color: var(--gray);
  font-size: clamp(14px, 1.5vw, 16px);
  margin-top: 10px;
}

.person-number-box {
  display: flex;
  align-items: baseline;
}

.per-person-resv {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(12px, 1.5vw, 14px);
  margin-left: -10px;
}

.complete-box-person-number {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding-right: 10px;
}

.straight-line {
  color: var(--light-gray);

}

.person-number {
  font-family: var(--GFS-Didot);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 100;
  font-style: normal;
  color: var(--gray);
  padding-right: 10px;
  padding-top: 20px;
}

.CONTINUE-book-now-button {
  background: var(--Cinnamon-Red);
  color: var(--white);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  margin-top: 30px;
}

/* About-Accommodation-section */


.Luxury-Rooms-Suites-section-deluxe-page{
  padding-top: 80px;
  padding-bottom: 80px;
  background:var(--light-cream);
}
/* deluxe-page */


/* Make Your Reservation page */
.Reservation-detail-section {
  background: var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Reservation-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Reservation-Details {
  color: var(--black);
  font-family: var(--Cinzel-regular);
    font-size: clamp(4px, 5vw, 44px);
  padding-top: 20px;
}

.padding-fprm-reservation-detail {
  padding-left: 40px;
}

.padding-fprm-reservation-detail-age {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.Extra-Services-resarvation {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--black);
  font-family: var(--lugfa-medium);
  padding-top: 30px;
  padding-bottom: 20px;
}

.room-type {
  background-color: transparent;
  color: var(--gray);
margin-top: 20px;
  border: 1px solid var(--light-gray);
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 0;
}

.room-type-click-down {
  color: var(--light-gray);
}

/* Complete Your Reservation page */

.billing-section {
  background-color: var(--light-cream);
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.bill {
  background-color: var(--peach-shade);
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  position: sticky;
  top: 0;
  height: 630px;
  z-index: 100000;
  box-shadow: 5px 5px 10px #dce7f5;
}

.checkin-date-check {
  padding-top: 15px;
  color: var(--light-gray);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
}

.checkin-date {
  color: var(--black);
  font-size: clamp(18px, 3vw, 22px);
  font-family: var(--GFS-Didot);
}

.billing-of-deluxe-room-total {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 2px;
}

.billing-of-deluxe-room {
  color: var(--black);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

.cost-of-deluxe-room {
  color: var(--Cinnamon-Red);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

.line-of-total {
  border-bottom: 2px solid var(--cream);
  width: 100%;
}

.billing-of-total-number-adults {
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.total-cost-of-service {
  display: flex;
  justify-content: space-between;
}

.total-bill {
  color: var(---black);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
}

.total-cost {
  color: var(--black);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
}

.form-for-complete-reservation {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
}

.Fill-Your-Information {
  color: var(---black);
  font-size: clamp(16px, 2vw, 24px);
  font-family: var(--GFS-Didot);
  padding-bottom: 15px;
}

.form-border-zero {
  height: 65px;
  border-radius: 0;
border: 0;
background:var(--peach-shade);
}

.email-address-width {
  width: 100% !important;
  border-radius: 0;
  height: 65px;
  border: 0;
  border-radius: 0px;
  background: var(--peach-shade);
}

.Choose-Payment-Method {
  color: var(---black);
  font-size: clamp(16px, 2vw, 24px);
  font-family: var(--GFS-Didot);
  padding-top: 40px;
}

.changein-form-for-padding {
  margin-left: 15px;
  padding-top: 10px;
}

.Office-Payment {
  color: var(--gray);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 2vw, 18px);
  margin-top: 2px;
  padding-left: 10px;
}

.change-in-form-check-input {
  border: 1px solid  var(--light-gray) !important;
  width: 22px;
  height: 22px;
  background-color: transparent;
}

.change-in-form-check-input:checked {
  background: var(--Cinnamon-Red) !important;
}

.agreed-check {
  color: var(--light-gray);
  font-family: var(--GFS-Didot);
  font-size: 21px;
}

.terms-and-conditon {
  color: var(--Cinnamon-Red);
  font-family: var(--GFS-Didot);
  font-size: clamp(16px, 3vw, 21px);
}

.for-check-agred-padding {
  padding-left: 30px;
  padding-top: 10px;
}

.border-of-form-check {
  border: 1px solid var(--light-gray);
  border-radius: 0px !important;
  width: 19px;
  height: 19px;
  background-color: transparent;
  border-radius: 10px;
}

.padding-for-agred-phase {
  display: flex;
  padding-left: 10px;
  margin-top: 2px;
}

.COMPLETE-BOOKING {
  color: var(--white);
  font-family: var(--GFS-Didot);
  font-size: clamp(14px, 1.5vw, 16px);
  font-style: normal;
  background: var(--Cinnamon-Red);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;

}


.payment-details{
  margin-top: 10px;
}
/* billing-section */

.change-in-form-check-input:checked {
  background: var(--Cinnamon-Red) !important; /* Background color when checked */
  border: 4px solid var(--white) !important;
  outline: 1px solid var(--Cinnamon-Red) !important;
  /* Optional: You can scale the element when checked */
  transform: scale(0.8); /* This scales the input down to 80% */
  /* Optional: Add padding inside the checked input */
  padding: 5px; /* Optional: rounded corners for the border */
}

.change-in-form-check-input:focus {
  box-shadow: none !important;
}

/* complete-your-booking */

.star-rating-testimonial {
  display: flex;
  gap: 10px;
}

.star-rating-testimonial img{
  width: 20px;
  height: 20px;
  object-fit: cover;
  object-position: center;
}

.review-of-client {
  color: var(--gray);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
  font-weight: 500;
  padding-top: 20px;
}

.review-of-client-second {
  color: var(--gray);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
  font-weight: 500;
  padding-top: 20px;
}

.review-of-client-onther {
  color: var(--gray);
  font-size: clamp(14px, 2vw, 18px);
  font-family: var(--GFS-Didot);
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 52px;
}

.for-border-line {
  width: 100%;
  border: 1px solid rgba(130, 130, 130, 0.2);
}

.Emily-Beans-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.emily-bean-introduction {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;

  align-items: center;
}

.google-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.emily-bean-box {
  display: flex;
  gap: 20px;
  text-align: center;
}

.Emily-Beans-name {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--black);
  font-family: var(--GFS-Didot);
}

.Police-Officer-job {
  color: var(--gray);
  font-size: clamp(14px, 1.5vw, 16px);
  font-family: var(--GFS-Didot);
  text-align: start;
}


 .testiomials-section-of-testiomials-page {
  background:var(--peach-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.box-for-review-client-box {
  background: var(--light-cream);
  padding: 20px;
}


/* .Testimonials-page */
@media screen and (max-width: 480px) {

  .parent-container{
    height: 500px;
  }

  .for-padding-home-title {
    margin-left: -160px;
  }

  .Stay-Beyond-Expectation {
    font-size: 36px;
  }

  .margin-for-mobile-col {
    margin-top: 20px;
  }

  .icon-collection {
    margin-top: 40px;
    display: flex;
    justify-content: start;
  }

  .Experience-Our-Exclusive-Resort {
    padding-left: 0px;
  }

  .Luxury-Rooms-Suites{
    padding-left: 5px;
  }

  .Where-elegance-meets{
    padding-left: 5px;
  }

  .Highlighted-Amenities-topic-col{
    padding-right: 0;
  }

  .counting-number {
    text-align: start;
  }

  .mySwiper-Luxury-Rooms-Suites{
    display: none;
  }

  .mySwiper-Luxury-Rooms-Suites-for-mobile{
    display: block;
  }


  .mySwiper-Memories-Unforgettable-Events{
    display: none;
  }

  .mySwiper-Memories-Unforgettable-Events-mobile{
    display: block;
  }

  .Client-Reviews-section{
    height: 900px;

  }

  .mySwiper-client-review{
    margin-top: 40px;
  }

  .review-detail-of-clents{
    width: 100% !important;
   margin-left: 0;

  }

  .image-of-celebration{
    width: 100%;
    margin-left: 0;
  }

  .image-of-balcony-box{
    padding-left: 0;
  }

  .image-of-balcony{
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 0;
  }

  .hotel-pictures--two{
    width: 100%;
    margin-left: 0;
  }

  .wedding-hall-image{
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
  }

  .swimming-pool-hotel-image{
    width: 100%;
    margin-left: 0;
  }

  .Gathering-ladies-img{
    width: 100%;
    margin-top: 20px;
  }

  .border-get-direction{
width: 40%;
  }


  .footer-section{
    padding-bottom: 0px;
  }

  /* home-page-complete */

  .margin-mobile {
    margin-top: 20px;
  } 

  .your-top-priority-logo {
    display: none;
  }

  .Located-at-seaside {
    padding-left: 0;
    margin-top: 20px;
  }

  .Indulge-in-the-Luxury-2nd-part{
    height: 18%;
     }

     .couple-img{
      height: 450px;
     }


     .Our-Purpose-and-Principles-img {
      height: 400px;
    }

    .Our-Purpose-and-Principles-box{
      padding-left: 0;
    }

   
    
  /* about-page */

  .A-World-of-Flavors-Awaits-part{
    padding-left: 0;
  }
  .Restaurant-Menu-section{
    display: none;
    }
    
    
    .Restaurant-Menu-section-for-mobile{
      display: block;
      background: var(--light-cream);
    }
    
    .Restaurant-Menu-mobile{
      color: var(--black);
      font-family: var(--Cinzel-regular);
      font-size: 25px;
      padding-top: 40px;
    }
    
    .Breakfast-menu-box {
      padding-bottom: 5px;
      background: var(--cream);
    }
    
    .Breakfast-menu-icon {

      font-size: 10px;
      text-align: center;
    margin-left: 20px;
      padding-top: 10px;
    }
    
    .Breakfast-menu-box:hover {
      background: var(--Cinnamon-Red);
    }
    
    .Breakfast{
      font-family: var(--GFS-Didot);
      font-size: 12px;
      padding-top: 10px;
      text-align: center;
      color: var(--gray);
    }
    
    .Breakfast-menu-box:hover .Breakfast {
      color: var(--white);
    }
    
    
    
    .Breakfast-menu-icon {
      filter: grayscale(100%) brightness(40%);
    }
    
    .Breakfast-menu-box:hover  .Breakfast-menu-icon {
      filter: brightness(0) invert(1); /* Turns the icon white */
    }
    
    
    .Appetizers-menu-box {
      padding-bottom: 5px;
      background: var(--cream);
    
    }
    
    .Appetizers-menu-icon {
      filter: grayscale(100%);
      text-align: center;
      padding-left: 25px;
      padding-top: 10px;
    }
    
    .Appetizers-menu-box:hover {
      background: var(--Cinnamon-Red);
    }
    
    .Appetizers-menu-box:hover .Breakfast {
      color: var(--white);
    }
    
    
    .Appetizers-menu-icon {
      filter: grayscale(100%) brightness(40%);
    }
    
   
    
    .Appetizers-menu-box:hover .Appetizers-menu-icon {
      filter: brightness(0) invert(1); /* Turns the icon white */
    }
    
    .TOTAL-ACCOMMODATIONS-box-whole-part{
      padding-left: 0;
    }
    

  /* resturant-page */
  .TOTAL-ACCOMMODATIONS-box-whole-part{
    padding-left: 0;
  }

  /* hall-page */
  
.photo-gallery-section{
  display: none;
}

.photo-gallery-section-mobile{
  display: block;
background: var(--peach-shade);
  padding-bottom: 80px;
  
}

.all-photogallery-click-button-mobile{
  background: var(--Cinnamon-Red);
  display: inline-block;
  text-align: center;

  width: 80px;
  height: 40px;
  padding-top: 10px;

  color: var(--white);
}

.all-photogallery-word-mobile{
  font-family: var(--GFS-Didot);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button-mobile{
  display: inline-block;
  text-align: center;

  width: 80px;
  height: 40px;
  padding-top: 10px;

  color: var(--gray);
  border: 1px solid var(--cream);
}

.all-photogallery-word-mobile-repre{
  font-family: var(--GFS-Didot);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button-mobile:hover{
  background: var(--Cinnamon-Red);
  color: var(--white);
}
/* .photo-gallery-page */
.Get-In-Touch-topics-form-part{
  padding-left: 0;
}

/* contatct-page */

.blog-background-img {
  width: 98% !important;
  height: 340px !important;
  left: 2px !important;
  top: 100px !important;
}

.blog-details {
  margin-bottom: 40px !important;
}

/* blog-page */
.children-swimming-written{
  padding-left: 0;
}

/* swimming-pool-page */
.Reservation-part{
padding-right: 0;
  padding-left: 0;
}

.per-night-reservation{
  padding-top: 0;
}

/* deluxe-page */

.padding-fprm-reservation-detail{
  padding-left: 0;
}


/* reservation-page */
.form-for-complete-reservation{
  padding-left: 0;
}
/* form-for-complete-reservation */

.margin-lar-mb{
  margin-top: 60px;  
}

.get-off-offer-section{
  height: 500px;

}

}

@media screen and (max-width: 1024) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }



}

@media screen and (max-width: 1280px) {
  /* mobile */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }


  .blog-background-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 100% 100%;
    position: absolute;
    z-index: 1;
  
    left: 10px;
    top: 90px;
  }
}
