/* ==== Barre de navigation ==== */
.navbar {
  background-color: #ffe100;
  padding: 10px 20px;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  height: 40px;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar nav ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
}

/* ==== Page d'accueil (Hero) ==== */
.hero {
  background: url('img/background.jpg') no-repeat center center;
  background-size: cover;
  height: 90vh;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tracking-box {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.tracking-box h1 {
  color: #ba0c2f;
}
.tracking-box input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.tracking-box button {
  background-color: #ba0c2f;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
.tracking-box button:hover {
  background-color: #a00929;
}

/* ==== Footer ==== */
.footer {
  background-color: #ffe100;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}
/* ==== Page tracking ==== */
.tracking {
  padding: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.tracking h1, .tracking h2 {
  color: #ba0c2f;
  margin-bottom: 15px;
  font-size: 24px;
}
.details {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.details p {
  margin: 6px 0;
  font-size: 16px;
}

/* Tableau historique */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  margin-bottom: 40px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
  font-size: 14px;
}
th {
  background-color: #ffe100;
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  .tracking {
    padding: 20px 10px;
  }
  table, th, td {
    font-size: 13px;
  }
  .navbar nav ul {
    flex-direction: column;
    gap: 10px;
  }
}
