/* Custom animations and styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #faf9f6;
}

::-webkit-scrollbar-thumb {
    background: #854d58;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d4049;
}

/* Selection color */
::selection {
    background: #ffb300;
    color: #301b20;
}

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

/* Print styles */
@media print {
    nav, #back-to-top, button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
