/**
 * Language Switcher Styles
 */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(224,224,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-link:hover {
  background: rgba(255,255,255,0.1);
  color: var(--star-white);
}

.lang-link.active {
  background: rgba(255,215,0,0.15);
  color: var(--color-phi);
}

/* Inline language switcher for content */
.lang-notice {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.lang-notice-icon {
  font-size: 1.5rem;
}

.lang-notice-text {
  flex: 1;
  font-size: 0.9375rem;
  color: rgba(224,224,255,0.9);
}

.lang-notice-link {
  padding: 0.5rem 1rem;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 6px;
  color: var(--color-phi);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-notice-link:hover {
  background: rgba(255,215,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: auto;
    padding-left: 0;
    border-left: none;
  }
  
  .lang-notice {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}
