/*
Theme Name: TechJobs360 Pro Child
Theme URI: https://techjobs360.com
Description: A premium child theme for TechJobs360 (Astra) to implement World-Class design standards.
Author: Antigravity AI
Template: astra
Version: 1.0.0
*/

:root {
    /* Premium Tech Palette - High Contrast */
    --tj-primary: #2563eb;
    /* Stronger Blue */
    --tj-primary-dark: #1e40af;
    --tj-dark-bg: #020617;
    /* Darker Slate */
    --tj-card-bg: #ffffff;
    --tj-text-main: #000000;
    /* Pure Black for Max Contrast */
    --tj-text-muted: #334155;
    /* Dark Slate for secondary text */
    --tj-glass-border: rgba(0, 0, 0, 0.1);
    /* Visible border */
    --tj-radius: 8px;
    --tj-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Base Typography */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background-color: #f1f5f9;
    color: var(--tj-text-main);
    line-height: 1.6;
}

/* Glassmorphism Header */
.site-header {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Premium Navigate (Mega Menu Base) */
.tj-nav-item {
    font-weight: 500;
    color: var(--tj-text-main);
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.tj-nav-item:hover {
    color: var(--tj-primary);
    background: rgba(59, 130, 246, 0.05);
    border-radius: 6px;
}

/* Modern Cards */
.job-listing-card {
    background: white;
    border-radius: var(--tj-radius);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.job-listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--tj-primary);
}

/* Tech Badges */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #eff6ff;
    color: var(--tj-primary);
    border: 1px solid #dbeafe;
}

/* Search Bar Hero */
.tj-hero-search {
    background: linear-gradient(135deg, var(--tj-dark-bg) 0%, #1e1b4b 100%);
    padding: 4rem 1rem;
    text-align: center;
    color: white;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 3rem;
}

.tj-search-container {
    max-width: 800px;
    margin: 2rem auto 0;
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tj-search-input {
    flex: 1;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    outline: none;
    border-radius: 0.5rem;
}

.tj-search-btn {
    background: var(--tj-primary);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tj-search-btn:hover {
    background: var(--tj-primary-dark);
}

/* Footer Improvements */
.site-footer {
    background: var(--tj-dark-bg);
    color: #94a3b8;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.site-footer h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.site-footer a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}

.site-footer a:hover {
    color: white;
}