/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom font fallbacks if Google Fonts fail */
    font-family: 'DM Sans', sans-serif;
}

/* Smooth transition for navbar background */
#navbar.scrolled {
    background-color: rgba(253, 248, 245, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Custom selection color */
::selection {
    background-color: #c7304b; /* burgundy-600 */
    color: white;
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}
