/* ===== HEADER & NAVIGATION STYLES ===== */




.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
 
  

  
  /* Desktop Navigation */
  .desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .desktop-nav ul li {
    margin: 0 0.5rem;
  }
  
  .desktop-nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .desktop-nav ul li a:hover,
  .desktop-nav ul li a.active {
    color: var(--primary-light);
  }
  
  .desktop-nav ul li a.active {
    position: relative;
  }
  
  .desktop-nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary-light);
  }
  
  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .book-now-btn {
    background-color: var(--primary-light);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: indie flower, cursive;
    font-size: 1.3em;
  }
  
  .book-now-btn:hover {
    background-color: var(--primary-dark);
  }
  
  /* Icon Button */
  .icon-button {
  background: transparent !important;
  border: none !important;
  color: var(--text-dark) !important;
  font-size: 1.25rem !important;
  padding: 0.5rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: white !important;
}

.icon-button:hover {
  color: var(--primary-light) !important;
}

  
  /* Search Container */
  .search-container {
    position: relative;
   
  }
  
  /* Search Dropdown */
  .search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: var(--background-light);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 0.5rem;
    z-index: 1001;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .search-dropdown.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
  
  .search-form-container {
    width: 100%;
  }
  
  .search-form-container form {
    display: flex;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
  }
  
  .search-form-container input[type="search"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    background-color: #ffffffde;
  }
  
  .search-form-container input[type="search"]:focus {
    outline: none;
  }
  
  .search-form-container button[type="submit"] {
    background-color: var(--primary-light);
    color: white;
    border: none;
    padding: 0 1rem;
    cursor: pointer;
  }
  
  /* Search Suggestions */
  .search-suggestions {
    margin-top: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
  }
  
  .search-suggestion {
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .search-suggestion:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .search-suggestion i {
    color: var(--primary-light);
    font-size: 0.875rem;
  }
  
  .suggestion-category {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-left: auto;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 2rem;
  }


 

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}


    
  
  /* Mobile Menu */
  .mobile-menu {
    margin-top: 60px;
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
  }
  
  .mobile-menu.hidden {
    transform: translateY(-100%);
    visibility: hidden;
  }
  
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .mobile-menu ul li {
    margin-bottom: 1rem;
    
  }
  
  .mobile-menu ul li a {
    
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .mobile-menu ul li a:hover,
  .mobile-menu ul li a.active {
    color: var(--primary-light);
  }
  
  .mobile-menu .book-now-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  
  /* Mobile-only elements default hidden */
  .mobile-only {
      display: none;
    }
    
    /* Show mobile-only on small screens */
    @media (max-width: 992px) {
      .book-now-btn{
        display: none;
      }
      .desktop-nav {
        display: none;
      }
    
      .mobile-only {
        display: flex;
      }
    
      .search-dropdown {
        width: 100%;
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        border-radius: 0;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
    
      .search-form-container {
        max-width: 600px;
        margin: 0 auto;
      }
    }
    
    /* Hide mobile-only on desktop */
    @media (min-width: 993px) {
      .mobile-only {
        display: none;
      }
    
      .mobile-menu {
        display: none;
      }


/* Hide bars on large screens */
@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }
}

    }
    
    