/*
Theme Name: KaamLao Enterprise
Theme URI: https://kaamlao.com
Description: Naukri-level premium job board UI, zero plugins.
Author: KaamLao Team
Version: 2.0.0
*/

:root {
  --primary: #275df5; /* Tech Blue */
  --primary-hover: #1c4bd6;
  --bg-light: #f3f5f7;
  --text-main: #091e42;
  --text-muted: #6b778c;
  --border: #dfe1e6;
  --card-bg: #ffffff;
}

body {
  margin: 0; background-color: var(--bg-light); color: var(--text-main);
  font-family: system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased;
}
.kaamlao-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- PROFESSIONAL NAVBAR --- */
.kaamlao-header { background: var(--card-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; align-items: center; gap: 30px; }
.kaamlao-logo { font-size: 26px; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 15px; transition: 0.2s; }
.nav-links a:hover { color: var(--primary); }
.header-actions { display: flex; gap: 12px; }
.btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 8px 18px; border-radius: 50px; font-weight: 600; text-decoration: none; }
.btn-employer { background: var(--primary); color: white; padding: 8px 18px; border-radius: 50px; font-weight: 600; text-decoration: none; }

/* --- MULTI-INPUT HERO SEARCH --- */
.hero-section { background: #ffffff; padding: 60px 0; border-bottom: 1px solid var(--border); text-align: center; }
.hero-title { font-size: 38px; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; }
.advanced-search-bar { 
    display: flex; max-width: 800px; margin: 0 auto; background: white; 
    border: 1px solid var(--border); border-radius: 50px; box-shadow: 0 8px 24px rgba(9, 30, 66, 0.08); padding: 6px; 
}
.search-input-group { display: flex; flex: 1; align-items: center; padding: 0 15px; border-right: 1px solid var(--border); }
.search-input-group:last-of-type { border-right: none; }
.search-input-group input { border: none; outline: none; width: 100%; padding: 12px 0; font-size: 15px; color: var(--text-main); }
.btn-search { background: var(--primary); color: white; border: none; padding: 0 35px; border-radius: 50px; font-weight: 700; font-size: 16px; cursor: pointer; transition: 0.2s; }
.btn-search:hover { background: var(--primary-hover); }

/* --- NAUKRI-STYLE ENTERPRISE JOB CARD --- */
.enterprise-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px;
    margin-bottom: 20px; transition: box-shadow 0.2s, transform 0.2s; cursor: pointer;
}
.enterprise-card:hover { box-shadow: 0 10px 30px rgba(9, 30, 66, 0.08); transform: translateY(-2px); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.job-title { font-size: 20px; font-weight: 700; color: var(--text-main); margin: 0 0 6px 0; line-height: 1.3; }
.company-name { font-size: 15px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.verified-tick { color: #16a34a; font-size: 14px; }

/* The Holy Trinity: Exp, Sal, Loc */
.job-meta-grid { display: flex; gap: 20px; font-size: 14px; color: var(--text-muted); margin-bottom: 16px; font-weight: 500; }
.meta-icon { margin-right: 6px; font-size: 16px; }

.job-snippet { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* Skill Tags */
.skill-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.skill-tag { background: #f3f5f7; color: #42526e; padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; }

.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #f3f5f7; font-size: 13px; color: var(--text-muted); }
.apply-btn { background: var(--primary); color: white; padding: 8px 24px; border-radius: 6px; font-weight: 600; text-decoration: none; }

@media (max-width: 768px) {
  .advanced-search-bar { flex-direction: column; border-radius: 12px; padding: 15px; gap: 10px; }
  .search-input-group { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 0; }
  .btn-search { padding: 15px; border-radius: 8px; }
  .job-meta-grid { flex-direction: column; gap: 8px; }
  .header-actions { display: none; /* Hide on mobile to save space */ }
}