/* === Global Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(145deg, #eaeaea, #f5f5f5);
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Header === */
.site-header {
  background: #ffffff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  max-height: 75px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: #1a1a1a;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0073e6;
}

/* === Job Cards === */
main {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
}

.job-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: box-shadow 0.3s;
}

.job-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.job-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.job-card p {
  margin: 6px 0;
}

.job-card a {
  display: inline-block;
  margin-top: 12px;
  background-color: #0073e6;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.job-card a:hover {
  background-color: #005bb5;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 0.85rem;
  color: #999;
}

/* === Mobile === */
.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    padding: 8px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background-color: white;
    border-top: 1px solid #eee;
    padding: 10px 15px;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu a {
    padding: 10px 0;
    text-decoration: none;
    font-weight: bold;
    color: #1a1a1a;
    border-bottom: 1px solid #eee;
  }
}
