/* Custom Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Color */
::selection {
    background-color: #c2b280; /* Gold */
    color: #0f172a; /* Navy */
}

/* Smooth Image Transitions */
img {
    transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Print Styles for Articles */
@media print {
    header, footer, #hero-section, aside {
        display: none !important;
    }
    article {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    body {
        background: white;
        color: black;
    }
}
