/* Custom Styles */

/* Base Scrollbar Styling for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

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

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

/* Base Body settings */
html {
    scroll-behavior: smooth;
}

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

/* Date input white icon fix */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Custom Utilities moved to index.html for Tailwind CDN */

/* Menu Tab Underline Animation */
.menu-tab.active .tab-underline {
    transform: scaleX(1);
}

.menu-pane {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    visibility: hidden;
}

.menu-pane.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
    visibility: visible;
}

.menu-content-container {
    overflow: hidden;
}

/* Testimonial slider */
.slider-dot {
    opacity: 0.5;
    transition: all 0.3s ease;
}

.slider-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Color Scheme classes */
.color-scheme-dark {
    color-scheme: dark;
}
