/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #050A15;
}

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

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

/* Selection color */
::selection {
    background: #C9A84C;
    color: #050A15;
}

/* Mobile menu transitions */
#mobile-menu.active {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* Form focus styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #C9A84C !important;
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

/* Image hover effects */
img {
    transition: transform 0.7s ease;
}

/* Gold gradient text for specific use */
.text-gold-gradient {
    background: linear-gradient(135deg, #C9A84C 0%, #E5C572 50%, #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
