.elementor-160 .elementor-element.elementor-element-1052cc9{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4d5e10e *//* --- Full Width Header Setup (White Background) --- */
.lumiere-header-fw {
  background-color: #ffffff;
  padding: 15px 40px;
  font-family: 'Montserrat', sans-serif;
  position: sticky;
  top: 0;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.header-container-fw {
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img-container .header-custom-logo {
  height: 50px;
  width: auto;
  display: block;
}

/* Hide Hidden Checkbox Always */
.menu-toggle-checkbox {
  display: none !important;
}

/* Nav Links Base */
.nav-links-fw {
  display: flex;
  align-items: center;
  gap: 35px;
}

/* Hover Effect Line */
.nav-item-fw {
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-item-fw::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.nav-item-fw:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-item-fw:hover {
  color: #d4af37;
}

/* CTA Button */
.btn-book-now-fw {
  background-color: #d4af37;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.btn-book-now-fw:hover {
  background-color: #111111;
  color: #ffffff;
}

.mobile-menu-burger, .mobile-menu-close-btn, .mobile-cta-fw {
  display: none;
}

/* --- Pure CSS Mobile View Logic --- */
@media (max-width: 991px) {
  .lumiere-header-fw {
    padding: 15px 20px;
  }

  .desktop-cta-fw {
    display: none;
  }

  .mobile-menu-burger {
    display: block;
    color: #111111;
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
    z-index: 999;
  }

  /* Slide Out Drawer Menu Styling */
  .nav-links-fw {
    position: fixed;
    top: 0;
    right: -100%; /* Default Hidden Position */
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 90px 40px;
    gap: 20px;
    box-sizing: border-box;
    transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 100000;
  }

  /* MAGIC TRICK: Jab checkbox check hoga, menu samne slide karega */
  .menu-toggle-checkbox:checked ~ .nav-links-fw {
    right: 0 !important;
  }

  .mobile-menu-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    color: #111111;
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
  }

  .nav-item-fw {
    font-size: 16px;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #111111;
  }
  
  .nav-item-fw::after {
    display: none;
  }

  .mobile-cta-fw {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
}/* End custom CSS */