/* Custom Font Faces if needed, but we use Google Fonts */

:root {
  --accent: #ffffff;
  --bg-dark: #0c0a09;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom transitions */
.transition-slow {
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0c0a09;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #44403c;
}

/* Selection color */
::selection {
    background: #e7e5e4;
    color: #1c1917;
}

/* Hover effects for images */
.group:hover img {
    filter: brightness(0.8) contrast(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}
