/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Animation utilities */
@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;
}

/* Image hover effects */
img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

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

/* Subtle pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(157, 41, 82, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(157, 41, 82, 0.5);
    }
}

.btn-primary:hover {
    animation: pulse-glow 2s infinite;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

#mobile-menu.inactive {
    opacity: 0;
    visibility: hidden;
}
