/*	nav.css	*/

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding: 10px 30px;
  
  z-index: 1000;
  
  will-change: transform;
}

.nav-name {
  font-weight: bold;
  color: #1f3c88;
  text-decoration: none;
}

.nav-right {
	display: flex;
	align-items: center;
}

.nav-right button,
.nav-right a {
  margin-left: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px; /*Este es el tamaño del botón Descargar CV*/
  text-decoration: none;
  color: #333;
}

.nav-right #moon-sun-icon {
	font-size: 22px;
}

.nav-right a.btn-cv {
  border: 1px solid #1f3c88;
  padding: 5px 10px;
  border-radius: 4px;
}

.nav-right a.btn-cv:hover {
  background-color: #1f3c88;
  color: white;
}

/* LANGUAGE DROPDOWN */
.lang-option-disabled {
	opacity: 0.4;
	cursor: not-allowed;	
}
.lang-option {
	align-items: center;
	gap: 8px;
}
.lang-selector img{
  position: relative;
  display: inline-flex;
  align-items: center;
}

#current-lang {
  font-size: 22px;
}

/* menú oculto */
.lang-menu {
  position: absolute;
  top: 100%;
  left: 80%;
  transform: translateX(-50%);
  margin-top: 8px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  min-width: 140px;
  z-index: 2000;
}

.lang-menu button {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
}

.lang-menu button:hover {
  background-color: #f2f2f2;
}

