/* Custom CSS for Circux Systems - Enterprise Corporate Theme */

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f1f5f9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Focus Styles */
*:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Text Selection */
::selection {
    background: #dbeafe;
    color: #1e40af;
}

/* Button Styles */
.btn-primary {
    background: #1f2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.btn-secondary {
    background: #f8fafc;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e2e8f0;
    border-color: #9ca3af;
}

/* Card Styles */
.card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Navigation */
.nav-link {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #374151;
}

.nav-link.active {
    color: #1f2937;
    font-weight: 600;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Section Spacing */
.section-padding {
    padding: 4rem 0;
}

/* Utility Classes */
.text-muted {
    color: #6b7280;
}

.bg-muted {
    background: #f9fafb;
}

.bg-gray-25 {
    background: #f8fafc;
}

.border-subtle {
    border-color: #e5e7eb;
}

/* Product Cards */
.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.2s ease;
}

.product-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Feature Tags */
.feature-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-tag.blue {
    background: #eff6ff;
    color: #1e40af;
}

.feature-tag.green {
    background: #f0fdf4;
    color: #166534;
}

/* Shadows */
.shadow-soft {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-medium {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-large {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 2rem 0;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}

/* Animation Utilities */
.transition-all {
    transition: all 0.2s ease;
}

.transition-colors {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-shadow {
    transition: box-shadow 0.2s ease;
}

/* Form Elements */
input, textarea, select {
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Link Styles */
a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #111827;
}

/* Footer */
footer {
    background: #111827;
    color: white;
}

footer a {
    color: #9ca3af;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white;
} 