/* Custom styles for ZentroBiz */

/* Logo sizing */
.navbar-brand img {
  width: 250px;
  height: auto;
}

/* Fix navbar menu visibility on desktop - override Bootstrap collapse */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto !important;
    visibility: visible !important;
  }
  
  .navbar-collapse.collapse {
    display: flex !important;
    visibility: visible !important;
  }
  
  .navbar-collapse.collapse:not(.show) {
    display: flex !important;
    visibility: visible !important;
  }
  
  .main-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
  }
  
  .main-menu .nav-item {
    margin: 0 0.5rem;
  }
  
  .main-menu .nav-link {
    padding: 0.5rem 1rem;
    color: #596277 !important;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .main-menu .nav-link:hover {
    color: #4F46E5 !important;
  }
}

/* Sticky header styles when scrolled */
.sticky-header.affix {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hide preloader after page loads */
#preloader {
  display: none !important;
}

/* Section heading font sizes to match zentrobiz.com */
.section-heading h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-heading p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #596277;
}

/* Feature list item styling */
.list-two-col li h3.h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.list-two-col li p {
  font-size: 1rem;
  line-height: 1.6;
  color: #596277;
}

/* Mega Dropdown Menu Styles */
.dropdown-menu-lg {
  min-width: 900px !important;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #fff;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.dropdown-menu-lg .row {
  margin: 0;
}

.dropdown-menu-lg .col-lg-4 {
  padding: 0 1.5rem;
  border-right: 1px solid #e5e7eb;
}

.dropdown-menu-lg .col-lg-4:last-child {
  border-right: none;
}

.dropdown-menu-lg h6 {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.dropdown-menu-lg .dropdown-item {
  padding: 0.5rem 0;
  background: transparent !important;
  white-space: normal;
}

.dropdown-menu-lg .dropdown-item:hover {
  background: transparent !important;
}

.dropdown-menu-lg .dropdown-item span.fw-semibold {
  color: #1f2937;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.dropdown-menu-lg .dropdown-item:hover span.fw-semibold {
  color: #4F46E5;
}

.dropdown-menu-lg .dropdown-item small {
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 1.875rem;
  }
  
  .section-heading p {
    font-size: 1rem;
  }
  
  .dropdown-menu-lg {
    min-width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }
  
  .dropdown-menu-lg .col-lg-4 {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .dropdown-menu-lg .col-lg-4:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
