/**
 * SveaArbetskraft Logo Styling
 * CSS-based logo with Raleway font from Google Fonts
 */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800&display=swap');

.svea-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s ease;
}

.svea-logo:hover {
  opacity: 0.8;
}

/* Blue accent removed */
.svea-logo::before {
  display: none;
}

.svea-logo__first {
  color: #7AAACE;
  font-weight: 700;
}

.svea-logo__second {
  color: #333;
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Optional: Add a circle background for more emphasis */
.svea-logo.with-circle::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 2px;
}

/* Responsive sizing */
@media (max-width: 768px) {
  .svea-logo {
    font-size: 16px;
  }
  
  .svea-logo::before {
    height: 18px;
  }
}

@media (max-width: 480px) {
  .svea-logo {
    font-size: 14px;
  }
  
  .svea-logo::before {
    height: 16px;
    width: 3px;
  }
}
