.custom-header {
  background-color: #B4B671;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
}

.header-logo-img {
  height: 80px;
  transition: 0.3s ease-in-out;
}

.header-logo-img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
  transform: scale(1.05);
}

.header-socials a {
  margin-left: 15px;
  transition: 0.3s ease-in-out;
}

.header-socials img {
  width: 50px;
  height: 50px;
  transition: 0.3s ease-in-out;
}

.header-socials img:hover {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.5));
  transform: scale(1.1);
}
