/* Smooth scrolling and font rendering */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Gold Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #c5a35d;
    border-radius: 10px;
}

/* Masonry Column Layout */
.columns-1, .sm\:columns-2, .lg\:columns-3, .md\:columns-4 {
    column-fill: balance;
}

/* Standard sizing for media */
img, video {
    display: block;
    width: 100%;
    height: auto;
}

button {
    outline: none !important;
}