/* Custom styles that complement Tailwind */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero video overlay */
.video-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Custom animation for buttons */
.btn-zoom {
    transition: transform 0.3s ease;
}

.btn-zoom:hover {
    transform: scale(1.05);
}

/* Portfolio item hover effect */
.portfolio-item {
    transition: all 0.3s ease;
}

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

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

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

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

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