/* ═══ Frisspiac.hu — Custom CSS ═══ */

/* Scrollbar hide for horizontal sliders */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Marquee animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 30s linear infinite;
}

/* Fade-up animation for hero content */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 1s ease-out both;
}

/* Hero slide transitions */
.hero-slide {
  transition: opacity 1s ease-in-out;
}

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

/* Cursor styles for drag */
.cursor-grabbing {
  cursor: grabbing !important;
}
.cursor-grabbing * {
  cursor: grabbing !important;
}

/* Custom select styling */
select {
  background-image: none;
}

/* Focus styles */
*:focus-visible {
  outline: 2px solid #2B4C3B;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #2B4C3B;
  color: white;
}
