/* === Reset & Global === */
body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f1f3f9;
  color: #333;
  line-height: 1.6;
}

/* === Header & Navigation === */
.site-header {
  background-color: #0d6efd;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.site-title a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* === Container === */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === Breadcrumb / Fil d'Ariane === */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* === Job List === */
.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job {
  background: #ffffff;
  border: 1px solid #e3e7ed;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job:hover {
  transform: scale(1.015);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background-color: #f8fbff;
}

.job h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #0d6efd;
}

.job p {
  margin: 10px 0;
  font-size: 1rem;
}

.job small {
  display: block;
  color: #666;
  margin-top: 8px;
}

/* === Pagination === */
.pagination {
  text-align: center;
  margin-top: 30px;
}

.pagination a {
  display: inline-block;
  padding: 10px 14px;
  margin: 0 5px;
  background-color: #0d6efd;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.pagination a:hover {
  background-color: #0a58ca;
}

/* === Footer === */
.footer {
  background-color: #f8f9fa;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  margin-top: 40px;
  border-top: 1px solid #dee2e6;
}

/* === Forms (Contact) === */
form label {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button[type="submit"] {
  background-color: #0d6efd;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0a58ca;
}