/* ----------------------------------------
   PAS DE TYPING BAR
---------------------------------------- */
body,
*:not(input):not(textarea):not(select):not([contenteditable="true"]) {
  caret-color: transparent !important;
  outline: none !important;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #00588f;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  color: #fd8301;
}

header {
  background: linear-gradient(135deg, #00588f, #fd8301);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  border-bottom: 6px solid #00588f;
  border-radius: 0 0 1.5rem 1.5rem;
}

.logo-container img {
  width: 180px;
  height: 180px;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.logo-container img:hover {
  transform: translateY(-5px) scale(1.03);
  cursor: pointer;
}

.main-nav {
  background-color: #ffffff;
  border-bottom: 4px solid #00588f;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav li {
  position: relative;
}

.main-nav li a {
  text-decoration: none;
  color: #00588f;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.main-nav li a:hover {
  background-color: #fd8301;
  color: white;
}

.main-nav li a.active {
  background-color: #fd8301;
  color: white;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f0f0f0;
  color: #555;
  border-top: 1px solid #ddd;
  border-radius: 2rem 2rem 0 0;
}