@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary: rgba(255, 69, 0, 0.7);  /* Orange-red */
  --secondary: rgba(128, 0, 128, 0.7);  /* Purple */
  --light: #f8f9fa;
  --dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
p {
  font-family: "Montserrat", sans-serif !important;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}
header .desktop-navigation {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: rgba(0, 0, 0, 0.7); */
  z-index: 1000;
  transition: all 0.3s ease;
}

header .desktop-navigation.inner{
  position: relative;
  background-color: #000;
}

header .desktop-navigation.inner.active{
  position: fixed;
  transition: all 0.3s ease;
}

header .desktop-navigation.active{
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 50px
}

header .desktop-navigation .book-now{
  padding: 10px;
}

header .desktop-navigation.active .logo img{
  height: 50px;
}

header .mobile-navigation {
  display: none;
}

header .mobile-navigation.inner{
  position: relative;
  background-color: #000;
}

header .mobile-navigation.inner.active{
  position: fixed;
  transition: all 0.3s ease;
}

.logo img {
  height: 90px;
}
.nav-links {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}
.nav-links li {
  margin: 0 15px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: #ff4500;
}

.book-now {
  background: linear-gradient(
    45deg,
    rgba(255, 69, 0, 0.7),
    rgba(128, 0, 128, 0.7)
  );
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.activity-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.content h1 {
  font-size: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.content p {
  font-size: 20px;
  margin-top: 10px;
}
.navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.navigation span {
  cursor: pointer;
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 5px;
  transition: background 0.3s;
}
.navigation span:hover {
  background: rgba(255, 69, 0, 0.7);
}

.booking-form {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.booking-form.inner{
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  bottom: -15px;
}
.booking-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #ff4500;
}
.booking-form select,
.booking-form input {
  width: 16%;
  padding: 5px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.booking-form .btn {
  background: linear-gradient(
    45deg,
    rgba(255, 69, 0, 0.7),
    rgba(128, 0, 128, 0.7)
  );
  color: white;
  font-size: 17px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.booking-form .btn:hover {
  background: rgba(255, 69, 0, 1);
}

.form-group label {
  color: #fff;
}

.play-button {
  position: absolute;
  top: 62%;
  left: 86%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 69, 0, 0.8);
  border: none;
  padding: 14px;
  border-radius: 50%;
  color: white;
  font-size: 23px;
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button:active {
  transform: translate(-50%, -50%) scale(0.9);
  box-shadow: 0 0 10px rgba(255, 69, 0, 1);
}

.play-button .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease-in;
}

.modal-content {
  position: relative;
  width: 99%;
  height: 97%;
  background-color: black;
  border-radius: 10px;
  overflow: hidden;
}

.modal iframe {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.btn-tag {
  font-size: 12px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  width: 17%;
}

.booking-form .form-group input,
.booking-form .form-group select {
  width: 92%;
  padding: 10px;
}

.mobile-navigation {
  justify-content: space-between;
  display: none;
  z-index: 999;
  align-items: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  height: auto;
}

.mobile-navigation.sticky {
  position: fixed;
  top: 0;
}

.mobile-navigation img {
  height: 47px;
}

.mobile-menu img {
  height: 65px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 20px;
  transition: left 0.4s ease;
  z-index: 1000;
  transition: all 0.6s ease;
  overflow: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
  transition: all 0.6s ease;
  z-index: 999999;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.close-menu {
  font-size: 30px;
  cursor: pointer;
}

/* Menu Items */
.menu-items {
  list-style: none;
  padding: 0;
}

.menu-items li {
  margin: 15px 0;
}

.menu-items li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.menu-items li a:hover {
  color: var(--brand-color-primary);
}

.has-submenu ul.submenu {
  list-style: none;
  padding-left: 20px;
  display: none;
  transition: all 0.3s ease;
}

.has-submenu.open ul.submenu {
  display: block;
  transition: all 0.3s ease;
}

.has-submenu a span {
  font-size: 20px;
}

/* Close Menu Icon */
#closeMenu {
  font-size: 28px;
  cursor: pointer;
}

.menu-items li {
  margin: 15px 0;
  position: relative; /* For positioning the "+" sign */
}

.menu-items li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between; /* Make space between text and "+" */
  align-items: center;
}

/* Submenu toggle styles for child submenu */
.has-submenu-child a span {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}

/* Submenu is hidden by default */
.submenu-child {
  display: none;
  padding-left: 20px;
  transition: all 0.3s ease;
}

/* Submenu visible when parent has 'open' class */
.has-submenu-child.open .submenu-child {
  display: block;
}

.has-submenu-child a span {
  font-size: 20px;
}

.has-submenu-child.open a span {
  color: var(--brand-color-secondary);
}

/* Tab Buttons */
.tab-buttons,
.tab-buttons-guide {
  display: flex;
  justify-content: space-around;
  background-color: inherit; /* Use your existing background color */
  padding: 10px;
}

.tab-btn,
.tab-btn-guide {
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use the existing color */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn-guide.active {
  border-bottom: 2px solid var(--brand-color-secondary); /* Match the active state to your design */
}

.tab-btn:not(.active):hover,
.tab-btn-guide:not(.active):hover {
  color: var(--brand-color-secondary); /* A soft hover effect */
}

/* Tab Content */
.tab-content,
.tab-content-guide {
  padding: 20px;
  background-color: inherit; /* Use your existing background color */
  color: inherit; /* Use your existing text color */
}

.tab-panel,
.tab-panel-guide {
  display: none;
  transform: translateY(50px);
  transition: all 3s ease;
}

.tab-panel.active,
.tab-panel-guide.active {
  display: block;
  transform: translateY(0);
}

.nav-logo-mobile {
  transition: all 0.3s ease-in-out;
}

section {
  margin-bottom: 80px;
}

.title {
  text-align: center;
  color: rgba(255, 69, 0, 1);
  margin-bottom: 50px;
  position: relative;
  font-weight: 900;
  font-size: 40px;
}



.title::before {
  content: "";
  width: 18%;
  height: 3px;
  position: absolute;
  bottom: -10px;
  background-color: rgba(255, 69, 0, 1);
  transform: translateX(-20px);
}

.gallery-section .title{
  margin-bottom: 30px;
}

.gallery-section .title::before{
  width: 23%; 
}

.testimonal-section .title{
  margin-bottom: 30px;
}

.testimonal-section .title::before{
  width: 27%; 
}

.rooms-section .title::before{
    width: 26%;
}

.menu-section .title::before{
  width: 38%;
}

.stories-section .title::before{
  width: 22%;
}

.about-left img {
  width: 100%;
  border-radius: 25px;
  object-fit: cover;
}

.about-left .about-img-container {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition: all 0.3s ease;
  transform: scale(0.9);
}

.about-left .about-img-container:hover {
  transform: scale(1);
}

.amenities-contains {
  row-gap: 20px;
}

.icon {
  justify-content: center;
  align-items: center;
}

.icon img {
  padding-right: 0;
}

.icon-content {
  font-size: 18px;
  font-weight: 400;
}

.sub-title {
  color: #ff4500;
}

.about-section a {
  text-decoration: none;
  color: #ff4500;
  font-weight: 500;
  transition: all 0.3s ease-in;
}

.activities-section a {
  text-decoration: none;
  color: #ff4500;
  font-weight: 500;
  font-size: 10px;
  transition: all 0.3s ease-in;
}

.about-section a:hover {
  text-decoration: underline;
}

/* General Section Styling */
.rooms-section {
  text-align: center;
  background: #f9f7f1;
  padding: 50px 0;
}

.package-section, .gallery-section, .chief-section{
  background: #f9f7f1;
  padding: 50px 0;
}

.package-section{
  background: #f9f7f1;
  padding: 50px 0 0 0;
  margin-bottom: 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* Owl Carousel Styling */
.rooms-carousel, .rooms {
  display: flex;
  justify-content: center;
}

/* Room Card */
.room-card {
  position: relative;
  width: 100%;
  height: 400px; /* Fixed height */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Room Image */
.room-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Dark Gradient Overlay */
.room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
  color: white;
}

/* Price Tag */
.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.5);
  color: #333;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

/* Room Title */
.room-title {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
  color: white;
  margin-bottom: 5px;
  text-align: left;
  font-size: 44px;
}

/* Room Details */
.room-info {
  display: flex;
  gap: 18px;
  font-size: 18px;
  color: #fff;
}

/* OWL CAROUSEL DOTS */
/* OWL CAROUSEL DOTS */
.owl-dots {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .owl-dot {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: rgba(0, 0, 0, 0.3) !important; /* Default inactive dot color */
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
  }
  
  /* Active dot effect */
  .owl-dot.active {
    background: #ff4500!important; /* Active dot color */
    width: 10px;
    height: 10px;
  }

  .facts-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    position: relative;
}

.fact-box {
    position: relative;
    text-align: center;
}

.fact-box.active .circle {
    opacity: 1;
}

.fact-box h2 {
    font-size: 50px;
    color: #0a1918;
    font-weight: 400;
    margin: 0;
}

.fact-box span {
    font-size: 50px;
    color: #0a1918;
    font-weight: 400;
}

.fact-box p {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.activities-section{
  background-color: #f9f7f1;
  padding-top: 50px;
}

.activities-contains{
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.activities-section .title::before {
  width: 23%;
}

.left-activies {
  position: relative;
}


.left-activies img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.left-activies img.active {
  opacity: 1;
}

.right-activies {
  width: 50%;
  background: #0D1B2A;
  color: white;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 50px;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.right::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 40px;
  border-bottom: 1px solid #33475B;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.tab.active {
  font-weight: bold;
  color: #ff4500;
  opacity: 1;
}

.book-now-activities {
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  background: linear-gradient(
    45deg,
    rgba(255, 69, 0, 0.7),
    rgba(128, 0, 128, 0.7)
  );
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  z-index: 3;
}

/* Hide repeated content visually */
.hidden-content {
  opacity: 0;
}

.description{
  color: #b1adad;
  font-weight: 300;
  font-size: 12px;
  width: 77%;
  padding: 0 60px 0 0;
  
}

.menu-section{
  background-color: #f9f7f1;
  padding: 50px;
}

.menu-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.resturant-menu-header {
  text-align: center;
  padding: 25px 25px 15px;
  border-bottom: 1px solid #eee;
}

.resturant-menu-header p {
  color: #777;
  font-size: 14px;
  margin-top: 5px;
}

.menu-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.menu-tab {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.menu-tab:hover {
  color: #333;
  background: #f5f5f5;
}

.menu-tab.active {
  color: #e74c3c;
  border-bottom: 2px solid #e74c3c;
  font-weight: 600;
  background: white;
}

.menu-content {
  padding: 0 25px;
}

.menu-category {
  display: none;
  animation: fadeIn 0.3s ease;
}

.menu-category.active {
  display: block;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
  border-bottom: none;
}

.food-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.food-details {
  flex: 1;
}

.food-title {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.food-description {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
  margin-bottom: 5px;
}

.food-price {
  display: flex;
  align-items: center;
}

.new-price {
  font-weight: 600;
  color: #e74c3c;
  font-size: 15px;
}

.old-price {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.discount-tag {
  background: #e74c3c;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(5px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .menu-tab {
      font-size: 13px;
      padding: 10px 0;
  }
  
  .menu-header {
      padding: 20px 15px 10px;
  }
  
  .menu-content {
      padding: 0 15px;
  }
  
  .food-image {
      width: 50px;
      height: 50px;
      margin-right: 12px;
  }
}

a{
  text-decoration: none;
}

.view-more {
  color: #e74c3c;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.story-section {
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}
.story-thumbnail {
  height: 280px;
  border-radius: 15px; /* Rounded corners for a modern look */
  overflow: hidden;
  border: 3px solid #ff4500;
  cursor: pointer;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.story-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image doesn't get distorted */
}
.story-thumbnail:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Shadow increases on hover */
}

/* Overlay for Button and Title */
.stories-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-thumbnail:hover .overlay {
  opacity: 1; /* Show overlay on hover */
}

/* Title Inside Thumbnail */
.story-title {
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-align: center;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 1px;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.story-thumbnail:hover .story-title {
  transform: translateY(-5px); /* Slight lift effect on hover */
}

/* Stylish Play Button */
.play-btn {
  padding: 15px 25px;
  background: #ff4500;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.play-btn:hover {
  background: #ff6347;
  transform: scale(1.05); /* Slight scale effect on hover */
}

/* Fullscreen Story Overlay */
.story-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column; /* Stack title and iframe */
}
.story-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

/* Stylish Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}
.close-btn i {
  color: #333;
}

.gallery-header {
  text-align: center;
}

.gallery-header h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.gallery-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #e74c3c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
}

.gallery-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.view-all {
  display: block;
  width: 200px;
  margin: 40px auto 0;
  padding: 12px 0;
  background: #e74c3c;
  color: white;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.view-all:hover {
  background: #c0392b;
}

.testimonal-header {
  text-align: center;
  margin-bottom: 10px;
}

.testimonal-header h2 {
  font-size: 2.5rem;
  color: #ff4500;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.testimonal-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff4500;
}

.testimonal-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.quote-icon {
  color: #000;
  font-size: 2.5rem;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #ff4500;
}

.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #ff4500;
}

.client-details p {
  margin: 5px 0 0;
  color: #777;
  font-size: 0.9rem;
}

.rating {
  color: #ff4500;
  margin-top: 5px;
}

/* Owl Carousel Customization */
.testimonal-carousel .owl-stage-outer {
  padding: 20px 0;
}

.testimonal-carousel.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.testimonal-carousel.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ddd;
  transition: all 0.3s ease;
}

.testimonal-carousel.owl-theme .owl-dots .owl-dot.active span,
.testimonal-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff4500;
  transform: scale(1.2);
}

.testimonal-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.testimonal-carousel .owl-prev, .testimonal-carousel .owl-next {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #ff4500 !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot span{
  display: none;
}

.testimonal-carousel .owl-prev {
  left: -20px;
}

.testimonal-carousel .owl-next {
  right: -20px;
}

.testimonal-carousel .owl-prev:hover, .testimonal-carousel .owl-next:hover {
  background: #ff4500 !important;
  color: white !important;
}

@media (max-width: 768px) {
  .testimonal-header h2 {
      font-size: 2rem;
  }
  
  .testimonal-carousel .owl-prev {
      left: 0;
  }
  
  .testimonal-carousel .owl-next {
      right: 0;
  }
}

.chief-header {
  text-align: center;
  margin-bottom: 10px;
}

.chief-header h2 {
  font-size: 2.5rem;
  color: #ff4500;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.chief-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff4500;
}

.chief-header p {
  color: #777;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.chef-carousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.chef-card {
  background: white;
  border-radius: 10px;
  margin: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  overflow: hidden;
}

.chef-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.chef-image {
  height: 350px;
  overflow: hidden;
  position: relative;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.chef-card:hover .chef-image img {
  transform: scale(1.05);
}

.chef-info {
  padding: 25px;
  text-align: center;
}

.chef-info h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  color: #ff4500;
}

.chef-title {
  color: #ff4500;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.chef-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.chef-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.chef-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: #ff4500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.chef-social a:hover {
  background: #ff4500;
  color: white;
  transform: translateY(-3px);
}

.signature {
  font-family: 'Dancing Script', cursive;
  color: var(--accent);
  font-size: 1.3rem;
  margin-top: 10px;
}

.specialty {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff4500;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Owl Carousel Customization */
.chef-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.chef-carousel .owl-prev,.chef-carousel .owl-next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: #ff4500 !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chef-carousel .owl-prev {
  left: -25px;
}

.chef-carousel .owl-next {
  right: -25px;
}

.chef-carousel .owl-prev:hover, .chef-carousel .owl-next:hover {
  background: #ff4500 !important;
  color: white !important;
}

.chef-carousel.owl-theme .owl-dots {
  margin-top: 10px !important;
}

.chef-carousel.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: #ddd;
  transition: all 0.3s ease;
}

.chef-carousel.owl-theme .owl-dots .owl-dot.active span,
.chef-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff4500;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .chief-header h2 {
      font-size: 2rem;
  }
  
  .chef-carousel .owl-prev {
      left: 0;
  }
  
  .chef-carousel .owl-next {
      right: 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #ff4500;
}

.package-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.package-header {
  padding: 25px;
  background: #ff4500;
  color: white;
  text-align: center;
}

.package-title {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
}

.package-body {
  padding: 25px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 1.1rem;
}

.package-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #ff4500;
  color: white;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.package-btn:hover {
  background: #2c3e50;
  color: white;
}

@media (max-width: 768px) {
  .section-header h2 {
      font-size: 2rem;
  }
  
  .package-title {
      font-size: 1.5rem;
  }
  
  .package-price {
      font-size: 2rem;
  }
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ff4500;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  display: inline-block;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0 0 15px;
  line-height: 1.3;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  color: #777;
  font-size: 0.9rem;
}

.read-more {
  color: #ff4500;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #2c3e50;
}

.read-more:hover i {
  transform: translateX(3px);
}

.view-all {
  display: block;
  width: 200px;
  margin: 50px auto 0;
  padding: 12px 0;
  background: #ff4500;
  color: white;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.view-all:hover {
  background: #2c3e50;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .blog-container {
      grid-template-columns: 1fr;
  }
  
  .section-header h2 {
      font-size: 2rem;
  }
}

.footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    45deg,
    rgba(255, 69, 0, 0.7),
    rgba(128, 0, 128, 0.7)
  );
}

.footer-logo {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo span {
  color: #ff4500;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ff4500;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  color: white;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff4500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a i {
  margin-right: 8px;
  color: #ff4500;
  font-size: 0.8rem;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  color: #ff4500;
  margin-right: 15px;
  font-size: 1.1rem;
  margin-top: 3px;
}


.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

.footer-bottom p a {
  color: #ff4500;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-col {
    margin-bottom: 30px;
  }

  .footer-title {
    margin-bottom: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
  height: 200px;
  margin-bottom: 40px;
  overflow: hidden;
}

.breadcrumb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 1;
}

.breadcrumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #f8f9fa;
  transform: translateX(3px);
}

.breadcrumb-item.active {
  color: rgba(255,255,255,0.8);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: white;
  content: "›";
  font-size: 1.5rem;
  padding: 0 10px;
}

.breadcrumb-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}

.page-title {
  font-size: 2.5rem;
  margin-top: 15px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .breadcrumb-wrapper {
      height: 150px;
  }
  
  .page-title {
      font-size: 2rem;
  }
  
  .breadcrumb-item+.breadcrumb-item::before {
      padding: 0 5px;
  }
}
/* About Hero Section */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
              url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa') center/cover;
  color: white;
  padding: 100px 0;
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* About Content Sections */
.about-section {
  margin-bottom: 60px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-img img {
  width: 100%;
  height: auto;
}

/* Features Grid */
.feature-box {
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

        /* Featured Image */
        .featured-image {
          width: 100%;
          height: auto;
          object-fit: cover;
          margin-bottom: 30px;
          cursor: pointer;
          transition: transform 0.3s;
          border-radius: 25px;

      }
      
      .featured-image:hover {
          transform: scale(1.01);
      }
      
      /* Info Box */
      .info-box {
          display: flex;
          margin-bottom: 40px;
          border: 1px solid #e0e0e0;
          border-radius: 8px;
          overflow: hidden;
      }
      
      .booking-box {
          padding: 30px;
          background: var(--light);
      }
      
      .price-box {
          margin-bottom: 20px;
      }
      
      .new-price-detail {
          font-size: 2.2rem;
          color: var(--primary);
          font-weight: 700;
      }
      
      .old-price-detail {
          font-size: 1.5rem;
          color: #999;
          text-decoration: line-through;
          margin-left: 10px;
      }
      
      .btn-book {
          display: block;
          width: 100%;
          padding: 15px;
          background: var(--primary);
          color: white;
          border: none;
          border-radius: 5px;
          font-size: 1.1rem;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s;
          text-transform: uppercase;
      }
      
      .btn-book:hover {
          background: #d35400;
          transform: translateY(-2px);
      }
      
      .amenities-box {
          flex: 1;
          padding: 30px;
          background: white;
      }
      
      .amenities-title {
          font-size: 1.5rem;
          color: var(--primary);
          margin-top: 0;
          margin-bottom: 20px;
      }
      
      .amenities-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 15px;
      }
      
      .amenity-item {
          display: flex;
          align-items: center;
      }
      
      .amenity-icon {
          color: var(--primary);
          margin-right: 10px;
          width: 20px;
          text-align: center;
      }
      
      /* Overview Section */
      .overview-section {
          margin-bottom: 40px;
      }
      
      .section-title {
          font-size: 1.8rem;
          color: var(--primary);
          margin-bottom: 20px;
          position: relative;
          padding-bottom: 10px;
      }
      
      .section-title:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 60px;
          height: 3px;
          background: var(--secondary);
      }
      
      /* Gallery Section */
      .gallery-section-detail {
          margin-bottom: 60px;
      }
      
      .gallery-grid-detail {
          display: grid;
          grid-template-columns: repeat(5, 1fr);
          gap: 15px;
      }
      
      .gallery-item-detail {
          height: 200px;
          overflow: hidden;
          border-radius: 5px;
          position: relative;
          cursor: pointer;
      }
      
      .gallery-item-detail img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.5s;
      }
      
      .gallery-item:hover img {
          transform: scale(1.1);
      }
      
      .gallery-item-detail:first-child {
          grid-column: span 2;
          grid-row: span 2;
          height: 415px;
      }
      
      /* Lightbox Styles */
      .lightbox {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.9);
          z-index: 1000;
          align-items: center;
          justify-content: center;
      }
      
      .lightbox-content {
          max-width: 90%;
          max-height: 90%;
      }
      
      .lightbox-content img {
          max-width: 100%;
          max-height: 90vh;
          border: 3px solid white;
          border-radius: 5px;
      }
      
      .lightbox-close {
          position: absolute;
          top: 20px;
          right: 30px;
          color: white;
          font-size: 2.5rem;
          font-weight: bold;
          cursor: pointer;
          transition: color 0.3s;
      }
      
      .lightbox-close:hover {
          color: var(--secondary);
      }
      
      .lightbox-nav {
          position: absolute;
          width: 100%;
          display: flex;
          justify-content: space-between;
          top: 50%;
          transform: translateY(-50%);
          padding: 0 20px;
      }
      
      .lightbox-prev, .lightbox-next {
          color: white;
          font-size: 2.5rem;
          cursor: pointer;
          background: rgba(0,0,0,0.5);
          width: 50px;
          height: 50px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s;
      }
      
      .lightbox-prev:hover, .lightbox-next:hover {
          background: var(--secondary);
      }
      
      .lightbox-caption {
          color: white;
          text-align: center;
          margin-top: 15px;
          font-size: 1.2rem;
      }
      
      /* Other Rooms */
      .other-rooms {
          margin-bottom: 60px;
      }
      
      .rooms-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 25px;
      }
      
      .room-card {
          border: 1px solid #e0e0e0;
          border-radius: 8px;
          overflow: hidden;
          transition: all 0.3s;
      }
      
      .room-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      
      .room-card img {
          width: 100%;
          height: 200px;
          object-fit: cover;
      }
      
      .room-card-content {
          padding: 20px;
      }
      
      .room-card-title {
          font-size: 1.3rem;
          color: var(--primary);
          margin-top: 0;
          margin-bottom: 10px;
      }
      
      .room-card-price {
          color: var(--secondary);
          font-weight: 600;
          margin-bottom: 15px;
      }
      
      .btn-view {
          display: inline-block;
          padding: 8px 15px;
          background: var(--primary);
          color: white;
          text-decoration: none;
          border-radius: 5px;
          font-size: 0.9rem;
          transition: background 0.3s;
      }
      
      .btn-view:hover {
          background: #0d3a5a;
      }
      
      /* Responsive */
      @media (max-width: 992px) {
          .info-box {
              flex-direction: column;
          }
          
          .rooms-grid {
              grid-template-columns: repeat(2, 1fr);
          }
      }
      
      @media (max-width: 768px) {
          .featured-image {
              height: 350px;
          }
          
          .gallery-grid {
              grid-template-columns: repeat(2, 1fr);
          }
          
          .gallery-item:first-child {
              grid-column: span 1;
              grid-row: span 1;
              height: 200px;
          }
          
          .rooms-grid {
              grid-template-columns: 1fr;
          }
          
          .amenities-grid {
              grid-template-columns: 1fr;
          }
      }

      
      .contact-hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1519046904884-53103b34b206?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 100px 0;
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title {
        color: var(--primary);
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary);
    }
    
    .contact-info-card {
        background: white;
        border-radius: 8px;
        padding: 9px;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }
    
    .contact-info-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-icon {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 20px;
    }
    
    .contact-form {
        background: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-control {
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }
    
    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.25rem rgba(230, 126, 34, 0.25);
    }
    
    .btn-submit {
        background: var(--primary);
        color: white;
        padding: 12px 30px;
        border: none;
        font-weight: 600;
        text-transform: uppercase;
        transition: all 0.3s;
    }
    
    .btn-submit:hover {
        background: #d35400;
        transform: translateY(-2px);
    }
    
    .map-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        margin-top: 50px;
    }
    
    .map-container iframe {
        width: 100%;
        height: 400px;
        border: 0;
    }
    
    .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        margin-right: 10px;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .menu-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                  url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      padding: 80px 0;
      text-align: center;
      margin-bottom: 40px;
  }
  
  .menu-hero h1 {
      font-size: 2.8rem;
      font-weight: bold;
  }

  .menu-section {
      text-align: center;
      margin-bottom: 20px;
  }
  
  .menu-section h2 {
      color: var(--primary);
      font-size: 2rem;
  }
  
  .menu-container {
      display: flex;
      justify-content: center;
      align-items: center;
      height: auto;
      padding: 20px;
      background: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
  }
  
  .flipbook-wrapper {
      width: 100%;
      max-width: 900px;
      height: 600px;
      position: relative;
  }


  
