/**
 * Language Selector Styles
 */

.language-selector-wrapper {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.language-selector {
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.language-selector:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.language-selector:focus {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.language-selector option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px;
}

/* Light theme adjustments */
.theme-light .language-selector {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  color: #333333;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.theme-light .language-selector:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 1);
}

.theme-light .language-selector:focus {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.theme-light .language-selector option {
  background-color: #ffffff;
  color: #333333;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .language-selector-wrapper {
    top: 15px;
    right: 15px;
  }
  
  .language-selector {
    font-size: 13px;
    padding: 6px 10px;
    padding-right: 28px;
    background-size: 14px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .language-selector {
    transition: none;
  }
  
  .language-selector:hover {
    transform: none;
  }
}

/* Button sections */
.button-section {
  margin-top: 40px;
}

.button-section:first-of-type {
  margin-top: 20px;
}

.section-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .button-section {
    margin-top: 32px;
  }
  
  .section-title {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
