
.btn-outline-lighten {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    /* border-color: #f8f9fa; */
}


.custom-hover-dropdown .dropdown-toggle {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 12px;
  border-radius: 30px;
  color: white;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
}

.custom-hover-dropdown .dropdown-toggle:hover,
.custom-hover-dropdown .dropdown-toggle:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.custom-hover-dropdown .dropdown-menu {
  border-radius: 10px;
  margin-top: 8px;
  animation: fadeInDropdown 0.25s ease-in-out;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.custom-hover-dropdown .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.custom-hover-dropdown .dropdown-item i,
.custom-hover-dropdown .dropdown-item img {
  margin-right: 8px;
  width: 18px;
}

.custom-hover-dropdown .dropdown-item:hover {
  background: linear-gradient(to right, #fa9e1b,rgb(241, 195, 152));
  color: black;
  font-weight: 800;
}

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

.custom-hover-dropdown .dropdown-toggle {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 16px; /* Increased horizontal padding */
  border-radius: 30px;
  color: white;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Fix the p-0 on user dropdown if present */
#userDropdown , #emailDropdown , #phoneDropdown {
  padding: 6px 16px !important;
}

/* Optional: hover effect remains consistent */
.custom-hover-dropdown .dropdown-toggle:hover,
.custom-hover-dropdown .dropdown-toggle:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.custom-hover-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 16px;
  border-radius: 30px;
  color: white;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.custom-hover-btn:hover,
.custom-hover-btn:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}



/* Conteneur dropdown position relative */
.dropdown.custom-hover-dropdown {
  position: relative;
}

/* Dropdown menu position absolute sous le bouton */
.dropdown.custom-hover-dropdown .dropdown-menu {
  top: 100% !important;    /* juste sous le bouton */
  left: auto !important;
  right: 0 !important;      /* aligné à droite comme tu as dropdown-menu-right */
  margin-top: 0 !important; /* pas d'espace */
  transform: none !important; /* désactive toute transformation CSS */
  transition: opacity 0.15s ease-in-out; /* transition sur l’opacité seulement */
  opacity: 0;
  display: block;  /* Toujours block pour pouvoir utiliser opacity */
  pointer-events: none; /* désactivé quand caché */
  visibility: hidden;    /* caché par défaut */
  z-index: 1050;
}

/* Lorsque dropdown est ouvert, affiche avec opacité à 1 */
.dropdown.custom-hover-dropdown.show .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}


/*!-- Main Navigation --*/
/* Main Nav Container Improvements */
.nav_right {
  gap: 1.5rem; /* espace entre icônes */
}

/* Panier */
.panier_wrapper {
  color: white;
  font-size: 1.8rem;
  margin-right: 30px;
  position: relative;
  transition: color 0.3s ease;
}

.panier_wrapper:hover {
  color: #ff9800; /* orange doux au hover */
}

/* Badge nombre panier */
.panier_count {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #ff3b3b;
  color: white;
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Icônes mobiles */
.d-lg-none i {
  color: white;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.d-lg-none i:hover {
  color: #ff9800;
}

/* Cursor pointer */
.cursor-pointer {
  cursor: pointer;
}


.main_nav {
    background: transparent;
    padding: 20px 0; /* More space top and bottom */
    position: relative;
    z-index: 100;
}

/* Nav List Styles */
.main_nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 3rem; /* More spacing between items */
    align-items: center;
    justify-content: center;
    white-space: nowrap; /* Prevent line wrap */
}

/* Nav Links */
.nav_link {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Hover underline effect */
.nav_link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav_link:hover::after {
    width: 100%;
}

/* Panier Styles */
.panier_wrapper .empty {
    background-color: #ffdddd;
    color: #cc0000;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
}

.panier_wrapper .not-empty {
    background-color: #d4f4dd;
    color: #2c7a4b;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
}

/* Flex spacing helpers */
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.5rem;
}

.main_nav_row {
    flex-wrap: nowrap;
}

@media (max-width: 992px) {
    .nav_link {
        font-size: 1rem;
    }
    .main_nav_list {
        gap: 2rem;
    }
}

.main_nav_container {
    margin-right: 0;
}


.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    background-color: #25d366; /* Default green for WhatsApp */
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: background-color 0.3s, transform 0.3s;
    border: 1px solid;
}

.float:hover {
   /* background-color:rgb(255, 255, 255);  WhatsApp darker green on hover */
    transform: scale(1.1);
}

.my-float {
    margin-top: 0px;
    font-size: 24px;
    transition: transform 0.4s ease;
}


.float-btn {
  position: fixed;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* Icon centered */
  text-decoration: none;
  color: white;
  font-weight: bold;
  height: 60px;
  width: 60px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
  z-index: 1000;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #fff;
}

.my-float-btn:hover {
  margin-left: 19px;
  margin-top: 17px;
  font-size: 24px;
  font-size: 24px;
  transition: transform 0.4s ease;
}


.btn-text {
  opacity: 0;
  margin-left: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.float-btn:hover {
  width: 160px; /* Expand width */
  justify-content: flex-start;
  padding-left: 15px;
}

.float-btn:hover .btn-text {
  opacity: 1;
  margin-left: 10px;
  max-width: 110px;
}

.float-btn:hover .my-float {
  transform: rotate(-10deg);
}

.float-btn:hover .my-float-btn {
  transform: rotate(-10deg);
}
/* Specific button colors and positions */
.whatsapp-btn {
  bottom: 40px;
  background-color: #25d366; /* WhatsApp green */
}


.booking-btn.show {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.my-float-scroll{
    margin-top: 11px;
}

.my-float-btn{
  margin-left: 19px;
  margin-top: 17px;
  font-size: 24px;
  font-size: 24px;
  transition: transform 0.4s ease;
}
/* WhatsApp Button (Left) */
.whatsapp-btn {
    left: 20px;
}

/* Booking Button (Left) */
.booking-btn {
    left: 20px;
    bottom: 105px; /* Position it above WhatsApp button */
    display: none;
    opacity: 0;
    transform: scale(0.5);
    background: linear-gradient(to right, #8d4fff, #fa9e1b);
    border: 2px solid #fff;
}

/* Scroll to Top Button (Right) */
.scroll-top-btn {
    right: 20px;
    display: none; /* Hidden by default */
    background-color:#FA6304; /* Custom color for scroll */
}

/* Show Scroll to Top when needed */
.scroll-top-btn.show {
    display: block;
}

.booking-btn.show {
    display: block;
}
 
.modal {
    text-align: center;
    padding: 0!important;
}

.modal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

.modal-dialog {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.pack{
    background: rgba(49, 18, 75, 0.8);
    list-style: circle;
    font-size: 17px;
    color: #fff;
    padding-left: 6%;
    padding-top: 3%;
}
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    color:rgb(0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}


.top-bar .align-items-center {
font-size : 13px;
}

/* Make all card images the same height */
.card-img-top {
    height: 250px; /* Adjust as needed */
    object-fit: cover;
}

/* Position overlay */
.card {
    position: relative;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(53, 10, 78, 0.7); /* Adjust overlay color and transparency */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-direction: column;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-overlay a.btn {
    background-color: #fff;
    color: #350a4e;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.card-overlay a.btn:hover {
    background-color: #FA6304;
    color: #fff;
}

.card-overlay h5 {
    color: rgb(248, 248, 248);
    text-decoration: underline;
    font-weight: bold;
    font-size: 20px;
}

.modal-search {
    border-radius: 25px;
    border: 2px solid white;
}

section , .pb-5, .py-5  {
  padding-bottom: 1px !important;
  padding-top: 1px !important;
}

/* Logo base styling */
.logo-img {
  max-height: 60px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  will-change: transform, box-shadow;
  transform-style: preserve-3d;
}

/* Hover effect for 3D animation */
.logo-link:hover .logo-img {
  transform: rotateY(20deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}


.floating-menu {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.floating-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  border: 2px solid #fff; /* effet 3D avec bordure blanche */
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  perspective: 600px; /* profondeur pour effet 3D */
}

.floating-menu a:hover {
  transform: scale(1.1) rotateX(8deg) rotateY(8deg); /* tilt léger en hover */
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* Dégradés modernes */
.book-whatsapp {
  background: linear-gradient(135deg, #07e75b, #09722f);
}
.book-online {
  background: linear-gradient(to top right, #fa9e1b, #8d4fff);
}
.terms {
  background: linear-gradient(135deg, #ff3b3b, #f78c00ff);
}

/* Texte toujours visible */
.floating-menu a span {
  position: absolute;
  left: 70px;
  white-space: nowrap;
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  opacity: 1; /* toujours visible */
  transform: translateX(0);
  transition: all 0.3s ease;
}