/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

/* Gold Button */
.btn-gold {
    background: linear-gradient(135deg, #cc9944 0%, #e6c27a 50%, #cc9944 100%);
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-position: right center;
    box-shadow: 0 10px 30px rgba(204, 153, 68, 0.3);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #cc9944;
    border-radius: 5px;
}

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

/* Navigation Active State */
.nav-link.active {
    color: #cc9944;
}

/* Image Hover Effect */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Focus Styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(204, 153, 68, 0.2);
}
