/* Root CSS Variables for Custom Color Palette */
:root {
    --color-primary: #5A2A27;
    --color-secondary-1: #8D5B4C;
    --color-secondary-2: #5C4742;
    --color-secondary-3: #A5978B;
    --color-secondary-4: #C4BBAF;

    --color-silver-50: #f4f3f0;
    --color-silver-100: #e9e6e2;
    --color-silver-200: #d4cdc4;
    --color-silver-300: #beb4a7;
    --color-silver-400: #a89b8a;
    --color-silver-500: #93826c;
    --color-silver-600: #756857;
    --color-silver-700: #584e41;
    --color-silver-800: #3b342b;
    --color-silver-900: #1d1a16;
    --color-silver-950: #15120f;

    --color-taupe-50: #f4f2f1;
    --color-taupe-100: #e9e5e2;
    --color-taupe-200: #d3ccc5;
    --color-taupe-300: #bcb2a9;
    --color-taupe-400: #a6988c;
    --color-taupe-500: #907e6f;
    --color-taupe-600: #736559;
    --color-taupe-700: #564c43;
    --color-taupe-800: #3a332c;
    --color-taupe-900: #1d1916;
    --color-taupe-950: #141210;

    --color-mauve-bark-50: #f4f1f0;
    --color-mauve-bark-100: #eae3e1;
    --color-mauve-bark-200: #d4c7c4;
    --color-mauve-bark-300: #bfaba6;
    --color-mauve-bark-400: #a98f89;
    --color-mauve-bark-500: #94736b;
    --color-mauve-bark-600: #765c56;
    --color-mauve-bark-700: #594540;
    --color-mauve-bark-800: #3b2e2b;
    --color-mauve-bark-900: #1e1715;
    --color-mauve-bark-950: #15100f;

    --color-terracotta-clay-50: #f6f0ee;
    --color-terracotta-clay-100: #ede1de;
    --color-terracotta-clay-200: #dbc4bd;
    --color-terracotta-clay-300: #c9a69c;
    --color-terracotta-clay-400: #b8897a;
    --color-terracotta-clay-500: #a66b59;
    --color-terracotta-clay-600: #855647;
    --color-terracotta-clay-700: #634036;
    --color-terracotta-clay-800: #422b24;
    --color-terracotta-clay-900: #211512;
    --color-terracotta-clay-950: #170f0c;

    --color-espresso-50: #f7eeed;
    --color-espresso-100: #f0dddb;
    --color-espresso-200: #e0bab8;
    --color-espresso-300: #d19894;
    --color-espresso-400: #c27670;
    --color-espresso-500: #b3534d;
    --color-espresso-600: #8f433d;
    --color-espresso-700: #6b322e;
    --color-espresso-800: #47211f;
    --color-espresso-900: #24110f;
    --color-espresso-950: #190c0b;
}

/* Custom Scrollbars for Rooms Slider */
.rooms-slider::-webkit-scrollbar {
    height: 6px;
}
.rooms-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.rooms-slider::-webkit-scrollbar-thumb {
    background: #8D5B4C; 
    border-radius: 10px;
}
.rooms-slider::-webkit-scrollbar-thumb:hover {
    background: #5C4742; 
}

/* Custom cursive font styling */
.script-text {
    font-family: 'Great Vibes', cursive;
}
