/*
Theme Name: Navoda Holding Theme
Theme URI: http://localhost/navodanew/navodaholding
Author: Antigravity AI
Author URI: https://github.com/google-deepmind
Description: Clean luxury corporate portal and Polot 1882 flagship import distributor theme for Navoda Holding (Pvt) Ltd.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: navoda
Tags: translation-ready, custom-menu, custom-background, featured-images, theme-options

This theme is a custom conversion of the Navoda Holding corporate HTML website.
*/

/* ==========================================================================
   THEME OVERRIDES & FIXES
   ========================================================================== */

/* Fix Mobile Hamburger (3 lines) Visibility */
.mobile-toggle {
  display: none;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  flex-direction: column !important;
  gap: 6px !important;
  z-index: 10100 !important;
  position: relative !important;
  width: 42px !important;
  height: 42px !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex !important;
  }
}

.mobile-toggle span {
  display: block !important;
  width: 26px !important;
  height: 2.5px !important;
  background-color: #1F2937 !important; /* Ensure dark color for high contrast on light header/slide */
  transition: all 0.25s ease !important;
}

/* Hamburger transition when menu drawer is open */
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px) !important;
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0 !important;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px) !important;
}

/* Ensure WordPress emoji images inside button do not break layout */
.navbar .btn img.emoji {
  height: 1.1em !important;
  width: 1.1em !important;
  margin: 0 4px !important;
  vertical-align: -0.1em !important;
  display: inline-block !important;
}

/* House of Brands Logo Display Overrides */
.brand-logo-item-wrap {
  opacity: 1 !important;
  text-decoration: none !important;
}

.brand-logo-item-wrap img {
  filter: none !important;
  height: 150px !important; /* Scaled up to 3x original size to be highly visible and clear */
  max-width: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease !important;
}

/* Hover effects */
.brand-logo-item-wrap:hover {
  opacity: 1 !important;
}

.brand-logo-item-wrap:hover img {
  filter: none !important;
  transform: scale(1.08) !important;
}


