/* Custom styles that complement Tailwind */
body {
    scroll-behavior: smooth;
}

/* Hero section overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 27, 42, 0.9) 0%, rgba(10, 27, 42, 0.7) 50%, rgba(10, 27, 42, 0.3) 100%);
}

/* Custom shadow for cards */
.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animation for hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: translateY(-5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #D5A74E;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c2953e;
}