/* Header: Social, Menú i Idiomes */
.hero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}



.social-links{
  display: flex;
  flex-direction: row;
  gap: 20px;
 
}

.social-links a{
  background-color: #F9C83B;
  padding: 5px;
  border-radius: 500px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-links i{
  color: black;
  font-size: 18px;
}

.right-header{
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
}

.lang-selector{
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.lang-selector a{
  color: white;
  text-decoration: none;
  opacity: 0.8;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  
}
 
.lang-selector a.active {
  font-weight: 600;
  opacity: 1;
}
.brand-nav ul {
    list-style: none;
    display: flex;
    gap: 40px; /* Espai entre enllaços */
    padding: 0;
    margin: 0;
}

.brand-nav a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.brand-nav a:hover {
    color: white;
}

.lang-selector a.active { font-weight: bold; }

.top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.header-social{
  display: flex;
  flex-direction: row;
  gap: 20px;
 
}

.header-social i{
  color: black;
  font-size: 18px;
}

.header-social a{
  padding: 5px;
  border-radius: 500px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}