/* Custom Styles */

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

/* Text Stroke Effect */
.stroke-text {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

/* Custom Selection Color */
::selection {
  background-color: #d4af37;
  color: white;
}

/* Clip Path for Hero Background */
@media (min-width: 768px) {
  .clip-diagonal {
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
  }
}

/* Hide scrollbar for cleaner look if needed */
::-webkit-scrollbar {
  width: 8px;
}

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

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

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