/* shadcn/ui inspired base styles */
body {
    color: #111111;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    width: 8px;
}

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

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

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

.btn-primary {
    background-color: #111111;
    color: #ffffff;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #27272a;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
}

.card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.05);
}

.card:hover {
    border-color: #d4d4d4;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.03), 0 4px 6px -4px rgba(0,0,0,0.02);
}

.badge {
    background-color: #f5f5f5;
    color: #111111;
    border: 1px solid #e5e5e5;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Subtle grid background for hero */
.bg-grid-slate-100 {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='%23f1f5f9'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
}
