/* ==========================================================================
   Real Homes Template - Custom Styles
   ========================================================================== */

/* Body defaults */
body {
    font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Override existing styles that may conflict with Tailwind */
.destaques {
    position: relative;
    z-index: 0;
}

/* Select styling for search bar */
#searchFormHome select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

/* Carousel - hide scrollbar */
.rh-carousel {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.rh-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Screen-reader only (accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
