/* 
 * PREFER BOOTSTRAP UTILITIES 
 * Use Bootstrap 5 classes wherever possible to maintain consistency and reduce custom CSS.
 */

/* Global navbar offset for fixed-top */
body {
  padding-top: 60px;
}
body.home-page {
  padding-top: 0;
}

/* Remove focus outlines */
:focus,
.form-control:focus,
.form-select:focus,
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Logo Visibility Enhancements - Minimal Custom CSS where Bootstrap utilities fall short */
.footer-logo-wrapper {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  display: inline-block;
  padding: 20px;
  border-radius: 50%;
}



/* Responsive hero logo height */
@media (max-width: 991px) {
  .hero-logo {
    max-height: 80px;
  }
}

/* Responsive Bootstrap override for min-vh-100 to reduce mobile height */
@media (max-width: 767px) {
  .min-vh-100 {
    min-height: auto !important;
  }
}

/* Responsive height utility since Bootstrap 5 lacks one */
@media (min-width: 768px) {
  .hero-container-offset {
    margin-top: -4rem !important;
  }
}
@media (max-width: 767px) {
  .hero-container-offset {
    margin-top: 2rem !important; /* Give more space from fixed nav on mobile */
  }
}

/* Scroll Down Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

.scroll-indicator {
  animation: bounce 2s infinite;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1 !important;
}



/* Animated Hamburger */
.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none !important;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Smooth transition utility */
.transition-all {
  transition: all 0.4s ease !important;
}

/* Premium Product Accordion */
.product-details-accordion .accordion-item {
  background-color: transparent;
  border-left: 0;
  border-right: 0;
}
.product-details-accordion .accordion-button {
  background-color: transparent !important;
  color: var(--bs-dark) !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1.25rem 0;
  box-shadow: none !important;
}
.product-details-accordion .accordion-button:not(.collapsed) {
  color: var(--bs-primary) !important;
}
.product-details-accordion .accordion-body {
  padding: 0 0 1.25rem 0;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}
