/**
 * 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: 24px;
  letter-spacing: -0.5px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s ease;
}

.svea-logo__dots {
  position: relative;
  width: 12px;
  height: 20px;
  margin-right: 4px;
  transform: translateY(1px);
}

.svea-logo__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  display: block;
}

.svea-logo__dot--1 {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.svea-logo__dot--2 {
  top: 5px;
  left: 5px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.svea-logo__dot--3 {
  top: 10px;
  left: 0;
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
}

.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: #757575;
  font-weight: 700;
  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__dots {
    width: 10px;
    height: 16px;
    margin-right: 3px;
    transform: translateY(1px);
  }

  .svea-logo__dot {
    width: 8px;
    height: 8px;
  }

  .svea-logo__dot--1 {
    top: 0;
    left: 0;
  }

  .svea-logo__dot--2 {
    top: 4px;
    left: 4px;
  }

  .svea-logo__dot--3 {
    top: 8px;
    left: 0;
  }
  
  .svea-logo::before {
    height: 18px;
  }
}

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

  .svea-logo__dots {
    width: 8px;
    height: 13px;
    margin-right: 2px;
    transform: translateY(1px);
  }

  .svea-logo__dot {
    width: 6px;
    height: 6px;
  }

  .svea-logo__dot--1 {
    top: 0;
    left: 0;
  }

  .svea-logo__dot--2 {
    top: 3px;
    left: 3px;
  }

  .svea-logo__dot--3 {
    top: 6px;
    left: 0;
  }
  
  .svea-logo::before {
    height: 16px;
    width: 3px;
  }
}
