/* Tools Common Non-Critical CSS */
/* This file contains non-critical styles loaded asynchronously */

/* Color Variants - Gradients */
.blue { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.green { background: linear-gradient(135deg, #10b981, #059669); }
.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.gray { background: linear-gradient(135deg, #6b7280, #4b5563); }
.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }

/* Color Variants - Background 100 */
.blue-100 { background-color: #dbeafe; }
.green-100 { background-color: #d1fae5; }
.purple-100 { background-color: #f3e8ff; }
.orange-100 { background-color: #fed7aa; }
.red-100 { background-color: #fee2e2; }
.pink-100 { background-color: #fce7f3; }
.gray-100 { background-color: #f3f4f6; }
.indigo-100 { background-color: #e0e7ff; }
.yellow-100 { background-color: #fef9c3; }
.rose-100 { background-color: #ffe4e6; }

/* Color Variants - Text 700 */
.blue-700 { color: #1d4ed8; }
.green-700 { color: #047857; }
.purple-700 { color: #6d28d9; }
.orange-700 { color: #c2410c; }
.red-700 { color: #b91c1c; }
.pink-700 { color: #be185d; }
.gray-700 { color: #374151; }
.indigo-700 { color: #4338ca; }
.yellow-700 { color: #a16207; }
.rose-700 { color: #be123c; }

/* Interlinked Tools Section */
.more-tools-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    border-top: 1px solid #e5e7eb;
    text-align: center;
    margin-top: auto;
}

.more-tools-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #1f2937, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tool-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1rem;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.tool-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
    color: #1f2937;
}

.tool-link-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .more-tools-grid {
        grid-template-columns: 1fr;
    }
}
