/* ====== NAVBAR STYLES ====== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 999;
}

header #logo img {
  height: 50px;
}

header nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

header nav ul li a:hover::after {
  width: 100%;
}

/* ====== SOCIAL ICONS (RIGHT SIDE) ====== */
#social-icons {
  position: fixed;
  right: 15px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 998;
}

#social-icons a {
  color: #ffffff;
  font-size: 22px;
  transition: color 0.3s ease;
  text-decoration: none;
}

#social-icons a:hover {
  opacity: 0.8;
}

/* ====== LANGUAGE ICONS (LEFT SIDE) ====== */
#language-icons {
  position: fixed;
  left: 15px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 998;
}

#language-icons img {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#language-icons img:hover {
  transform: scale(1.1);
}
