/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

/* Header Container */
#header-main {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  padding: 60px 0;
  z-index: 3;
  background: transparent;
  
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Scrolled State */
#header-main.header-scrolled {
  padding: 20px 0;
  background: #000; /* Dark background */
  -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.1);
}

#header-main.header-scrolled #nav-toggle span {
  background: #fff;
}

#header-main.header-scrolled #logo-main a {
  color: #fff;
}

/* Logo */
#logo-main {
  text-align: center;
}

#logo-main img {
  max-width: 100%;
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-left: 10px;
}

#logo-main a {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-family: "Playfair Display", times, serif;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  #logo-main a {
    font-size: 27px;
  }
}

/* Navigation Toggle (Hamburger) */
#nav-toggle {
  display: block; /* Ensure visibility */
  width: 40px;
  height: 45px;
  position: relative;
  margin-right: 40px;
  z-index: 200;
  cursor: pointer;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 10px;
}

#nav-toggle span:nth-child(3) {
  top: 20px;
}

#nav-toggle.nav-active span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-toggle.nav-active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-toggle.nav-active span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* Navigation Menu */
#nav-menu {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  max-width: 100vw;
  border: 20px solid transparent;
  background: #000;
  min-height: 300px;
  overflow-y: auto; /* Change from scroll to auto */
}

#nav-menu .menu-list {
  font-family: "Playfair Display", times, serif;
  list-style: none;
  padding: 0;
  margin: 0;
}

#nav-menu .menu-list li a {
  color: #fff;
  font-size: 40px;
  padding: 5px 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#nav-menu .menu-list li a:hover {
  color: #cca772;
}

#nav-menu .menu-list li.active a {
  color: #cca772;
}

/* Menu Open State */
.nav-open #nav-menu {
  display: block;
}

.nav-open #logo-main a {
  color: #fff;
}

.nav-open #nav-toggle span {
  background: #fff;
}

/* Navigation Image */
#menu-image {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

/* Media Queries */
@media (max-width: 767.98px) {
  #header-main {
    padding: 20px 10px;
  }

  #nav-menu {
    border-width: 5px;
  }

  .nav-open #nav-menu .menu-list {
    margin-top: 120px;
  }

  #menu-image {
    height: 300px;
    width: 70px;
  }
}

/* Safari-Specific Fix */
@media not all and (min-resolution: 0.001dpcm) { /* Targets Safari */
  #nav-toggle {
    display: block !important;
    visibility: visible !important;
  }
  #nav-toggle span {
    background: #fff !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

@font-face {
  font-family: 'Ailerons';
  src: url('path/to/ailerons.woff2') format('woff2'),
       url('path/to/ailerons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.hheading {
  font-size: 45px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-family: 'Ailerons', sans-serif;
  letter-spacing: 3px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 36px !important; /* Smaller font for mobile */
  }
  
  .hero-bottom-title {
    font-size: 36px !important; /* Smaller font for mobile */
  }
  
  .hero-subtitle,
  .hero-tagline {
    font-size: 22px !important; /* Optional: also reduce subtitle size */
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 576px) {
  .hero-main-title {
    font-size: 36px !important; /* Even smaller for very small screens */
  }
  
  .hero-bottom-title {
    font-size: 36px !important;
  }
  
  .hero-subtitle,
  .hero-tagline {
    font-size: 22px !important;
  }
}

/* airport shuttle form css */
/* Popup styling */
.popup-container {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
justify-content: center;
align-items: center;
}

.popup-content {
background-color: white;
padding: 20px;
border-radius: 5px;
width: 90%;
max-width: 500px;
position: relative;
}

.close-btn {
position: absolute;
top: 10px;
right: 15px;
font-size: 24px;
cursor: pointer;
}

/* Form styling */
.form-group {
margin-bottom: 15px;
}

.form-row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}

.form-group.col-md-6 {
flex: 0 0 50%;
max-width: 50%;
padding-right: 15px;
padding-left: 15px;
}

.form-control {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}

.dropdown-quantity {
position: relative;
display: inline-block;
width: 100%;
}

.dropdown-input {
width: 100%;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
background-color: white;
cursor: pointer;
}

.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 200px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
padding: 15px;
border-radius: 4px;
left: 0;
top: 100%;
margin-top: 5px;
}

.dropdown-quantity.active .dropdown-content {
display: block;
}

.quantity-control {
display: flex;
align-items: center;
}

.quantity-input {
width: 50px;
height: 30px;
text-align: center;
margin: 0 5px;
border: transparent;
border-radius: 4px;
}

/* Hide number input arrows */
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

.quantity-input {
-moz-appearance: textfield;
}


/* Activities Section */
.activities-section {
  background-color: #e7f0fa; /* Light blue background similar to the image */
  padding: 50px 0;
}

.activity-card {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: left;
  overflow: hidden;
}

.activity-card input {
  display: none;
}

.activity-card label {
  display: block;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.activity-image {
  position: relative;
}

.activity-image img {
  width: 100%;
  height: auto; /* Fixed height for uniformity */
  object-fit: cover; /* Ensure images scale nicely */
  display: block;
}

.activity-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.activity-card .answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #666;
  transition: max-height 0.3s ease, padding 0.3s ease;
  text-align: left;
}

.activity-card input:checked ~ .answer {
  max-height: 100%; /* Adjust based on content */
  padding: 15px;
}

.activity-card label::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.activity-card input:checked ~ label::after {
  transform: translateY(-50%) rotate(180deg);
}

.activity-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .activity-title {
    font-size: 18px;
  }

  .activity-card p {
    font-size: 14px;
  }

  .activity-image img {
    height: 120px; /* Smaller image height for mobile */
  }

  .activity-card label::after {
    font-size: 14px;
  }
}












/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #1C1C1C;  /* The default color of the main navmenu links */
  --nav-hover-color: #1C1C1CE; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1C1C1C; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1C1C1C; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f1f6f5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2f5d50;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2e2b28;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Add header scroll behavior for #header */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
  transition: all 0.5s;
  background-color: #ffffff;
}

#header.header-scrolled {
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Body scrolled state */
body.scrolled #header {
  background-color: #ffffff;
  backdrop-filter: blur(10px);
}

body.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}
.header {
  --background-color: #ffffff;
  --heading-color:#1C1C1C;
  color: #000000;
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: #000000;
  height: 40px;
  padding: 0;
  font-size: 18px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #ffffff;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: #ffffff;
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, #ffffff, transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: #ffffff;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 150px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 550;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu svg {
    height: 16px;
    padding-right: 10px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Gallery Showcase Section
--------------------------------------------------------------*/
.gallery-showcase .gallery-carousel {
  margin-bottom: 2rem;
}

.gallery-showcase .gallery-carousel .swiper-wrapper {
  height: auto !important;
}

.gallery-showcase .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-showcase .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-showcase .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-showcase .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery-showcase .gallery-item img {
    height: 200px;
  }
}

.gallery-showcase .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
}

.gallery-showcase .btn-gallery {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-showcase .btn-gallery:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #000000 10%), color-mix(in srgb, var(--accent-color), #000000 30%));
}

.gallery-showcase .btn-gallery i {
  font-size: 1.2rem;
  margin-right: 10px !important;
}

@media (max-width: 576px) {
  .gallery-showcase .btn-gallery {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Index room Section
--------------------------------------------------------------*/
.rooms-showcase .minimal-room-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.03);
}

.rooms-showcase .minimal-room-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.rooms-showcase .minimal-room-card .room-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.rooms-showcase .minimal-room-card .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ede3dac9;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room {
  color: var(--contrast-color);
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room:hover {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.rooms-showcase .minimal-room-card .room-image:hover .hover-overlay {
  opacity: 1;
}

.rooms-showcase .minimal-room-card .room-image:hover img {
  transform: scale(1.04);
}

.rooms-showcase .minimal-room-card .room-summary {
  padding: 24px 20px;
  text-align: center;
}

.rooms-showcase .minimal-room-card .room-summary h5 {
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.rooms-showcase .minimal-room-card .room-summary .price-tag {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 16px;
  display: block;
}

.rooms-showcase .minimal-room-card .room-summary .price-tag span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.7rem;
  font-weight: 400;
}

.rooms-showcase .minimal-room-card .room-summary .basic-amenities {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.rooms-showcase .minimal-room-card .room-summary .basic-amenities i {
  color: var(--accent-color);
  font-size: 1rem;
  opacity: 0.8;
}

.explore-all-link {
  color: var(--heading-color);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 16px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.explore-all-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  transform: translateX(4px);
}

.explore-all-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.explore-all-link:hover i {
  transform: translateX(4px);
}
.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room {
  color: var(--contrast-color);
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.rooms-showcase .minimal-room-card .room-image .hover-overlay .view-room:hover {
  color: var(--contrast-color);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Amenities Cards Section
--------------------------------------------------------------*/
.amenities-cards .facility-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.4s ease;
  position: relative;
}

.amenities-cards .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

.amenities-cards .facility-card:hover .facility-image .facility-overlay {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.amenities-cards .facility-card:hover .facility-image img {
  transform: scale(1.05);
}

.amenities-cards .facility-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.amenities-cards .facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.amenities-cards .facility-image .facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.amenities-cards .facility-image .facility-overlay i {
  font-size: 48px;
  color: var(--contrast-color);
}

.amenities-cards .facility-info {
  padding: 30px 25px;
}

.amenities-cards .facility-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities-cards .facility-info p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.amenities-cards .facility-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.amenities-cards .facility-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-color);
}

.amenities-cards .facility-features span i {
  font-size: 14px;
}

@media (max-width: 992px) {
  .amenities-cards .facility-image {
    height: 200px;
  }

  .amenities-cards .facility-info {
    padding: 25px 20px;
  }

  .amenities-cards .facility-info h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .amenities-cards .facility-info p {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .amenities-cards .facility-image {
    height: 180px;
  }

  .amenities-cards .facility-image .facility-overlay i {
    font-size: 40px;
  }

  .amenities-cards .facility-info {
    padding: 22px 18px;
  }

  .amenities-cards .facility-info h4 {
    font-size: 18px;
  }

  .amenities-cards .facility-info p {
    font-size: 13px;
    line-height: 1.6;
  }

  .amenities-cards .facility-features {
    gap: 12px;
  }

  .amenities-cards .facility-features span {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# hero Section
--------------------------------------------------------------*/
/* Hero Text Styling */
.hero-main-title {
  font-size: 45px;
  letter-spacing: 3px;
}

.hero-subtitle, .hero-tagline {
  font-size: 32px;
  letter-spacing: 3px;
}

.hero-bottom-title {
  font-size: 39px;
  letter-spacing: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-main-title {
    font-size: 28px;
    letter-spacing: 1px;
  }
  
  .hero-subtitle, .hero-tagline {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .hero-bottom-title {
    font-size: 26px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 24px;
  }
  
  .hero-subtitle, .hero-tagline {
    font-size: 18px;
  }
  
  .hero-bottom-title {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .hero-content {
  margin-bottom: 60px;
}

.events .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .events .hero-content h2 {
    font-size: 2.2rem;
  }
}

.events .hero-content .lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.events .event-venues-grid {
  margin-bottom: 80px;
}

.events .event-venues-grid .venue-card {
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.events .event-venues-grid .venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.events .event-venues-grid .venue-card:hover .venue-image img {
  transform: scale(1.1);
}

.events .event-venues-grid .venue-card:hover .venue-overlay {
  opacity: 1;
}

.events .event-venues-grid .venue-card .venue-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.events .event-venues-grid .venue-card .venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info {
  text-align: center;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info h4 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.events .event-venues-grid .venue-card .venue-image .venue-overlay .venue-info .capacity {
  font-size: 1rem;
  opacity: 0.9;
}

/* Global scroll fix - Prevent separate scroll containers */
html, body {
  overflow-x: hidden !important;
  scroll-behavior: smooth !important;
}

section, .section, .container, .container-fluid {
  overflow: visible !important;
  contain: none !important;
}

/* Ensure no transform creates stacking contexts that cause scroll issues */
.events, .amenities-cards, .gallery-showcase, .rooms-showcase {
  transform: none !important;
  will-change: auto !important;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .hotel-filters {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.gallery .hotel-filters li {
  background: transparent;
  color: #1C1C1C;
  padding: 10px 24px;
  border-radius: 0px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery .hotel-filters li:hover,
.gallery .hotel-filters li.filter-active {
  /* background: #F7A78C; */
  transform: translateX(4px);
  border-bottom: 2px solid #000000;
  color: #000000;
}

@media (max-width: 768px) {
  .gallery .hotel-filters li {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery .gallery-item .gallery-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery .gallery-item .gallery-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery .gallery-item .gallery-wrapper img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 576px) {
  .gallery .gallery-item .gallery-wrapper img {
    height: 250px;
  }
}

.gallery .gallery-item .gallery-wrapper:hover img {
  transform: scale(1.1);
}

.gallery .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery .gallery-overlay a {
  color: var(--contrast-color);
  font-size: 24px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gallery .gallery-overlay a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .gallery-wrapper:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Eye Icon Color */
.gallery .gallery-overlay a i.bi-eye {
  color: #F7A78C !important;
}

/* Alternative - target all eye icons in gallery overlay */
.gallery-overlay a i {
  color: #F7A78C !important;
}

/* If you also want to change the hover state */
.gallery-overlay a:hover i {
  color: #f5956f !important; /* Slightly darker shade for hover */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 50px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  text-align: center;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-control {
  border: 1px solid color-mix(in srgb, #1C1C1C, transparent 80%);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 15px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-control:focus {
  border-color: #F7A78C;
  box-shadow: 0 0 0 3px color-mix(in srgb, #F7A78C, transparent 90%);
}

.contact .contact-form-wrapper .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form-wrapper textarea.form-control {
  resize: vertical;
  min-height: 180px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: #F7A78C;
  border: none;
  color: #1C1C1C;
  padding: 13px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
  display: inline-block;
  cursor: pointer;
  outline: none !important;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, #FAD6C4, transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, #FAD6C4, transparent 70%);
}

/* Add focus state styling for better accessibility */
.contact .contact-form-wrapper .btn-submit:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, #F7A78C, transparent 70%);
}

/* Also remove focus outline on active/pressed state */
.contact .contact-form-wrapper .btn-submit:active {
  outline: none !important;
  transform: translateY(-1px);
}

.contact .contact-info-card {
  background-color: color-mix(in srgb, #F7A78C, transparent 92%);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: 0.3s;
  height: 100%;
}

.contact .contact-info-card:hover {
  background-color: color-mix(in srgb, #FAD6C4, transparent 85%);
  transform: translateY(-5px);
}

.contact .contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color:#FAD6C4;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-card .icon-box i {
  font-size: 26px;
}

.contact .contact-info-card .info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.contact .contact-info-card .info-content p {
  margin-bottom: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 16px;
}

.contact .map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-top: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact .map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact .contact-form-wrapper {
    padding: 30px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact .contact-info-card {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .contact-info-card .icon-box {
    margin-bottom: 15px;
  }

  .contact .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 22px;
  }

  .contact .contact-info-card {
    padding: 20px;
  }

  .contact .map-container iframe {
    height: 350px;
  }
}

/*--------------------------------------------------------------
# Amenities Section
--------------------------------------------------------------*/
.amenities .amenity-card {
  background: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, #1C1C1C, transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.amenities .amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px color-mix(in srgb, #000000, transparent 85%);
}

.amenities .amenity-card .amenity-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.amenities .amenity-card .amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.amenities .amenity-card .amenity-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.amenities .amenity-card:hover .amenity-image::after {
  opacity: 1;
}

.amenities .amenity-card .amenity-content {
  padding: 30px;
}

.amenities .amenity-card .amenity-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.amenities .amenity-card .amenity-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.amenities .amenity-card .amenity-content .amenity-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities .amenity-card .amenity-content .amenity-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--default-color);
}

.amenities .amenity-card .amenity-content .amenity-features li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.amenities .amenity-card .amenity-content .amenity-features li:last-child {
  margin-bottom: 0;
}

.amenities .amenities-grid {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.amenities .amenities-grid h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.amenities .amenities-grid .service-item:hover {
  transform: translateY(-3px);
}

.amenities .amenities-grid .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.amenities .amenities-grid .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.amenities .amenities-grid .service-item:hover .service-icon::before {
  opacity: 1;
  transform: scale(1);
}

.amenities .amenities-grid .service-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.amenities .amenities-grid .service-item p {
  color: var(--default-color);
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

.amenity-content {
  font-size: 18px;
}

.amenity-content a {
  font-size: 18px;
}

@media (max-width: 768px) {
  .amenities .amenity-card .amenity-content {
    padding: 20px;
  }

  .amenities .amenity-card .amenity-content h3 {
    font-size: 20px;
  }

  .amenities .amenities-grid {
    padding: 30px 20px;
  }

  .amenities .amenities-grid h3 {
    font-size: 28px;
  }

  .amenities .amenities-grid .service-item {
    padding: 15px;
  }

  .amenities .amenities-grid .service-item .service-icon {
    width: 60px;
    height: 60px;
  }

  .amenities .amenities-grid .service-item .service-icon i {
    font-size: 24px;
  }

  .amenities .amenities-grid .service-item h4 {
    font-size: 16px;
  }

  .amenities .amenities-grid .service-item p {
    font-size: 13px;
  }
}