/* Custom Header CSS for Theme One Two - Reduce Sticky Logo Size */

/* Normal logo - make it smaller than default */
.header-menu-area .logo img {
  max-width: 180px !important;
  height: auto !important;
}

/* Sticky header - make logo even smaller */
.header-menu-area.sticky .logo img {
  max-width: 120px !important;
  height: auto !important;
  transition: max-width 0.3s ease;
}

/* Reduce header padding when sticky */
.header-menu-area.sticky {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* Theme Two (home-two) sticky logo */
header.home-two .container-fluid.sticky .logo img {
  max-width: 120px !important;
  height: auto !important;
}

.header-two.sticky .logo img {
  max-width: 120px !important;
  height: auto !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .header-menu-area .logo img {
    max-width: 150px !important;
  }
  
  .header-menu-area.sticky .logo img {
    max-width: 100px !important;
  }
}

@media (max-width: 767px) {
  .header-menu-area .logo img {
    max-width: 130px !important;
  }
  
  .header-menu-area.sticky .logo img {
    max-width: 90px !important;
  }
}
