/* Custom styles for Emphasis Unisex */

html {
  scroll-behavior: smooth;
}

body {
  font-feature-settings: "cv01", "cv02", "cv03";
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #9f1a28;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Utility classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image hover effects */
img {
  transition: transform 0.3s ease;
}

/* Button hover effects */
button, a {
  transition: all 0.3s ease;
}

/* Focus styles */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 28, 44, 0.1);
}

/* Mobile menu animation */
#mobile-menu {
  animation: fadeIn 0.3s ease;
}
