/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #111111;
}

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

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

/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Fade-in animation for sections */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Custom transition for buttons */
.btn-gold-transition {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle border glow for premium feel */
.border-glow {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
    transition: box-shadow 0.3s ease;
}

.border-glow:hover {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.7);
}