/* Mobile Responsive Header & Navigation Styles */

/* Sticky Mobile Header - Will be visible when scrolling on mobile */
.mobile-header {
  display: none; /* Hidden by default on desktop */
}

@media (max-width: 768px) {
  /* Make header fixed on mobile when scrolling */
  .sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .sticky-header .header-content {
    flex-direction: row;
  }

  .sticky-header .logo img {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
  }

  /* Mobile Header - Custom image background */
  .mobile-header {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    height: 70px;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
  }

  .mobile-nav-item i {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffd700;
  }

  .mobile-nav-item.active {
    color: #ffd700;
  }

  /* Add padding to the body to account for the sticky bottom nav */
  body {
    padding-bottom: 70px;
  }
  
  /* Replace with provided mobile header background image */
  .mobile-header {
    background-image: url('/path-to-your-mobile-header-image.jpg'); /* Replace with actual path */
    background-size: cover;
    background-position: center;
  }
  
  /* Replace with provided sticky navigator image */
  .sticky-header {
    background-image: url('/path-to-your-sticky-header-image.jpg'); /* Replace with actual path */
    background-size: cover;
    background-position: center;
  }
}
