:root {
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #fafafa;
  color: var(--text);
}






.navbar{
  position:fixed;
  width:100%;
  top:0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  z-index:1000;
}

.logo{
  height:38px;
}

.nav-links{
  display:flex;
  align-items:center;
}

.nav-links a{
  color:#333;
  margin:0 14px;
  text-decoration:none;
  font-weight:500;
}

.nav-links a:hover{
  color:#2563eb;
}

.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}






/* CONTAINER */
.careers {
  max-width: 1100px;
  margin: auto;
  padding: clamp(30px, 5vw, 70px);
}

/* TOP */
.top {
  margin-bottom: 40px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 15px;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 15px;
}

.subtitle {
  color: var(--muted);
  max-width: 600px;
  font-size: clamp(14px, 1.2vw, 16px);
}

/* FILTERS */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.filters button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.filters .active {
  background: #111827;
  color: white;
}

/* JOB LIST */
.jobs {
  border-top: 1px solid var(--border);
}

.job {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

.job-left h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.job-left p {
  color: var(--muted);
  margin-bottom: 10px;
}

/* TAGS */
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tags span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
}

/* APPLY */
.apply {
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .job {
    flex-direction: column;
    align-items: flex-start;
  }

  .apply {
    margin-top: 10px;
  }
}



/* FOOTER */
.footer {
    background: #081a36;
    color: #ccc;
    padding: 30px;
    text-align: center;
}