/**
 * Footer Language Switcher Styles
 * 
 * @package TablyClub
 */

/* Language Switcher Row - Above copyright */
.tc-footer__languages-row {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-footer__languages {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.tc-footer__lang {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid currentColor;
}

.tc-footer__lang:hover {
  transform: translateY(-2px);
}

.tc-footer__lang.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Copyright and Legal Row - Below languages */
.tc-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

.tc-footer__copyright {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-size: 0.875rem;
}

.tc-footer__legal-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.tc-footer__legal-links a {
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}


.tc-footer__legal-links .tc-separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tc-footer__languages {
    gap: 0.75rem;
  }
  
  .tc-footer__lang {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .tc-footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .tc-footer__legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tc-footer__languages {
    width: 100%;
  }
  
  .tc-footer__lang {
    flex: 1;
    min-width: calc(50% - 0.5rem);
    text-align: center;
  }
}
