/* Custom Styles for Noir Premium Theme */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
    border: 1px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
    background: #D4AF37;
    /* Gold Accent */
}

/* Text Selection */
::selection {
    background: #D4AF37;
    color: #000000;
}

/* Noir Image Filters */
.noir-filter {
    filter: grayscale(100%) contrast(120%) brightness(90%);
    transition: all 0.5s ease;
}

.noir-filter:hover {
    filter: grayscale(0%) contrast(100%) brightness(100%);
}

/* Typography Enhancements */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-display {
    font-family: 'Cinzel', serif;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}