/* Custom styles for Snap-on Franchise Landing Page */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero section background image */
#hero {
  background-image: url('../images/snap_on_tools_hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Accordion styles */
.accordion-content {
  transition: max-height 0.3s ease-out;
}

.accordion-header.active i.fa-plus {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Counter animation */
.counter {
  transition: all 0.5s ease;
}

/* Custom hover effects */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Form validation styles */
input:invalid, textarea:invalid {
  border-color: #E21B22;
}

.error-message {
  color: #E21B22;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Mobile menu transition */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F4F4F5;
}

::-webkit-scrollbar-thumb {
  background: #E21B22;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c01820;
}
