/* Custom styles for the HTML version */

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

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

::-webkit-scrollbar-track {
  background: hsl(0 0% 96%);
}

::-webkit-scrollbar-thumb {
  background: hsl(177 76% 33%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(177 76% 30%);
}

/* Ensure video covers properly */
video {
  object-fit: cover;
}

/* Testimonials carousel transition */
#testimonialsContainer {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* HubSpot form styling */
.hs-form-frame {
  min-height: 400px;
}

/* Ensure proper spacing for sections */
section {
  scroll-margin-top: 80px;
}

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

/* Language dropdown positioning */
#languageDropdown {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
button:hover {
  cursor: pointer;
}

/* Ensure images load properly */
img {
  max-width: 100%;
  height: auto;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid hsl(177 76% 33%);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  nav,
  footer {
    display: none;
  }
}

/* Additional protection for contact info - make it harder for crawlers */
[data-protected="true"] {
  /* Prevent easy text selection (though users can still select if needed) */
  /* Note: This is a soft protection - determined users can still copy */
}

