.topbar {
  display: flex;                
  justify-content: space-between; 
  align-items: center;          
  padding: 2px 10px;           /* moins de padding = moins de hauteur */
  background-color: #3b3c3d;   
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;             /* texte un peu plus petit */
  line-height: 1.2;            /* réduit l'espacement vertical */
  font-family: 'Raleway', sans-serif;
  flex-wrap: nowrap;           
  overflow: hidden;            
}

.topbar .footer-social {
  display: flex;
  gap: 6px;                    
  margin-top: 0;  
}

.topbar .footer-social a {
  width: 22px;                 /* icônes plus petites pour moins de hauteur */
  height: 22px;
  display: flex;
  align-items: center;         /* centre verticalement les icônes */
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}

.topbar .footer-social a:hover {
  background-color: #1e90ff; 
  color: #fff;
  border-color: #1e90ff;
}

@media (max-width: 600px) {

  .topbar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

}