/* Industrial Construction Theme Styles */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateX(0);
}

/* Industrial Typography & Elements */
h1, h2, h3, h4, .nav-link {
  letter-spacing: 0.05em;
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #b91c1c;
}

::-webkit-scrollbar-thumb:hover {
  background: #991b1b;
}

/* Selection Color */
::selection {
  background: #b91c1c;
  color: white;
}