.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1f7a34; /* Vert RCSE */
  z-index: 2000;
  height: 60px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 15px;
  position: relative;
}

.menu-checkbox {
  display: none; /* Cache la checkbox */
}

.menu-checkbox:checked ~ .menu-mobile {
  display: flex;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

.nav-logo img {
  height: 80px; 
  width: auto;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.burger span {
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

.compte-cercle {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #808080; 
  border: 4px solid #d3d3d3; 
  border-radius: 50%;
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.menu-mobile {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #1f7a34;
  display: none; 
  flex-direction: column;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.menu-mobile a {
  color: white;
  text-decoration: none;
  font-family: 'Passion One', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .header {
    height: 80px;
  }
  
  .nav-logo img {
    height: 110px;
  }
  
  .menu-mobile {
    top: 80px;
    padding: 20px 5%;
  }

  .compte-cercle {
    width: 50px;
    height: 50px;
    background-size: 30px;
  }
}