@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700&family=Dancing+Script:wght@700&display=swap');

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

::-webkit-scrollbar-track {
    background: #254a40;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* Hero Image Frame */
.hero-frame-border {
    position: absolute;
    top: 2rem;
    right: 2rem;
    bottom: -2rem;
    left: -2rem;
    border: 4px solid rgba(227, 220, 194, 0.3);
    /* Cream border */
    z-index: 0;
    pointer-events: none;
}

/* Hide scrollbar for slider but allow function */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}