/* Additional custom styles */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #82183b;
    border-radius: 4px;
}

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

/* Selection color */
::selection {
    background: #fce7eb;
    color: #6b1a3b;
}
