/* Custom overrides and additional styles */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Ensure all links are readable */
a {
    text-decoration: none;
}

/* Selection color */
::selection {
    background: #c4355e;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf2f4;
}
::-webkit-scrollbar-thumb {
    background: #c4355e;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8264a;
}

/* Ensure form inputs have proper focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Prevent image layout shift */
img {
    max-width: 100%;
    height: auto;
}
