/* Custom Global Styles */
html {
    scroll-behavior: smooth;
}

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

::selection {
    background-color: #D4A017;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #0A5C63; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #102A2E; 
}

/* Utilities */
.text-shadow {
    text-shadow: 2px 4px 10px rgba(0,0,0,0.6);
}

.shadow-soft {
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.08);
}

.shadow-glow {
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.4);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.15);
}

/* Hide scrollbar for gallery container if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
