@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

:root {
    --rouge: #f55246;
    --jaune: #ffae44;
    --vert: #03c5b2;
    --bleu: #0e2c69;
}

.geo-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid var(--rouge);
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* Logo */
.geo-header .navbar-brand img {
  max-height: 60px;
}

/* Lien dans le menu */
.geo-header .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.geo-header .nav-link:hover {
  color: var(--bleu); /* bleu Bootstrap */
}

/* Bouton principal */
.geo-header .btn-primary {
  background-color: var(--vert);
  border-color: var(--vert);
  font-weight: 500;
}

.geo-header .btn-primary:hover {
  background-color: var(--bleu);
  border-color: var(--bleu);
}
