/* Custom Logo Size Adjustments for BULLS ART STUDIO */

/* Main Header Logo - Larger for better visibility */
.ori-header-section .brand-logo {
  width: 180px !important;
  max-width: 180px !important;
}

.ori-header-section .brand-logo img {
  max-width: 100% !important;
  height: auto !important;
  width: 100% !important;
}

/* Mobile Menu Logo - Slightly smaller for mobile */
.mobile_menu_content .m-brand-logo {
  width: 140px !important;
  max-width: 140px !important;
  margin: 50px auto !important;
}

.mobile_menu_content .m-brand-logo img {
  max-width: 100% !important;
  height: auto !important;
  width: 100% !important;
}

/* Sidebar Logo - Medium size for sidebar */
.sidebar-info-contents .content-inner .logo {
  margin-bottom: 30px !important;
  max-width: 160px !important;
}

.sidebar-info-contents .content-inner .logo img {
  width: 160px !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Footer Logo - Smaller for footer section */
.ori-footer-widget .logo-widget img {
  width: 120px !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Logo-based Loading Animation */
.logo-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
}

.loader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 30px;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Loading text */
.loader-text {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  opacity: 0.8;
  letter-spacing: 1px;
  animation: textFade 2s ease-in-out infinite;
}

/* Main preloader styling */
#preloader {
  background: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .logo-loader {
  text-align: center;
}

/* Sidebar loader styling */
.xs-sidebar-group .loader-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000 !important;
}

.xs-sidebar-group .loader-bg .logo-loader {
  text-align: center;
}

/* Animations */
@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .ori-header-section .brand-logo {
    width: 150px !important;
    max-width: 150px !important;
  }

  .mobile_menu_content .m-brand-logo {
    width: 120px !important;
    max-width: 120px !important;
  }

  .loader-logo {
    width: 100px;
  }

  .loader-spinner {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .ori-header-section .brand-logo {
    width: 130px !important;
    max-width: 130px !important;
  }

  .mobile_menu_content .m-brand-logo {
    width: 100px !important;
    max-width: 100px !important;
  }

  .sidebar-info-contents .content-inner .logo img {
    width: 140px !important;
  }

  .ori-footer-widget .logo-widget img {
    width: 100px !important;
  }

  .loader-logo {
    width: 80px;
  }

  .loader-spinner {
    width: 35px;
    height: 35px;
    border-width: 2px;
  }

  .loader-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .ori-header-section .brand-logo {
    width: 110px !important;
    max-width: 110px !important;
  }

  .mobile_menu_content .m-brand-logo {
    width: 90px !important;
    max-width: 90px !important;
  }

  .sidebar-info-contents .content-inner .logo img {
    width: 120px !important;
  }

  .ori-footer-widget .logo-widget img {
    width: 80px !important;
  }

  .loader-logo {
    width: 60px;
  }

  .loader-spinner {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }

  .loader-text {
    font-size: 11px;
  }
}
