/* Custom Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Fonts */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Selection Color */
::selection {
    background: #D4AF37;
    color: #000;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Golden Text Gradient */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37 0%, #F1D592 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar blur effect on scroll */
nav.scrolled {
    background: rgba(18, 18, 18, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Custom transitions for form inputs */
input:focus ~ label,
input:not(:placeholder-shown) ~ label {
    color: #D4AF37;
    transform: translateY(-20px) scale(0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Utility for hidden scrollbar but functionally scrolling */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
