/* ===== ESTILOS COMUNES COMPARTIDOS ===== */
/* Este archivo contiene estilos que se repiten en todas las páginas */

/* Selector de idioma - Estilo común */
#language-selector {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #1a1a1a; 
  color: #f6e7d7; 
  border: 1px solid #d4a055; 
  border-radius: 12px;
  padding: 10px 48px 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23d4a055' viewBox='0 0 24 24' width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  transition: all 0.35s ease-in-out;
  box-shadow: 0 4px 10px rgba(212, 160, 85, 0.15);
  animation: fadeInDrop 0.5s ease forwards;
}

#language-selector:hover {
  background-color: #222;
  border-color: #f0c170;
  box-shadow: 0 6px 12px rgba(212, 160, 85, 0.25);
  transform: scale(1.02);
}

#language-selector:focus {
  outline: none;
  box-shadow: 0 0 8px rgba(244, 190, 86, 0.6);
}

@keyframes fadeInDrop {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menú Hamburguesa - Estilo común */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--secondary-color, #f7a54a);
  transition: all 0.3s ease;
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

