/* Simple CSS for Recommit Studio */

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

/* Simple card hover effect */
.service-card:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Simple button hover effects */
button:hover {
    transform: scale(1.02);
    transition: all 0.3s ease;
}

/* Form focus styles */
.form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

/* Simple scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: #64748b;
    border-radius: 3px;
}

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

/* Mobile optimizations */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem !important;
    }
    
    .text-6xl {
        font-size: 3rem !important;
    }
    
    .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
}