/* Navbar globale */
/* Reset */
@font-face {
    font-family: 'PoliceUnistraBold';
    src: url('/fonts/UnistraA-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'PoliceUnistra';
    src: url('/fonts/UnistraA-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PoliceUnistra', Arial, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
}

/* Navbar */
.navbar {
  background-color: #174173;
  padding: 0.75rem 2rem;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'PoliceUnistraBold', Arial, sans-serif;
}

.navbar .navbar-logo {
  height: 100%;
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.navbar-item a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-item a:hover {
  color: #aad4ff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .navbar-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-item {
    margin: 0.5rem 0;
  }
}


