/* Home Button Styles - Matching Language Switcher Design */

.home-button-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.home-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-button:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.home-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.home-button:hover svg {
  transform: scale(1.1);
}

.home-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .home-button-container {
    top: 15px;
    left: 15px;
  }
  
  .home-button {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .home-button svg {
    width: 18px;
    height: 18px;
  }
  
  /* Hide text on very small screens */
  @media (max-width: 480px) {
    .home-text {
      display: none;
    }
    
    .home-button {
      padding: 10px;
      width: 40px;
      height: 40px;
      justify-content: center;
    }
  }
}