/* Silas Recovery - Branding CSS */

:root {
  /* Brand Colors */
  --primary-blue: #1E40AF;
  --secondary-blue: #3B82F6;
  --accent-blue: #0EA5E9;
  
  /* Gradient */
  --gradient-blue: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-icon img {
  height: 40px;
  width: 40px;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo img {
    height: 32px;
  }
  
  .logo-icon img {
    height: 32px;
    width: 32px;
  }
}

/* Brand Colors Usage */
.btn-primary {
  background: var(--gradient-blue);
  color: white;
}

.text-primary {
  color: var(--primary-blue);
}

.text-secondary {
  color: var(--secondary-blue);
}

.bg-gradient {
  background: var(--gradient-blue);
}