/* Base styles handled by Tailwind, adding specific aesthetic tweaks here */

:root {
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: #27272A; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3F3F46; 
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Fade Up Animation Class */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery filtering transitions */
.gallery-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hidden {
    display: none;
}

/* Smooth anchor scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid #E11D48;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: #E11D48;
    color: white;
}
