/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

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

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

/* Selection color */
::selection {
    background: #C5A065;
    color: #1A1A1A;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar scroll state */
nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile menu animation */
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Input focus styles */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 1px #C5A065;
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
}

/* Gold gradient text effect */
.text-gold-gradient {
    background: linear-gradient(135deg, #C5A065 0%, #E8DCC4 50%, #C5A065 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
