/* Custom styles for Tailwind - Dawam Landing Page */

/* Scrolled navbar state */
.navbar-scrolled {
    @apply bg-dark-900/90 backdrop-blur-xl border-b border-white/10 py-2;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: white;
}

/* Form focus states */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

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

/* Hide scrollbar but allow scrolling */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #0a0a1a;
}

body::-webkit-scrollbar-thumb {
    background: #3730a3;
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}