/* Alternative Mobile Design - Bottom Navigation */

@media (max-width: 768px) {
  /* Hide mobile header entirely */
  .mobile-header {
    display: none !important;
  }
  
  /* Hide all mobile header elements */
  .mobile-menu-btn,
  .mobile-logo-container,
  .mobile-logo,
  .mobile-title {
    display: none !important;
  }
  
  /* Hide slide-out menu */
  .mobile-menu {
    display: none !important;
  }
  
  /* Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #e8e8e8;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 10000 !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
  }
  
  .mobile-bottom-nav-item {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.2s ease;
    padding: 8px 6px;
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
    border-radius: 8px;
    min-width: 62px;
    max-width: 76px;
  }
  
  .mobile-bottom-nav-item span:last-child {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mobile-bottom-nav-item.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-bottom-nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .mobile-bottom-nav-logo {
    width: 20px;
    height: 20px;
    margin-bottom: 4px;
    object-fit: contain;
  }
  
  /* Adjust body padding - no top header */
  body {
    padding-top: 0 !important;
    padding-bottom: 60px !important;
  }
  
  /* Adjust main content */
  main {
    min-height: calc(100vh - 60px) !important;
  }
}

/* Hide bottom nav on desktop */
.mobile-bottom-nav {
  display: none;
}

/* Hide contact section on mobile */
@media (max-width: 768px) {
  .contact-section:not(body[data-page="contact"] .contact-section) {
    display: none !important;
  }
}
