/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #f0f0f0;
  /* Light background for the page */
}

/* //////////////////// Header styles //////////////// */

header {
  position: relative;
  height: 100vh;
  background-color: #121212;
  /* Dark background */
  color: #fff;
  /* White text color */
  overflow: hidden;
}

/* Banner styles */
.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #ffffff;
  text-align: center;
}

/* Navbar styles */
.navbar {
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 30px;
  background: #fff;
  /* background: rgba(0, 0, 0, 0.7); */
  /* Dark semi-transparent background */
  position: fixed;
  top: 0;
  width: 100%;
  transition: background 0.3s ease;
}

.logo img {
  z-index: 20;
  height: 70px;
  width: 160px;
  object-fit: cover;
  /* border-radius: 50%; */
  background-position: center;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
  /* Slight zoom on hover */
}

/* Burger menu */
.burger {
  display: none;
  /* Hidden by default */
  font-size: 28px;
  color: #365E9A;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Close icon */
.close {
  display: none;
  /* Hidden by default */
  font-size: 28px;
  color: #365E9A;
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Navigation links */
.nav-links {
  display: flex;
  list-style: none;
  font-weight: 500;
  padding: 1rem 0;
}

.navlink-items {
  margin: 0 1.5rem;
}

/* Navigation links */
.navlink-items a {
  font-size: 18px;
  color: #365E9A;
  /* color: #ffffff; */
  padding: 5px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navlink-items a:hover,
.navlink-items a.active {
  /* color: white; */
  background-color: #fff;
}

/* ////////////////// Banner slider ///////////////////// */

.mainslider {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slideHead {
  display: flex;
  height: 100%;
  width: 100%;
}

.slideHead img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  /* Darken image for better text visibility */
  transition: transform 0.5s ease;
  /* Add transition for smooth sliding */
}

.slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.controls {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
}

.controls button {
  cursor: pointer;
  background-color: #1683e9;
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.controls button:hover {
  background-color: #186fc0;
  transform: scale(1.1);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .controls button {
    font-size: 10px;
    padding: 10px;
  }

  .burger {
    display: block;
    /* Show burger icon on mobile */
  }

  .logo img {
    z-index: 20;
    height: 45px;
    width: 100px;
  }

  .nav-links {
    display: none;
    /* Hidden by default */
    z-index: 5;
    flex-direction: column;
    width: 100%;
    background-color: white;
    /* background: rgb(0, 0, 0); */
    position: absolute;
    top: 45px;
    left: 0;
    text-align: center;
  }

  .nav-heading{
    color: #365E9A;
  }

  .navlink-items {
    margin: 10px 20px;
  }

  .nav-links.active {
    display: flex;
    /* Show links when active */
    padding: 20px 0;
  }

  .close {
    display: none;
    /* Hidden by default */
  }

  .nav-links.active~.close {
    display: block;
    /* Show close icon when nav is active */
  }

  /* Responsive styles for .slideHead */
  .slideHead {
    flex-direction: column;
    height: 300px;
    min-height: 200px;
    width: 100vw;
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .slideHead {
    height: 180px;
    min-height: 100px;
    width: 100vw;
  }
}

/* /////////////////////////// Center text of banner ///////////////////// */
.banner-details {
  user-select: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 80vw;
  justify-content: center;
  align-items: center;
  /* z-index: 2; */
}

/* Banner title and description styles */
.banner-title {
  color: #ffffffd2;
  font-size: 3.8rem;
  font-weight: 700;
  margin: 20px;
  /* color: #186fc0; */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
}

.banner-description {
  font-size: 1.4rem;
  max-width: 600px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  padding: 0 10px;
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 2.2rem;
  }

  .banner-description {
    font-size: 1.1rem;
  }

}

/* //////////////////// Footer styles //////////////// */
.footer {
  height: fit-content;
  padding: 2rem 4px;
  background: black;
  color: white;
}

.main-footer {
  display: flex;
  gap: 40px;
  justify-content: space-around;
  align-items: flex-start;
  /* Align items at the start */
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
}

.footer-partone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Change 'start' to 'flex-start' */
  gap: 0.8rem;
  font-size: 14px;
}

.footer-subhead {
  font-size: 26px;
}

.footer-partone p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-partone span a:hover {
  color: rgb(231, 229, 229);
  text-decoration: underline;
}

.footer-parttwo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Change 'start' to 'flex-start' */
  gap: 1.4rem;
}

.footer-parttwo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-description {
  display: flex;
  align-items: start;
  gap: 10px;
}

.sub-footer {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 768px) {
  .main-footer {
    flex-direction: column-reverse;
    /* Stack items vertically */
    align-items: center;
    /* Center align for smaller screens */
    text-align: center;
    /* Center text */
    gap: 2rem;
  }

  .footer-partone,
  .footer-parttwo {
    align-items: center;
    /* Center align items */
    gap: 0.4rem;
    /* Adjust gap for better spacing */
  }

  .footer-subhead {
    font-size: 24px;
    /* Slightly smaller for mobile */
  }

  .footer-partone span {
    font-size: 12px;
    /* Smaller links */
  }

  .footer-parttwo span {
    font-size: 14px;
    /* Smaller phone numbers */
  }
}

@media (max-width: 480px) {
  .footer-subhead {
    font-size: 16px;
    /* Even smaller for very small screens */
  }

  .footer-partone span {
    font-size: 16px;
    /* Smaller links */
  }

  .footer-parttwo span {
    font-size: 16px;
    /* Smaller phone numbers */
  }
}

/* Parallax Background */
.parallax-section {
  height: fit-content;
  width: 100%;
  background-image: url(./assets/img_48.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.parallax-title {
  font-weight: bolder;
  font-size: 3rem;
  color: #ffffff;
  margin: 20px 0;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  transition: font-size 0.2s ease;
}

.parallax-section p {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: bold;
  padding: 0 20px;
  color: white;
  transition: font-size 0.3s ease, margin 0.3s ease, background-color 0.3s ease;
}

.parallax-section:hover p {
  font-size: 22px;
  padding: 5px 0;
  width: 100%;
  text-align: center;
  background-color: #186fc0;
}

.parallax-section:hover .parallax-title {
  font-size: 3.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .parallax-title {
    font-size: 3rem;
  }

  .parallax-section p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .parallax-title {
    font-size: 2.5rem;
  }

  .parallax-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .parallax-title {
    font-size: 2rem;
  }

  .parallax-section p {
    font-size: 12px;
  }
}

/*///////////////////// About section  css //////////////// */

.Main-section{
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.about-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
}

.about-heading p{
text-align: center;
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
}



/* About Section */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  gap: 1rem;
  width: 100%;
  height: 70vh;
}

.about-content {
  flex: 1;
  max-width: 50%;
}

.about-title {
  font-size: 36px;
  color: #333333;
  margin-bottom: 1rem;
  padding: 10px;
}

.about-description {
  line-height: 2;
  font-size: 16px;
  color: black;
  text-align: justify;
    font-weight: bold;

}

/* Image Container */
.about-image-container {
  position: relative;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image {
  width: 80%;
  height: 50vh;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
}

/* Image Effect using ::before */
.about-image-container::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  height: 300px;
  background-color: #e0e0e0;
  z-index: 0;
  transform: rotate(10deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-title {
    font-size: 30px;
  }

  .about-description {
    font-size: 16px;
    color: black;
    font-weight: bold;
  }

  .about-image {
    height: 45vh;
  }

  .about-image-container::before {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    height: 90vh;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image-container {
    max-width: 100%;
    margin-top: 2rem;
  }

  .about-image {
    height: 35vh;
  }

  .about-image-container::before {
    top: 10px;
    left: 10px;
    width: 220px;
    height: 220px;

  }
}

@media (max-width: 480px) {
  .about-section {
    flex-direction: column;
    text-align: justify;
  }

  .about-title {
    font-size: 28px;
  }

  .about-description {
    font-size: 14px;
    font-weight: bold;
  }

  .about-image-container::before {
    top: 5px;
    left: 5px;
    width: 0px;
    height: 0px;
  }

  .about-section {
    height: 100vh;
  }

  .about-image {
    height: 30vh;
  }
}

/*  ////////////// About2  section //////////////////*/

/* Container for the layout */
.restaurant-section {
  background-color: #f5f5f5;
  padding: 4rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}

/* Image container */
.image-container {
  flex: 1;
  height: 60vh;
  object-fit: contain;
  position: relative;
  border: 3px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: -webkit-fill-available;
  display: block;
  object-fit: cover;
  border-left: 5px solid #8dc63f;
  padding: 10px;
}

/* Content container */
.content-container {
  flex: 1;
  padding-left: 20px;
}

/* Title and subtitle styling */
.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.sub-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #333;
  border-left: 5px solid #8dc63f;
  /* Green accent */
  padding-left: 10px;
}

/* Text description styling */
.description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
  text-align: justify;
}

.video-sundar {
  width: 100%;
  height: -webkit-fill-available;
}

/* Responsive styles */
@media (max-width: 1024px) {

  /* Tablet view */
  .restaurant-section {
    flex-direction: column;
    padding: 30px;
  }

  .content-container {
    padding-left: 0;
  }

  .section-title {
    font-size: 32px;
  }

  .sub-title {
    font-size: 22px;
  }

  .description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {

  /* Mobile view */
  .restaurant-section {
    padding: 10px;
    gap: 20px;
    margin-top: 120px;
  }

  .section-title {
    font-size: 28px;
    text-align: center;
  }

  .sub-title {
    font-size: 20px;
    text-align: center;
    margin: 15px 0;
    padding-left: 0;
    border-left: none;
    border-bottom: 3px solid #8dc63f;
    /* Adjust accent line for mobile */
    padding-bottom: 5px;
  }

  .description {
    font-size: 14px;
    padding: 5px;
  }

  /* Adjusting image for mobile */
  .image-container {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* /////////////// Gallery section ////////////// */
/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  /* Centering the gallery container */
}


.gallery-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #333;
  text-transform: uppercase;
  text-align: center;
}

/* Gallery Container */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 4 items per row for larger screens */
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 10px;
  height: 50vh;
  width: 30vw;
  /* Fixed height for gallery items */
}

.gallery-item img{
  height: 50vh;
  width: 100%;
  object-fit: cover;
}

/* Ensure images fill the item */
.gallery-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 10px;
}

/* Hover Effect */
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-image {
  opacity: 0.85;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row on tablets */
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row for smaller tablets */
  }

  .gallery-item {
    height: 180px;
    /* Adjusted height for smaller screens */
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: 1fr;
    /* 1 item per row on mobile */
  }

  .gallery-section{
    padding: 2rem 1rem;
  }

  .gallery-item {
  height: 40vh;
  width: 90vw;
  /* Fixed height for gallery items */
}
}

/* ///////////////////// Gallery section 2 ///////////////// */

/* Card Gallery */
.ImageCard {
  background-color: #f5f5f5;
  padding: 2rem;
}

.imagecard-title h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0px 0;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}

/* Card Gallery Container */
.container {
  display: flex;
  height: 100vh;
  /* Adjustable height */
  width: 100%;
  gap: 10px;
  /* Space between large card and right grid */
  padding: 20px;
  box-sizing: border-box;
}

/* Large Card on the Left */
.large-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.icons {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  background-color: #c3c3c3;
  padding: 10px;
  width: 100%;
  display: none;
  justify-content: center;
  gap: 10px;
  /* Space between icons */
}

/* .large-card:hover {
    transition: all ease 0.1s;
    opacity: 0.85;
} */

/* .large-card:hover .card-title {
    display: none;
} */

.large-card:hover .icons {
  background-color: #080808;
  color: white;
  display: flex;
  /* Changed to flex for alignment */
  justify-content: space-around;
}

/* .large-card:hover .card-title {
    color: white;
} */

.large-card img {
  width: 100%;
  border-radius: 10px 10px 0 0;
  height: calc(100% - 50px);
  /* Reserve space for title */
  object-fit: cover;
}

.large-card .card-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 10px;
}

/* Right Grid with 4 Smaller Cards */
.right-grid {
  flex: 1;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  /* 2 columns */
  grid-template-rows: 1fr 1fr;
  /* 2 rows */
  gap: 10px;
}

.small-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Added for absolute positioning of icons */
}

.wide {
  grid-column: span 2;
}

.small-card img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: calc(100% - 50px);
  /* Reserve space for title */
  object-fit: cover;
}

.small-card .card-title {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
}

/* .small-card:hover {
    transition: all ease 0.1s;
    opacity: 0.75;
}

.small-card:hover .card-title {
    display: none;
} */

.small-card:hover .icons {
  background-color: #080808;
  color: white;
  display: flex;
  /* Changed to flex for alignment */
  justify-content: space-around;
}

/* Tablet View (768px to 1024px) */
@media screen and (max-width: 1024px) {
  .container {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .large-card {
    width: 100%;
    height: 400px;
  }

  .right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .small-card {
    height: 300px;
  }

  .imagecard-title h2 {
    font-size: 30px;
    margin: 15px 0;
  }

  .large-card .card-title {
    font-size: 1.3rem;
  }

  .small-card .card-title {
    font-size: 0.9rem;
  }

  .icons {
    padding: 8px;
  }

  .icons svg {
    width: 25px;
    height: 25px;
  }
}

/* Mobile View (up to 767px) */
@media screen and (max-width: 767px) {
  .ImageCard {
    padding: 5px;
  }

  .container {
    padding: 10px;
    gap: 15px;
  }

  .large-card {
    height: 300px;
  }

  .right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .small-card {
    height: 250px;
  }

  .imagecard-title h2 {
    font-size: 24px;
    margin: 10px 0;
  }

  .large-card .card-title {
    font-size: 1.2rem;
    padding: 8px;
  }

  .small-card .card-title {
    font-size: 0.9rem;
    padding: 8px;
  }

  .icons {
    padding: 6px;
    bottom: -5%;
  }

  .icons svg {
    width: 20px;
    height: 20px;
  }

  /* Improve touch targets for mobile */
  .large-card:hover .icons,
  .small-card:hover .icons {
    display: flex;
    padding: 10px;
  }

  /* Adjust spacing for better mobile viewing */
  .ImageCard {
    margin-bottom: 20px;
  }
}

/* Extra Small Devices (up to 480px) */
@media screen and (max-width: 480px) {
  .large-card {
    height: 250px;
  }

  .small-card {
    height: 200px;
  }

  .imagecard-title h2 {
    font-size: 20px;
  }

  .large-card .card-title {
    font-size: 1.1rem;
  }

  .small-card .card-title {
    font-size: 0.8rem;
  }

  .container {
    padding: 5px;
    gap: 10px;
  }

  .icons {
    gap: 5px;
  }

  .icons svg {
    width: 18px;
    height: 18px;
  }
}

/* //// Our amenities //// */

.amenities {
  background-color: white;
  padding: 2rem 0;
}

.amenities h2 {
  font-size: 36px;
  font-weight: bold;
  margin: 0px 0;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}

.amenities-icons {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  color: #080808;
  font-size: large;
}

.center-amenities {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
}

@media (max-width: 768px) {
  .amenities-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}


/* /////// Rooms ////// */

.rooms-section {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.room-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.room-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 350px;
}

.room-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-content {
  padding: 20px;
}

.room-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.room-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.room-content ul {
  list-style-type: none;
  padding: 0;
}

.room-content ul li {
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

@media (min-width: 768px) {
  .room-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .room-card {
    max-width: 100%;
  }
}


/* promotion  */

.promotions-section {
  padding: 40px;
  background-color: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.promotion-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.promotion-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.promotion-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.promotion-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
}



@media (min-width: 768px) {
  .promotion-container {
    flex-direction: row;
    justify-content: center;
  }

  .promotion-card {
    width: 45%;
  }
}

/* location  */

.location-section {
  padding: 40px;
  background-color: #f4f4f4;
  text-align: center;
}

.location-section .section-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.location-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.map-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
}

.map-link:hover {
  background-color: #0056b3;
}

.travel-distance {
  max-width: 600px;
  margin: 20px auto;
  text-align: left;
}

@media (max-width: 480px) {
  .travel-distance {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 30px;
    max-width: 100%;
    margin: 15px 0;
    /* padding: 0 10px; */
    text-align: left !important;  
    font-size: 14px;
    align-items: start;      
    justify-content: flex-start;  /* For horizontal alignment in flex */


  }
}


.travel-distance h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.travel-distance ul {
  list-style-type: none;
  padding: 0;
}

.travel-distance ul li {
  font-size: 16px;
  padding: 5px 0;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-section {
    padding: 30px;
  }

  .travel-distance {
    text-align: center;
  }
}




/* contact form  */

/* Container for flex layout */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 20px;
  width: 100%;
  padding: 2rem 6rem;
  height: fit-content;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px; */
}

/* Form section styling */
/* Updated form section styling */
.form-section {
  flex: 1;
  height: fit-content;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'Arial', sans-serif;
  width: 100%;
}

#bookingForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#bookingForm label {
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

#bookingForm input,
#bookingForm textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
  color: #333333;
}

#bookingForm input:focus,
#bookingForm textarea:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  background-color: #ffffff;
}

#bookingForm textarea {
  resize: vertical;
  font-family: 'Arial', sans-serif;
  line-height: 1.5;
}

.btn {
  background-color: #4CAF50;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

.btn:active {
  background-color: #3e8e41;
  transform: scale(0.98);
}

.image-section {
  flex: 1;
}

.image-section img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive form styling */
@media (max-width: 768px) {
  .contact-container {
      padding: 1rem;
      flex-direction: column;
  }

  .image-section img {
      height: 50vh;
  }

  .form-section {
      padding: 15px;
  }

  #bookingForm input,
  #bookingForm textarea {
      font-size: 0.9rem;
      padding: 10px;
  }

  .btn {
      font-size: 0.9rem;
      padding: 10px;
  }
}

/* Responsive styling */
@media (max-width: 768px) {

  /* Stack form and image vertically */
  .container {
      flex-direction: column;
  }

  .image-section img {
      max-width: 100%;
      /* Allow the image to be responsive */
  }

  .image-section {
      margin-top: 20px;
  }
}

/* contact form model  */

.main-container {
  position: relative;
  width: 100%;
  height: fit-content;
  background-color: #f5f5f5;
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  background-color: white;
  color: white;
  background: url('../../../assets/frontdesk.svg');
  background-position: center;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 80%;
  max-width: 700px;
  height: 70vh;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.model-text {
  margin-top: 25%;
  font-size: 3rem;
  font-weight: 600;
}


/* Initial sticky state */
/* .sticky {
  position: relative;
  width: 100%;
  background: white;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
} */

/* Fixed state when scrolled */
.fixed {
  position: fixed;
  top: 70px; /* Stick it to the top */
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.book-now-btn {
  padding: 8px 16px;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background-color: #0056b3;
}

/* Floating Book Now Button - Mobile Only */
.floating-book-now-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #0056b3;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.floating-book-now-btn:hover {
  background: #0056b3;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .floating-book-now-btn {
    display: block;
  }
  .book-now-btn {
    display: none !important;
  }
}
.gallery-tab-btn {
    background: #f5f5f5;
    border: 1px solid #1683e9;
    color: #1683e9;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.gallery-tab-btn.active,
.gallery-tab-btn:hover {
    background: #1683e9;
    color: #fff;
}


@media (max-width: 768px) {
  .gallery-tab-btn {
    font-size: 0.95rem;
    padding: 7px 12px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-tab-btn {
    font-size: 0.85rem;
    padding: 6px 8px;
    border-radius: 14px;
    margin-bottom: 4px;
  }
}

@media (max-width: 600px) {
  .about-image-container {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    gap: 1.5rem;
  }
  .about-image-container h2 {
    order: -1;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    gap: 10px;
  }
  .about-image {
    width: 100%;
    height: 22vh;
    min-height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }

}