/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020610;
}

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

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

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

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

/* Selection color */
::selection {
    background: #D4AF37;
    color: #020610;
}

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

/* Subtle animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for cards */
.group:hover .group-hover\\:scale-105 {
    transform: scale(1.05);
}

/* Focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Image aspect ratio fallback */
.aspect-square {
    aspect-ratio: 1 / 1;
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

img {
    transition: transform 0.7s ease;
}
